Vocabulary
Pseudo-Code
Code Outputs
(, = new line)
Numbers
100

A single visual object used to represent text, numbers, or symbols

What is a character?

100
a = 12
What is a <-- 12?
100

import math

x = 4, y = 7, z = (math.pow(x,2)+5)/y

print(z)

What is 3?

100

The number of bytes in 3 bits

What is 24?

200

A value that should not be altered or changed by a program during normal execution of the program.

What is a constant?

200

print(expression)

What is DISPLAY(expression)?

200

string = 'Coding is fun!'

print(string[2:5])

What is 'din'?

200

Number of bits in 2 kilobytes

What is 16,000 bits?

300

The operation of joining or combining String data with other data values in program

What is concatenation?

300

def function

PROCEDURE(function)
300

b = ((3*2)+2)/2, if b >=4:

print('Yes!'), else:, print('No!')

What is 'No!'?

300

Base-10 value of 1110101(binary)

What is 117?

400

A process in which a set of instructions or structures are repeated sequentially for a specified number of times or until a condition is met. This is also known as a loop in programming

What is iteration?

400

game='Super'+'Mario'

What is game <-- CONCAT('Super,'Mario')?

400

x=2, y=3, z=4,a=16

#b=(((((16+x)/2)*2**z)-(y+a) MOD z)+25)/x*a

print(b)

What is no output?

400

Base-10 value of 344(base-5)

What is 99?

500

The process of increasing a numeric value by another value

What is incremination?

500
while x > 0

What is repeat until x < 0?

500

x = 6, string = 'surfing', while x > 2:, for a in range(len(string)+1):

if x == 3:, print(string[:a]), x-=1

What is 

'', 's', 'su', 'sur', 'surf', 'surfi', 'surfin', 'surfing'?

500

43(base-10) in hexa-decimal

What is 2B?