Binary Basics
Python Syntax
Data and Debugging
Algorithms
Internet Basics
100

What is the number 10 in binary?

(Answer: 1010)

100

What keyword is used to define a function in Python?

def

100

What is an ordered collection of items where each item has a fixed position?

list or array

100

What is the process of finding and correcting errors in a program called?

debugging

100

What does "URL" stand for?

 Uniform Resource Locator

200

What does "bit" stand for?

( digit or character)

200

In Python, which keyword is used to start a conditional statement?

if

200

What method would you use to find the length of a list in Python?

len()

200

What does the term "sort" mean in computing?

 Arranging data in a particular order

200

Which protocol is used for data transmission over the internet?

HTTP (Hypertext Transfer Protocol)

300

How many bits make up a byte?

8

300

How do you comment a single line in Python?

#

300

What is the term for an error where the syntax of the program is incorrect?

Syntax Error

300

What is the name of the algorithm used to find the largest number in a list?

 Maximum (or Max) Algorithm

300

What does 'ISP' stand for?

 Internet Service Provider

400

How do you write '0' in binary?

0

400

Which Python keyword do you use to exit a loop prematurely?

break

400

Name a method to add an element to the end of a list(array).

.append() 

400

Which algorithm would you use to determine how many times a specific value appears in an array?

.count()

400

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

500

What is the highest value that can be represented by 4 bits?

15

500

What does the += operator do in Python?

Adds the right operand to the left and assigns the result to the left operand

500

What type of error occurs during the execution of a program?

Runtime

500

What is the basic algorithm for finding out if a number is even or odd?

checking if number % 2 == 0 (Modulus of 2)

500

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

M
e
n
u