What is the number 10 in binary?
(Answer: 1010)
What keyword is used to define a function in Python?
def
What is an ordered collection of items where each item has a fixed position?
list or array
What is the process of finding and correcting errors in a program called?
debugging
What does "URL" stand for?
Uniform Resource Locator
What does "bit" stand for?
( digit or character)
In Python, which keyword is used to start a conditional statement?
if
What method would you use to find the length of a list in Python?
len()
What does the term "sort" mean in computing?
Arranging data in a particular order
Which protocol is used for data transmission over the internet?
HTTP (Hypertext Transfer Protocol)
How many bits make up a byte?
8
How do you comment a single line in Python?
#
What is the term for an error where the syntax of the program is incorrect?
Syntax Error
What is the name of the algorithm used to find the largest number in a list?
Maximum (or Max) Algorithm
What does 'ISP' stand for?
Internet Service Provider
How do you write '0' in binary?
0
Which Python keyword do you use to exit a loop prematurely?
break
Name a method to add an element to the end of a list(array).
.append()
Which algorithm would you use to determine how many times a specific value appears in an array?
.count()
What does the term "bandwidth" refer to in the context of internet speed?
The maximum rate (how fast)of data transfer across a given path
What is the highest value that can be represented by 4 bits?
15
What does the += operator do in Python?
Adds the right operand to the left and assigns the result to the left operand
What type of error occurs during the execution of a program?
Runtime
What is the basic algorithm for finding out if a number is even or odd?
checking if number % 2 == 0 (Modulus of 2)
What is a 'cookie' in web browsing?
A small piece of data sent from a website and stored on the user's computer by the user's web browser while the user is browsing