Posts

Showing posts from September, 2025

10TH QUESTION

Image
  Section A Question 1 (a) Define the term Bytecode. Answer Java compiler converts Java source code into an intermediate binary code called Bytecode. Bytecode can't be executed directly on the processor. It needs to be converted into Machine Code first. (b) What do you understand by type conversion? How is implicit conversion different from explicit conversion? Answer The process of converting one predefined type into another is called type conversion. In an implicit conversion, the result of a mixed mode expression is obtained in the higher most data type of the variables without any intervention by the user. For example: int a = 10; float b = 25.5f, c; c = a + b; In case of explicit type conversion, the data gets converted to a type as specified by the programmer. For example: int a = 10; double b = 25.5; float c = (float)(a + b); (c) Name two jump statements and their use. Answer break statement, it is used to jump out of a switch statement or a...