A single visual object used to represent text, numbers, or symbols
What is a character?
import math
x = 4, y = 7, z = (math.pow(x,2)+5)/y
print(z)
What is 3?
The number of bytes in 3 bits
What is 24?
A value that should not be altered or changed by a program during normal execution of the program.
What is a constant?
print(expression)
What is DISPLAY(expression)?
string = 'Coding is fun!'
print(string[2:5])
What is 'din'?
Number of bits in 2 kilobytes
What is 16,000 bits?
The operation of joining or combining String data with other data values in program
What is concatenation?
def function
b = ((3*2)+2)/2, if b >=4:
print('Yes!'), else:, print('No!')
What is 'No!'?
Base-10 value of 1110101(binary)
What is 117?
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?
game='Super'+'Mario'
What is game <-- CONCAT('Super,'Mario')?
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?
Base-10 value of 344(base-5)
What is 99?
The process of increasing a numeric value by another value
What is incremination?
What is repeat until x < 0?
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'?
43(base-10) in hexa-decimal
What is 2B?