Operators 1 Flashcards

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

What is multipication in pseudocode?

A

*

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

What is division in pseudocode?

A

/

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

What is addition in pseudocode?

A

+

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

What is subtraction in pseudocode?

A

-

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

What is % in pseudocode?

A

MOD

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

What is to the power of in pseudocode?

A

**

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

What is integer divison “//” in pseudocode?

A

DIV

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

What is equal to in pseudocode?

A

is equal to

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

What is not equal to in pseudo code?

A

is not equal to

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

What is greater than in pseudocode?

A

is greater than

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

What is less than in pseudocode?

A

is less than

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

What is less than or equal to in pseudo code?

A

is less than or equal to

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

What is greater than or equal to in pseudocode?

A

is greater than or equal to

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

What is And in pseudo code?

A

AND

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

What is Or in pseudocode?

A

OR

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

What is Not in pseudocode?

A

NOT

17
Q

What do you put to comment in pseudo code?

A

#

18
Q

What do you use to comment over several lines?

A

”””
I need my comment
over a few lines
“””

19
Q

What is assignment in pseudocode?

A

identifier

20
Q

What is constant in pseudocode?

A

MY_CONSTANT

e.g. BIRTH_YEAR

21
Q

What is variables in pseudocode?

A

my_variable

e.g. not_guessed

22
Q

What is user input in pseudocode?

A

USERINPUT

e.g. age