what is the difference between javap and jad utility
Answer / pranjal prakash srivastava
JAD is a programm that reads one or more java class file and
convert them into java source file which can be compiled
again,so in other words we can say that JAD is a decompiler
for the java whereas javap is a command that displays
information about the methods, variables, and parameters
present in a class file.
| Is This Answer Correct ? | 8 Yes | 3 No |
What is the different between Applet and Application?
How is polymorphism achieved?
what uses of c++ language?
What does and I oop mean?
What is polymorphism used for?
What is encapsulation process?
c++ program to swap the objects of two different classes
1. Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)
what is runtime polymorphism? For the 5 marks.
What is difference between data abstraction and encapsulation?
What does the code "cout<<(0==0);" print? 1) 0 2) 1 3) Compiler error: Lvalue required
What is public, protected, private?