c1 2.2 Variables & Datatypes - GCSE Quiz

c1 2.2 Variables & Datatypes - GCSE Quiz

9 Qs

quiz-placeholder

Similar activities

L1 Python Recall - Do Now

L1 Python Recall - Do Now

KG - University

8 Qs

Java Refresher

Java Refresher

KG - University

11 Qs

Prueba de Conocimientos 3

Prueba de Conocimientos 3

12th Grade

10 Qs

Lesson Four - Sensing

Lesson Four - Sensing

KG - University

9 Qs

Engineering Design Exam

Engineering Design Exam

KG - University

10 Qs

c2 2-3 Variables Constants and Input - GCSE QUIZ

c2 2-3 Variables Constants and Input - GCSE QUIZ

KG - University

10 Qs

3 w27 FRIDAY:   Language QUIZ

3 w27 FRIDAY: Language QUIZ

3rd Grade

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