Java is considered to be a ______-level programming language
What is high
These are parts of the computer that you can physically touch
What is Hardware?
A person who writes programs
Who is a programmer / Software developer?
Statement used to display output in Java
What is System.out.println()?
What is the output?
System.out.println("Hello Java")
What is an error?
Java was originally created by this company
What is Sun Microsystems?
A set of programs that tell the hardware what to do
What is Software?
This person maintains computer networks
Who are network administrators?
Data type used to store whole numbers in Java.
What is int?
What is the output?
int x = 5
System.out.println(++x + 3);
What is 9?
The year Java officially released
When is 1995?
A set of programs that manage and allocate the computer's resources
What is system software?
They provide support and assistance to the customers or system's users.
Who are Tech-supports?
Used to execute code when a condition is true or false.
What is if-else?
int num = 3;
if ((++num * 2) > ++5) {
System.out.println("Pass");
} else {
System.out.println("Fail");
}
What is pass?
The original name of Java before it was renamed
What is oak?
DOUBLE POINTS
Software used by users to perform tasks like writing or browsing.
What is application software?
Protects systems and data from cyber threats.
Who are cybersecurity specialists?
Used when comparing one variable with many fixed values.
What is Switch-case?
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?
The father of Java
Who is James Gosling?
A type of hardware that temporarily stores data and loses it upon shutting down.
What is RAM?
They analyze the system requirements and design IT solutions
Data type used to store text or words in Java.
What is a String?
DOUBLE POINTS
int x = 4;
if (++x % 2 == 0) {
System.out.println("Even");
} else {
System.out.println("Odd"); }
What is Odd?