c4 2-5 The Common Operators - GCSE Quiz

c4 2-5 The Common Operators - GCSE Quiz

7 Qs

quiz-placeholder

Similar activities

Unit 2 Summative 2024-25

Unit 2 Summative 2024-25

KG - University

12 Qs

Veterans Day

Veterans Day

KG - University

9 Qs

Mexican Independence Timeline Quiz

Mexican Independence Timeline Quiz

7th Grade

10 Qs

Past Simple, Present Perfect

Past Simple, Present Perfect

University

10 Qs

Chinese New Year Quiz

Chinese New Year Quiz

12th Grade - University

10 Qs

Examining Florida's Weather & Climate

Examining Florida's Weather & Climate

KG - University

10 Qs

BC, AD, BCE, CE QUIZ

BC, AD, BCE, CE QUIZ

7th Grade - University

10 Qs

Invasion From Mars - Vocabulary

Invasion From Mars - Vocabulary

4th Grade

10 Qs

c4 2-5 The Common Operators - GCSE Quiz

c4 2-5 The Common Operators - GCSE Quiz

Assessment

Quiz

others

Hard

Created by

Clare Ross

FREE Resource

AI

Enhance your content

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the answer when we calculate 18 % 4?
14
4
4.5
2
0.5

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What data type would we use to accurately store the result of 19 / 10 as 1.9?
Integer
Float
Boolean
String

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

We want to work out if 5 is greater than 3. Enter the correct comparison operator to complete the statement below.
5<3
5>3
5==3
5>=3

4.

MULTIPLE SELECT QUESTION

30 sec • 3 pts

Media Image
Given the following variables in the pic: Which three of the following statements are true?
userName != "Helen"
year == 2016
year <= year
age > year
age == year

5.

MULTIPLE SELECT QUESTION

30 sec • 2 pts

Media Image
Given the following variables in the code below: Which two of the following statements are true?
userName != "Marit" OR Age == 23
age == 23 AND year == 2005
year == 2016 OR year == 2004
year == 2016 AND year == 2004

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image
Given the following Python code below: Given the output of this code would be “The result is 1”, which of the following is missing from line 3?
result = num1 / num2
result = num1 // num2
result = num1 DIV num2
result = num1 MOD num2

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image
Given the following Python code: What would the output be?
3 2 1
3 2 1.5
3 2 6
3 2 9