Define Compiling?
Answers were Sorted based on User's Feedback
Answer / ravikiran(aptech mumbai)
compiling is taken place in compiler which will debug the
code regards to syntax and in java it converst the bug free
code into byte code and jvm will load that byte code to
convert it into user understandable code
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / therathna
converting programing langauge to michine language.In java
compailing is done by interpriter this is use for to convert
programing into byte code.
| Is This Answer Correct ? | 2 Yes | 2 No |
Give an example of call be reference significance.
What is the default size of load factor in hashing based collection?
How do you sort a list in java?
import java.io.*; class Demo { public static void main(String args[]) { File f=new File("1234.msg"); String arr[]=f.list(); System.out.println(arr.length); } }
Can we have a method name same as class name in java?
Why we can not force Garbage Collection?
What is the use join() in Threads ?
Can you explain the Java thread lifecycle?
Why can't we override private static methods?
List out five keywords related to exception handling ?
What does jre stand for?
What is the use of using enum to declare a constant?