Java TWO marks
What is bytecode? Bytecode is a highly optimized set of instructions designed to be executed by the java run-time system. Which is called the java virtual machine (JVM). JVM is an interpreter for bytecode. What is a Literal? What are the different types of literals? A Literal represents a value of a certain type where the type describes the behaviors of the value. The different types of literals are: Number literals Character literals Boolean literals String literals What is a Number literals? There are several integer literals as int, long, octal, hexadecimal etc. 10 is an example of a decimal integer literal of type int . If a decimal integer literal is larger that the int, it is declared to be of type long . A number can be made long by appending L or 1 to it. Negative integers are preceded by the minus sign. These integers can also be expressed as octal or hexadecimal. A leading 0 to the integer indicate that the number is an octal integer....