c1 2.2 Variables & Datatypes - GCSE Quiz

c1 2.2 Variables & Datatypes - GCSE Quiz

9 Qs

quiz-placeholder

Similar activities

Space vocabulary

Space vocabulary

7th Grade

11 Qs

Gateway B2 Unit 9 Vocabulary 1

Gateway B2 Unit 9 Vocabulary 1

KG - University

12 Qs

TEORI BELAJAR

TEORI BELAJAR

KG - University

11 Qs

HOTS Quiz

HOTS Quiz

9th Grade

11 Qs

Grade 6 T1 Photosynethesis Test

Grade 6 T1 Photosynethesis Test

KG - University

13 Qs

Lección: Franz Kafka

Lección: Franz Kafka

KG - University

12 Qs

Introducing TEEL structure

Introducing TEEL structure

KG - University

12 Qs

c1 2.2 Variables & Datatypes - GCSE Quiz

c1 2.2 Variables & Datatypes - GCSE Quiz

Assessment

Quiz

others

Hard

Created by

Clare Ross

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a variable?
It is a bucket for storing stuff.
It is a bucket for storing data.
It is an area of memory for storing data.
It is something which changes.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Can the contents of a variable change once it’s been created?
Yes
No

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the process of creating a variable for use in a program called?
Creation
Identification
Assignment
Declaration

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an identifier?
A name given to a variable.
The process of creating a variable.
The process of putting a value in a variable.
The category of data that a variable can store.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following uses the correct syntax for declaring a variable in Python?
String myName = "Fred"
myName = "Fred"
Dim myName As String = "Fred"

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a data type?
It is the name of a variable.
It defines the kind of data that can be stored in a variable.
It creates an area of memory to hold the data.
It defines what stuff can go into a bucket.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Can the data type of a variable change once it’s been created?
Yes
No

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To what data type would the following belong to? Hello
Integer
Real
Character
String
Boolean

9.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

To what data type could the following belong to? 27.5 Choose two options.
Integer
Real
Character
String
Boolean