python programming Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

what is sign for addition

A

+

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

what is sign for subtraction

A

-

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

what is sign for multiplication

A

*

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

what is sign for division

A

/

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

what is a variable

A

saved data that can change

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

what is a while loop more efficient

A

uses less lines and quicker for the computer to read

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

what is a input

A

piece of data you put in

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

what is output

A

piece of data that is printed on the screen

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

what is process

A

data that is read by the system

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

what is real/float

A

decimal number

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

what is a integer

A

number

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

what is Boolean

A

true or false

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

what is string

A

text

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

what is character

A

letters

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

what is indefinite iteration

A

something that might happen

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

what is iteration

A

loop

17
Q

what is user defined

A

when its authorised by user

18
Q

what is program defined

A

authorised by program

19
Q

what does while do

A

if the user gives a wrong answer the program will ask the user to enter it again

20
Q

what does this mean !=

A

not equal to

21
Q

what does this mean >

A

more than

22
Q

what does this mean

A

less than

23
Q

does # make any difference to code

A

no

24
Q

what does == mean

A

equal to

25
Q

what does <= mean

A

less than or equal to

26
Q

what does => mean

A

more than or equal to