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 |
how to tackle technical questions
INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
What is inheritance in simple words?
What is conditional Compilation?
what are the ways in which a constructors can be called?
write a c++ code to overload + and - for a stack class such that + provides push and - provides pop operation
1 Answers College School Exams Tests, HCL, IBM, TCS,
design class for linked list and include constructor,destructor,insert option. node of form struct node { int data; struct node &ptr; }
Is abstract thinking intelligence?
write a progra in c++ using class & object to find out wheather a given no. is prim or not.
what is the main difference between c and c++?
386 Answers AZTEC, B.Tech, CMC, College School Exams Tests, HCL, IBM, ITM, Khalsa Institute, Microsoft, Oracle, Sanjeevni Institute, TCS, Tech Mahindra, Wipro, ZeOmega,
Which is the parameter that is added to every non-static member function when it is called?
What is class and example?