This repeats code multiple times until a condition is met.
What is a loop?
This converts Java code into bytecode.
What is the Java Compiler?
This hides unnecessary details and shows only important features.
What is Abstraction?
This stores text in Java.
What is a String?
These files contain compiled Java bytecode.
What are Class Files?
This is a block of code that performs a specific task.
What is a Function?
This runs Java bytecode on a computer.
What is the Java Virtual Machine?
This protects data inside a class.
What is Encapsulation?
This can only be true or false.
What is Boolean?
These files store compiled code before a final program is created.
What are Object Files?
This data type can only be true or false.
What is Boolean?
This is the code produced after Java is compiled.
What is Bytecode?
This allows one class to use features from another class.
What is Inheritance?
This data type stores decimal numbers.
What is Double?
This directly controls and executes instructions on a computer.
What is Machine Code?
This data type is used for decimal numbers.
What is Double?
This is temporary memory used while programs run.
What is RAM?
This allows one method to have different behaviors.
What is Polymorphism?
These can only be accessed inside the class they belong to.
What are Private Classes?
This part of the JVM runs bytecode instructions.
What is the Execution Engine?
This stores text or characters in Java.
What is a String?
This allows programs to communicate with the operating system.
What are O.S. Calls?
This programming style uses objects and classes.
What is Object-Oriented Programming?
These can be accessed from anywhere in a program.
What are Public Classes?
This is temporary storage used while programs are running.
What is RAM?