Answer Posted / priyabrata patro
Compilation unit is .class file , i mean to say here
let's assume that below class as an instance
class Demo
{
public static void main(String args[])
{
System.out.println("hello");
}
}
//>javac Demo.java
once this is executed you will have Demo.class file which is compilation unit for jvm.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Why set is used in java?
How can an exception be thrown manually by a programmer?
Why we override equals() method?
What is singleton math?
Why does my function print none?
What does n mean?
What is the relationship difference the canvas class and the graphics class?
Write a function to print Fibonacci series and Tribonacci series?
Is ++ operator thread-safe in java?
What are the advantages and disadvantages of reference counting in garbage collection?
What is are packages?
Lowest Common ancestor in a Binary Search Tree and Binary Tree.
Differentiate between stringbuffer and string?
What are exception handling keywords in java?
What is oop principle in java?