Explain about complier design(phases)


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

Explain the difference between jvm and jre?

0 Answers  


What do you mean by JVM?

0 Answers   Ericsson,


Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }

3 Answers  


Can a source file contain more than one class declaration?

0 Answers  


Do you know thread pools?

0 Answers   BMC,






If there is no implementation of MARKER INTERFACE in java. Then how compiler come to know about specification.

2 Answers  


Why volatile is used in java?

0 Answers  


What is procedure overloading?

0 Answers  


for what purpose we use applets ?

3 Answers   Mindlogicx,


What is tree node in java?

0 Answers  


When throws keyword is used?

0 Answers  


What is an array in java?

0 Answers  


Categories