People in Computer Science
Code Snippets
Comp Sci History
Languages
Professors
100

This person is a soon to be graduate from SUNY Brockport. She is a dedicated developer, and student as well as the President of Brockport Women in Technology.

Trinity Thiele

100

What is the output of this code snippet?

int x = 5; 

int y = 10; 

System.out.println(x++   +   ++y); 

16

100

In 1947, Grace Hopper and her team found a moth inside a Harvard Mark II computer, causing it to malfunction. They later coined the term ______ after removing the insect

Bug/Debugging

100

This popular programming language, named after a type of coffee, is known for its 'Write Once, Run Anywhere' capability.

Java

100

Which professor is the advisor for all students in the Computing Sciences department

Daniel Rogers

200

This British mathematician and cryptanalyst is famous for breaking the Enigma code during World War II

Alan Turing

200

What is the output of this code snippet?

public class Example{

    public static void main(String[] args){

        int x = 7;

        int y =2;

        double result = x/y;

        System.out.println(result);

    }



}

3.0

200

 Released in 1984, this computer was notable for introducing a graphical user interface and a mouse, significantly changing how users interacted with computers.

Apple Macintosh

200

This programming language, named after a British comedy group, is known for its readability and wide use in data science, web development, and automation.

Python

200

This Turkish professor is also the advisor for the Brockport Women in Technology (BWIT) club

Derya Ipek Eroglu

300

This 19th-century mathematician is often considered the first computer programmer for her work on Charles Babbage’s Analytical Engine.

Ada Lovelace

300

What is the output of this code snippet


int a = 5, b = 12, c = 13;

boolean isRightTriangle = (a * a + b * b == c * c)


if(isRightTriangle){

    System.out.println("Right triangle");

}

else {

    System.out.println("Not a right triangle");

}

Right triangle

300

Before modern keyboards, this method of programming involved using physical cards with holes punched in them to represent data or instructions, and was commonly used in early computers like the IBM 1401.

punch card programming

300

This programming language, developed in the early 1970s, is known for its efficiency and low-level capabilities, and has influenced languages like C++, Java, and Python.

C

300

Which professor has a Bachelors of Fine Art in Graphic Design from a University in Ghana, and also the advisor for the Computer Science Club 

Dr. Eric Owusu

400

In 1991, this Finnish software engineer created the Linux kernel, which became the foundation for one of the most widely used open-source operating systems.

Linus Torvalds

400

What is the output of this code snippet?

 int[] numbers = {1,2,3,4,5};

for(int i = 0; i < numbers.length; i++){

    if(numbers[i] % 2 == 0){

        continue

    }

    System.out.println(numbers[i] + " ");

}

1 3 5

400

This early operating system, introduced in 1969 by AT&T’s Bell Labs, became the basis for many modern systems, including Linux and MacOS.

UNIX

400

This language is used to manage and manipulate relational databases, allowing users to perform operations such as querying, updating, and deleting data.

SQL

400

Who is the Department Chair for the department of Computing Science

Dr.Mehruz Kamal

500

This computer scientist and U.S. Navy rear admiral developed the first compiler and was instrumental in the creation of COBOL, one of the earliest high-level programming languages.

Grace Hopper

500

What is the output of this code snippet

String[] words = {"apple", "banana", "cherry", "date");

String result = "";

for(int i = words.length - 1; i >= 0; i --){

    result += words[i].charAt(0);

}

System.out.println(result);

dcba

500

This network, created in 1969 by the U.S. Department of Defense, is considered the precursor to the modern internet

ARPANET (Advanced Research Projects Agency Network)

500

This low-level programming language uses mnemonic codes to represent machine-level instructions and is closely tied to the architecture of a computer’s CPU.

Assembly

500

Which professor helped launch the ACM SigAI student chapter at SUNY Brockport

Dr. Ning Yu