C What I Did There?
This is Taking Awhile
History[0]
Base 10?
I HATE ASSEMBLY
100

C++, Java, and JavaScript are built from this language.

What is C

100

What is the time complexity of traversing a list of 'n' elements?

What is O(n)

100

Who was the creator of Python?

Who is GUIDO VAN ROSSUM

100

What is (101)2 in base 10?

What is 5

100

What does the assembly instruction "load word" do?

What is moving a value from RAM to a register

200

This language is known as a memory-safe alternative to C

What is RUST

200

What is the time complexity of traversing a matrix with 'n' rows and 'm' columns?

What is O(n * m)

200

What famous computer scientist broke enigma.

Who is ALAN TURING

200

What is (27)10 in binary?

What is 11011

200

When a function call is made, this happens to the stack pointer does this in most architectures.

What is its decremented

300

 This language is based on the motto "write once, run anywhere."

What is JAVA

300

What is the average time complexity for bubble sort?

What is O(n2)

300

Who is considered the first programmer?

Who is ADA LOVELACE (1840)

Created the first algorithim designed for a machine

300

What is (7F)16 in decimal?

What is 127

300

What does the program counter register store?

What is the address of the next line to be executed.

400

Name a functional programming language.

What is Haskell, Lisp, F#/ others

400

What is the time complexity for finding a value in a balanced BST with 'n' nodes?

What is O(log(n))

400

Who invented the first compiler. (They also invented COBOL) 

Who is GRACE HOPPER #GOAT

400

What is (255)10 in hexadecimal?

What is FF

400

This type of memory is extremely fast and located close to the CPU (not registers).

What is a Cache

500

What programming language technically has two zeros (-0 and +0)

What is JAVASCRIPT  

Info: The language specifies both +0 and -0. Though they are mathematically equal, a programmer can test for the negative sign.

500

What is the average time complexity of quick sort?

What is O(nlogn)

500

The 1977 creation of this encryption system, named after its inventors, remains widely used in secure internet communications.

What is RSA

500

What is (73)10 in octal?

What is 111

500

What assembly code does 'if (x == 0)' correspond to?

What is Branch if equal (beq) or branch if not equal (bne).