Stores running programs and other types of data on computers.
Memory
The name given to a basic binary unit.
Bit
The company that created Java.
Sun Microsystems
What is the error: System.out.printline(“Hello”);
Change “printline” to “println”
The name of a famous computer engineer in California.
Steve Jobs
Performs the math on a computer.
Arithmetic/Logic Unit (ALU)
The two patterns that make up the binary system.
0 and 1
The year that Java was released to the public.
1995
public class Jeopardy {
public static void main(String[] args) {
System.out.println("Hello");
}
}
File name and class name don’t match
The name of a famous computer engineer, is very rich, and lived close to Ms. Chang when she lived in America.
Bill Gates
What does CPU stand for?
Central Processing Unit
Syntax to declare variables.
<data type> <variable name>;
The company that currently owns Java.
Oracle
public class MyPoem {
public static void main(String[] args) {
System.out.println("Roses are red");
System.out.println("Violets are blue");
System.out.println("This jeopardy game");
System.out.println("Is so good, too");
{
}
Line 10 – Curly brace facing the wrong way
The term when you place a \ (backslash) before a character to write it in a String?
Escape sequence
The language that computers read to carry out instructions.
Binary
The number of megabytes in a gigabyte.
1,024
The reason why Java is called Java.
James Gosling was drinking coffee from Java beans.
public class ManyBlankLines {
public static void main(String[] args) {
System.out.print(");
System.out.print();
System.out.println();
System.out.print();
System.out.print(");
System.out.print();
System.out.println();
System.out.print();
}
}
Line 5 & 10 – Need 1 more quotation inside parentheses
Which has the lowest order of precedence:
.
()
[]
*
*
The difference between volatile and persistent memory.
Volatile memory is temporary. Persistent is permanent.
What defines an algorithm.
A list of steps to solve a problem. It is unambiguous, executable, and terminating.
Why an error is called a "bug."
A group of Harvard engineers traced an error in the computer to a moth trapped inside.
public class MaIn{ public
static void main(String[] args)
{ System.out.print("Ms.");
System.out.print(" Chang\nAge: ");
System.out.print("10+13");
System.out.println();}}
Line 5 (logic error) – should print calculation, not “10+13”
The popularity rank of Java in programming languages.
Second most popular.