Python
Data
Operating systems
Computer History
Hardware
100

Colors = ["blue", "green", "yellow"] 

Print(Colors[2]) 


What is the output of this python code?  

What is yellow?

100
The name given to a basic binary unit.
What is a bit
100
Basic operations that are needed for the function of a computer but not built directly into the hardware.
What is an Operating System
100
A programable electronic devise that can store, retrieve, and process data.
What is a computer
100
Part of the computer that holds the Memory and CPU.
What is Motherboard
200

for x in range(2, 6): 

  print(x) 


What is the output of this python code?  


What is 2 3 4 5?

200
The two patterns that make up the binary system.
What is 0 and 1
200
Doing more than 1 thing in a single program.
What is Multithreading
200
The very first type of computer.
What is a calculator
200
The amount of memory that your computer can store away.
What is Storage Capacity
300

import math

x = math.ceil(1.4)


print(x)

What is 2?

300
A sequence of numbers used to simplify sequences of bits.
What is Hexidecimal
300
The most widespread of all Operating Systems.
What is Microsoft Windows
300
The number of generations that computers have gone through.
What is Five
300
Main high speed memory that holds data and instructions.
What is RAM
400

class Student(Person):

  def __init__(self, fname, lname):

    super().__init__(fname, lname)

  ____.graduationyear = 2019


Fill in the underlined line above to add a property called graduation year to the Student class:  


What is self.?

400
Taking measurements at regular intervals when digitizing sound.
What is Sampling
400
When more than 1 CPU is running at 1 time.
What is Multiprocessing
400

The name of the computer that beat chess champion Garry Kasparov

Deep Blue

400
Controls all other parts of the computer.
What is Control Unit.
500

def myfunc(n):

  return lambda a : a * n

doubler = myfunc(2)


print(doubler(11))

What is 22?

500
Changing a representation to use fewer bits to store information.
What is Compression
500
A user interface that uses icons and a mouse.
What is Graphical (GUI)
500
The observation that the number of transistors on integrated circuits doubles approximately every two years
What is Moore's Law
500
Circuits that carry data from one area to another.
What is Busses
M
e
n
u