Revise 2.2.1 and 2.2.2

Teach 2.2.1 and 2.2.2
1 / 16
next
Slide 1: Slide
ComputingUpper Secondary (Key Stage 4)GCSE

This lesson contains 16 slides, with interactive quizzes and text slides.

Items in this lesson

Teach 2.2.1 and 2.2.2

Slide 1 - Slide

Question the Answer
Can you write the question to these answers!!

Slide 2 - Slide

A value that can change, usually when the program is running

Slide 3 - Open question

An item of data that will not change during the program execution

Slide 4 - Open question

a character that represents a specific mathematical or logical action or process

Slide 5 - Open question

to provide or give something to the computer (usually entered or a signal)

Slide 6 - Open question

where you set and/or re-set the value stored in memory denoted by a variable
like x = 5

Slide 7 - Open question

Either * / - or +

Slide 8 - Open question

Either OR, AND or NOT

Slide 9 - Open question

Data types?

Slide 10 - Mind map

What would you use to store a first name
A
String
B
Real
C
Integer
D
Boolean

Slide 11 - Quiz

What would you use to store a phone number
A
String
B
Real
C
Integer
D
Boolean

Slide 12 - Quiz

What would you use to store a price of a product?
A
String
B
Real
C
Integer
D
Boolean

Slide 13 - Quiz

What would you use to store whether the customer qualifies for a discount?
A
String
B
Real
C
Integer
D
Boolean

Slide 14 - Quiz

What would you use to store how many children you have?
A
String
B
Real
C
Integer
D
Boolean

Slide 15 - Quiz

Casting
Turning one datatype into another one when coding

EG
x = input("how old are you?")
if int(x)>=18:
     print("Adult")

Slide 16 - Slide