c4 2-5 The Common Operators - GCSE Quiz

c4 2-5 The Common Operators - GCSE Quiz

7 Qs

quiz-placeholder

Similar activities

Tracking Monsters Comprehension Quiz (Grade 5)

Tracking Monsters Comprehension Quiz (Grade 5)

KG - University

10 Qs

Syllabus: Expectations and Policies

Syllabus: Expectations and Policies

8th Grade

10 Qs

Quiz: Should School Be Canceled For Bad Weather?  (Scope)

Quiz: Should School Be Canceled For Bad Weather? (Scope)

8th Grade - University

10 Qs

Present perfect simple

Present perfect simple

KG - University

11 Qs

Vocab Quiz 11/4

Vocab Quiz 11/4

KG - University

10 Qs

California Regions test

California Regions test

3rd Grade

10 Qs

Science Week Mentor Quiz

Science Week Mentor Quiz

KG - University

10 Qs

Direct Quoting and Paraphrasing

Direct Quoting and Paraphrasing

KG - University

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

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