Who is the mascot of GSU?
GUS the eagle
What does RAM stand for?
Random Access Memory
Name one of the co-founders of Apple
Steve Jobs or Steve Wozniak
A stack data structure can be implemented using an array or a linked list.
True or False
True
What is the main programming language they teach at GSU?
What is the name of the college goat?
Moonpie
What is the computer's main circuit board called?
Motherboard
Which company designed the first CPU?
Intel
What is the running time of a program expressed as:
f(n)=4n^3 + 3n^2 +100
A: O(n)
B: O(nlogn)
C: O(n^3)
D: O(n^2)
C: O(n^3)
Find the mistake:
public static void main (String [] args) {
int a = 2022;
System.out. println(“The alleged year is “ + a)
}
No semicolon after print
Who is the faculty advisor for ACM
Dr. Medidi
What does CPU stand for?
Central Processing Unit
Who are the two competitors in the graphics card market?
Nvidia and AMD
In a tree, the number of edges from the root to the node is called ____of the node.
How many primitive data types exist in Java?
8
(byte, short, int, long, float, double, boolean, and char)
Who is the Computer Science department head?
Dr. VLN Simhan
What is the most common programming language?
Python
Which company invented the USB port?
Intel
Which sorting algorithm relies on switching adjacent elements if sorting conditions are met?
Bubble Sort
Name one difference between constructors and methods.
Constructors: Initializes objects, must be the same name as class, no return type, etc.
Methods: Performs a task of an object, does not have to be the same name as class, has a return type, etc.
Who is the president of GSU?
DR. Kyle Marrero
When was the first computer invented?
(5 year gap allowed)
1943
Which computer company invented the first floppy disks, hard disk drives, and DRAMS?
IBM
int fun(int x, int y)
{
if (x == 0)
return y;
return fun(x - 1, x + y);
}
What is the output of fun(4,3)?
13
What is the output of the following code?
public static void (String [] args){
System.out.println(0);
}
Missing "main" in
public static void main(String [] args)