Georgia Southern
Computer
Tech Companies

Data Structures
Code
100

Who is the mascot of GSU?

GUS the eagle

100

What does RAM stand for?

Random Access Memory

100

Name one of the co-founders of Apple

Steve Jobs or Steve Wozniak 

100

A stack data structure can be implemented using an array or a linked list.

True or False

True

100

What is the main programming language they teach at GSU?

Java
200

What is the name of the college goat?

Moonpie

200

What is the computer's main circuit board called?

Motherboard

200

Which company designed the first CPU?

Intel

200

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)

200

Find the mistake:

public static void main (String [] args)    {

    int a = 2022;

  System.out. println(“The alleged year is “ + a)

}

No semicolon after print

300

Who is the faculty advisor for ACM

Dr. Medidi

300

What does CPU stand for?

Central Processing Unit

300

Who are the two competitors in the graphics card market?

Nvidia and AMD

300

In a tree, the number of edges from the root to the node is called ____of the node.

Depth
300

How many primitive data types exist in Java?

8

(byte, short, int, long, float, double, boolean, and char)

400

Who is the Computer Science department head?

Dr. VLN Simhan

400

What is the most common programming language?

Python

400

Which company invented the USB port?

Intel

400

Which sorting algorithm relies on switching adjacent elements if sorting conditions are met?

Bubble Sort

400

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.

500

Who is the president of GSU?

DR. Kyle Marrero

500

When was the first computer invented?

(5 year gap allowed)

1943

500

Which computer company invented the first floppy disks, hard disk drives, and DRAMS?

IBM

500

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

500

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)