Y8 Flashcards

(22 cards)

1
Q

Name five types of computers

A

iPad, mobile phone, desktop, raspberry pie, laptop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Name five programming languages

A

Python, Java, swift, C, scratch 

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Characteristics of a good programmer

A

-Adopts a hand and approach
Enjoy problem-solving and change of working out solution.
Test the code frequently

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is programming?

A

The composition of sequences of instructions that the computer follows to complete tasks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Why is programming important?

A

All programming languages share the same logic when it comes to solving problems and creating applications

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Why is learning coding important?

A

Help us get better at problem-solving.
Digital devices have a big impact in our lives.
It teaches you skills that you can apply to everything

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Can you identify what a sequence is?

A

Yeah

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Example of a variable

A

Username or
GameScore =0
If alienkilled:
GameScore =+1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Example of an event

A

When run

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Example of iteration

A

Repeat three times do
Place planks
Move forward

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Another name for selection

A

If else statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Another name for iteration

A

Loops

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is a variable in programming?

A

A variable is a named memory location that we used to store a value that may change as we run a program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Write python so it outputs hello world

A

print (‘hello world’) or
print (‘’hello world’’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How do we tell python to convert the input into a number?

A

Int e.g
Firstnumber=int(input(‘enter first number’))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What do you use if you’re comparing two things?

A

==(only one if assigning a value)

17
Q

What does + mean?

18
Q

What does -mean?

19
Q

What does / mean?

20
Q

What does * mean?

A

Multiplication

21
Q

What does ** mean?

A

To the power of

22
Q

How do you add more options to your if else statements in python?

A

Make an elif