Our brand new solo games combine with your quiz, on the same screen

Correct quiz answers unlock more play!

New Quizalize solo game modes
25 questions
Show answers
  • Q1
    Which arithmetic operator is used to find the remainder after division?
    Modulus
    Addition
    Exponentiation
    Multiplication
    30s
    2.2.1c
  • Q2
    30s
    2.2.1c
  • Q3
    Which operator is used to perform exponentiation in Python?
    ^
    //
    *
    **
    30s
    2.2.1c
  • Q4
    Which of the following is the correct symbol for the addition operator in most programming languages?
    +
    -
    /
    *
    30s
    2.2.1c
  • Q5
    30s
    2.2.1c
  • Q6
    30s
    2.2.1c
  • Q7
    30s
    2.2.1c
  • Q8
    Which operator is used for integer division in Python?
    //
    /
    *
    %
    30s
    2.2.1c
  • Q9
    Which of the following options correctly uses variables, constants, operators, inputs, outputs, and assignments in a Python program?
    input = total / price
    output price * quantity
    total = price * quantity
    int price quantity total
    30s
    2.2.1a
  • Q10
    What does the following Python code do? price = 50 quantity = 2 total = price * quantity print(total)
    Calculates and prints the total cost by multiplying price and quantity
    Calculates the sum of price and quantity and prints the result
    Takes user input for price and quantity, then prints the total
    Prints the value of price
    30s
    2.2.1a
  • Q11
    Which of the following statements correctly assigns the input value to a variable in Python?
    input(name) = "Enter your name:"
    name = input("Enter your name:")
    name : input("Enter your name:")
    name == input("Enter your name:")
    30s
    2.2.1a
  • Q12
    What will be the output of the following code? x = 5 y = 10 z = x + y print(z)
    510
    5 + 10
    15
    10
    30s
    2.2.1a
  • Q13
    Which of the following lines of code will correctly assign the integer value from user input to the variable 'age'?
    age = int(input("Enter your age:"))
    age == int(input("Enter your age:"))
    age = input(int("Enter your age:"))
    age : int(input("Enter your age:"))
    30s
    2.2.1a
  • Q14
    Which operation is being performed in the following code snippet? x = 100 y = 25 result = x % y
    Addition
    Modulus
    Division
    Subtraction
    30s
    2.2.1a
  • Q15
    What will be the value of the variable 'result' after executing this code? num1 = 20 num2 = 4 result = num1 / num2
    24
    4.0
    5
    5.0
    30s
    2.2.1a

Teachers give this quiz to your class