what is translator and it types
Answer / deepakkumar1887
translator is a program, which translate the source code
instruction to perform native code instruction. there are
three types ie., assembly,compiler and interpreter.
| Is This Answer Correct ? | 0 Yes | 0 No |
How does hashset works in java?
What is the difference between serialization and deserialization?
How to store image in arraylist in java?
why interfaces are faster than abstract classes?
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()); } }
What is connection class in java?
why java is platform independent?
What is a functional interface?
What is array pointers ?
Why are global variables used?
How can an exception be thrown manually by a programmer?
Can i have abstract class with no abstract methods?