Explain an intermediate language?


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

Post New Answer

More Core Java Interview Questions

What is api in java?

0 Answers  


What is string array?

0 Answers  


What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }

5 Answers   Rolta,


Why packages are used?

5 Answers  


How to do encapsulation in java?

0 Answers  


Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2); 13. switch(i) { 14. case 3: System.out.println(”three”); break; 15. default: System.out.println(”other”); break; 16. } 17. } ‘What is the result? 1 three 2 other 3 An exception is thrown at runtime. 4 Compilation fails because of an error on line 12.

9 Answers  


what is java

10 Answers  


Why does java have two ways to create child threads? Which way is better?

0 Answers  


What are the uses of synchronized keyword?

0 Answers  


What is hashing in java?

0 Answers  


What is the intersection and union methods?

0 Answers  


Is string is a data type in java?

0 Answers  


Categories