Programming Fundamentals & Data Types (OCR GCSE Computer Science): Quizzes
📚Quizzes
Practise the questions
12 questions from this quiz
ShowHide
Practise the questions
12 questions from this quiz
What are the three main groups of operators in programming?
What are the three main groups of operators in programming?
Arithmetic, comparison, Boolean
What is the result of ?
What is the result of ?
What is the result of ?
What is the result of ?
What is the result of (exponentiation)?
What is the result of (exponentiation)?
What type of value do comparison operators always return?
What type of value do comparison operators always return?
Boolean
Which operator checks if two values are the same?
Which operator checks if two values are the same?
Is True or False?
Is True or False?
True
When does the AND operator return True?
When does the AND operator return True?
When both conditions are True
When does the OR operator return True?
When does the OR operator return True?
When at least one condition is True
What is the result of NOT ?
What is the result of NOT ?
False
Which operator type is used for age checks like 'if age '?
Which operator type is used for age checks like 'if age '?
Comparison
In a login system checking username AND password, which operator type is used?
In a login system checking username AND password, which operator type is used?
Boolean
