What is the output?
int a = 3;
int b = 2;
int c = a-b;
System.out.println(c);
What is 1?
The first successful mass-market all-in-one desktop personal computer to have featured a graphical user interface, built-in screen, and mouse.
(Definitely not copied from Wikipedia)
What is the Macintosh?
What is the most commonly used operating system in the world?
Do you need to declare variable types in python?
No
What does CPU stand for?
Center Processing Unit
What is the output?
int a = 5;
int b = 6;
System.out.println(a/b);
0
____'s Law is the reason behind why the number of transistors in a dense integrated circuit doubles about every two years
Moore
What is the name of the programming language most used for databases?
What is SQL?
Do you need to put semicolons after code lines in python?
No
Spinning disk that stores data
What is a hard drive?
The class from which the subclass is derived
What is a superclass?
Who is known as the father of artificial intelligence?
Who is Alan Turing?
What is graphical user interface
Find the error in this code:
print("--Sample Function--")
//Function for finding the good boys
def windowsIsTrash():
if(windowsHater == true):
print("You are a very good boy")
else:
print("You are a very bad boy, and probably turn in 99% of your CS assignments late")
Wrong way to write comments in python (no // in python)
Component that processes graphics
Graphics Processing Unit (GPU)
The process where one class acquires the properties (methods and fields) of another
What is Inheritance?
who was the first programmer?
Who is Ada Lovelace?
The Operating System, Unix, is the oldest operating system in the history of computers, with the modern day macOS, being based on UNIX. What is the popular programming language created as a result of the need to transfer UNIX to more portable platforms?
What is C
What is the name of the function used to initialize a class in python?
What is def __init__(self):
During the 2020 COVID pandemic, technology companies from fridge and car manufacturers to NVIDIA and AMD experienced a shortage of a key component required in graphics cards and displays alike, causing a shortage of cars and graphics cards, and this terrible meme to appear. What is the name of the silicon containing part crucial to the creation of graphics cards and CPUs?
What is a semiconductor?
fibo(9);
public int fibo(int n) {
if (n <= 1) { return n; }
return fibo(n-1) + fibo(n-2);
}
34
Fibonacci Sequence:
1 1 2 3 5 8 13 21 34
Who conceived the first computer?
Who is Charles Babbage?
A type of malware that spreads copies of itself from computer to computer. It can replicate itself without any human activation
What is a worm?
What is the name of the python function used to break a string into multiple substrings?
What is .split()?
What is the name of the component of RAM that enables your computer to store and receive data faster?
What is cache