The syntax
print("Hello, World!")
is part of this language.
What is python
What does CPU stand for
This famous computer scientist helped crack the German Enigma code during World War II.
Who is Alan Turing?
An algorithm is described as this
what is a step-by-step procedure or set of instructions for solving a problem or accomplishing a task.
the command line, also known as a terminal is used for this
What is interacts with a computer by typing commands instead of using a graphical interface.
This markup language is used to create the structure and content of web pages.
What is html
how many possible values are represented using 4 bits
What is 16 possible values
this was the name of the computer that defeated chess world champion Garry Kasparov in 1997.
What is IBM deep blue
This type of algorithm is used to arrange data into a particular order.
What is a sorting algorithm
the command 'cd' does this
What is change the directory
This programming language, developed by Apple, is commonly used with iOS and macOS application development
What is Swift
what does the binary value 1001 represent in decimal?
what is 9
this company created the Amiga computer.
What is Commodore
What searching algorithm repeatedly divides a sorted list in half to find a value?
what is a binary search
This command shows all files in current directory.
What is 'ls'
This programming language is commonly used by engineers and scientists for matrix-based calculations and data visualization.
What is MATLAB
What part of an operating system is responsible for managing hardware resources such as the CPU and memory?
What is the kernel
what decade were Neural Networks, the main idea behind LLM's like ChatGPT first developed.
What is the 1940s
the name of an algorithm that calls itself is this.
What is a recursive algorithm / recursion.
The command 'cat' does this
What is show the text of a file
This language introduced the concept of automatic garbage collection
What is LISP
What happens when a program requests more memory than is currently available in physical RAM?
What is virtual memory?
This was the name of the first electronic general-purpose digital computer developed during World War II in the United States.
What is ENIAC
the worst-case Big-O complexity (how long it will take with worst possible luck) of quicksort is this.
what is O(n²)
acceptable answer squared time
This command searches for a specific text in files
What is 'grep'