Ang Nakaraan!
1's and 0's
Who's who?
Basic Lang Yan
Ilagay mo sa labas
100

Java is considered to be a ______-level programming language

What is high

100

These are parts of the computer that you can physically touch

What is Hardware?

100

A person who writes programs

Who is a programmer / Software developer?

100

Statement used to display output in Java

What is System.out.println()?

100

What is the output?

System.out.println("Hello Java")


What is an error?

200

Java was originally created by this company

What is Sun Microsystems?

200

A set of programs that tell the hardware what to do

What is Software?

200

This person maintains computer networks

Who are network administrators?

200

Data type used to store whole numbers in Java.

What is int?

200

What is the output?

int x = 5

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


What is 9?

300

The year Java officially released

When is 1995?

300

A set of programs that manage and allocate the computer's resources

What is system software?

300

They provide support and assistance to the customers or system's users.

Who are Tech-supports?

300

Used to execute code when a condition is true or false.

What is if-else?

300

int num = 3;

if ((++num * 2) > ++5) {

    System.out.println("Pass");

} else {

    System.out.println("Fail");

}


What is pass?

400

The original name of Java before it was renamed

What is oak?

400

DOUBLE POINTS

Software used by users to perform tasks like writing or browsing.

What is application software?

400

Protects systems and data from cyber threats.

Who are cybersecurity specialists?

400

Used when comparing one variable with many fixed values.

What is Switch-case?

400

int day = 2;

switch(day) {

   case 1: System.out.println("Monday"); break;

    case 2: System.out.println("Tuesday"); break;

    default: System.out.println("Other");

}

When is tuesday?

500

The father of Java

Who is James Gosling?

500

A type of hardware that temporarily stores data and loses it upon shutting down.

What is RAM?

500

They analyze the system requirements and design IT solutions

Who are System's Analysts?
500

Data type used to store text or words in Java.

What is a String?

500

DOUBLE POINTS

int x = 4;

if (++x % 2 == 0) {

    System.out.println("Even");

} else {

    System.out.println("Odd"); }

What is Odd?