placeholder image to represent content

PowerShell Arithmetic Operators

Quiz by Aaron Curtis

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

Correct quiz answers unlock more play!

New Quizalize solo game modes
7 questions
Show answers
  • Q1
    Add the numbers 3 and 5
    3&5
    3+5
    3++5
    add(3,5)
    30s
  • Q2
    Subtract 6 from 7
    7-6
    3_6
    3--6
    sub(7,6)
    30s
  • Q3
    Multiply 8 and 6
    prod(8,6)
    Multiply 8 and 6
    prod(8,6)
    8x6
    30s
  • Q4
    Divide 9 by 3
    9 -div 3
    div(9,3)
    9//3
    9/3
    30s
  • Q5
    Divide 8 by 3 and return the remainder
    rem(8/3)
    8 -mod 3
    8%3
    mod(8,3)
    30s
  • Q6
    Concatenate the strings 'abc' and 'xyz'
    abc','xyz'
    abc'||'xyz'
    cat('abc','xyx')
    'abc'+'xyz'
    30s
  • Q7
    Repeat the string 'abc' three times
    rep('abc',3)
    'abc' * 3
    'abc' | 'abc' | 'abc'
    3 x 'abc'
    30s

Teachers give this quiz to your class