44.5k views
1 vote
Each class in the file is compiled into a separate bytecode file. True or False ?

1 Answer

3 votes

Final answer:

Each class in a file is not always compiled into a separate bytecode file.

Step-by-step explanation:

False.

Each class in a file is compiled into a separate bytecode file only if the file contains more than one class. If the file contains only one class, then the bytecode file will have the same name as the class and will be saved with a .class extension.

For example, if a file contains two classes named ClassA and ClassB, then two separate bytecode files will be generated: ClassA.class and ClassB.class.

User Mel
by
8.1k points