C++, Java, and JavaScript are built from this language.
What is C
What is the time complexity of traversing a list of 'n' elements?
What is O(n)
Who was the creator of Python?
Who is GUIDO VAN ROSSUM
What is (101)2 in base 10?
What is 5
What does the assembly instruction "load word" do?
What is moving a value from RAM to a register
This language is known as a memory-safe alternative to C
What is RUST
What is the time complexity of traversing a matrix with 'n' rows and 'm' columns?
What is O(n * m)
What famous computer scientist broke enigma.
Who is ALAN TURING
What is (27)10 in binary?
What is 11011
When a function call is made, this happens to the stack pointer does this in most architectures.
What is its decremented
This language is based on the motto "write once, run anywhere."
What is JAVA
What is the average time complexity for bubble sort?
What is O(n2)
Who is considered the first programmer?
Who is ADA LOVELACE (1840)
Created the first algorithim designed for a machine
What is (7F)16 in decimal?
What is 127
What does the program counter register store?
What is the address of the next line to be executed.
Name a functional programming language.
What is Haskell, Lisp, F#/ others
What is the time complexity for finding a value in a balanced BST with 'n' nodes?
What is O(log(n))
Who invented the first compiler. (They also invented COBOL)
Who is GRACE HOPPER #GOAT
What is (255)10 in hexadecimal?
What is FF
This type of memory is extremely fast and located close to the CPU (not registers).
What is a Cache
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.
What is the average time complexity of quick sort?
What is O(nlogn)
The 1977 creation of this encryption system, named after its inventors, remains widely used in secure internet communications.
What is RSA
What is (73)10 in octal?
What is 111
What assembly code does 'if (x == 0)' correspond to?
What is Branch if equal (beq) or branch if not equal (bne).