Operations (AQA GCSE Computer Science): Quizzes
📚Quizzes
Practise the questions
12 questions from this quiz
ShowHide
Practise the questions
12 questions from this quiz
What are arithmetic operations in computer programming?
What are arithmetic operations in computer programming?
Basic maths calculations on numbers
Why do programming languages use * instead of × for multiplication?
Why do programming languages use * instead of × for multiplication?
× not on keyboards & confuses with 'x'
What is the result of ?
What is the result of ?
2
What is the result of ?
What is the result of ?
3
What does the MOD operator return when dividing two numbers?
What does the MOD operator return when dividing two numbers?
The remainder
What does BIDMAS stand for in operator precedence?
What does BIDMAS stand for in operator precedence?
Brackets Indices Div Mult Add Sub
What is the result of following BIDMAS?
What is the result of following BIDMAS?
23
What result does give, and what does it tell you?
What result does give, and what does it tell you?
0, showing 18 is even
How can MOD check if 15 is a multiple of 5?
How can MOD check if 15 is a multiple of 5?
means yes
What type of value do relational operators return?
What type of value do relational operators return?
Boolean values (True or False)
What does the equal to (=) relational operator check?
What does the equal to (=) relational operator check?
If two values are exactly the same
Is the statement True or False?
Is the statement True or False?
False, as 4 is not less than itself
