c1 2.2 Variables & Datatypes - GCSE Quiz

c1 2.2 Variables & Datatypes - GCSE Quiz

9 Qs

quiz-placeholder

Similar activities

Unit 4 Java Mini Quiz

Unit 4 Java Mini Quiz

12th Grade

9 Qs

circular motion

circular motion

KG - University

12 Qs

MVA Year 7. Scientific Method Diagnostic Tool

MVA Year 7. Scientific Method Diagnostic Tool

KG - University

9 Qs

Budget Frenzy Reflection

Budget Frenzy Reflection

11th Grade

9 Qs

Parcial 1-Laboratorio II-5to BACO-I Unidad Forma A

Parcial 1-Laboratorio II-5to BACO-I Unidad Forma A

KG - University

13 Qs

Unit 6 Vocabulary

Unit 6 Vocabulary

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