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 |
Have you ever interfaced with a database?
What are the benefits of oop?
What is ambiguity in inheritance?
Which is the only operator in C++ which can be overloaded but NOT inherited?
write a program for function overloading?
14 Answers HCL, InfoCity, TATA,
What is a class?
32 Answers Infosys, TCS, Thylak,
What will happen when the following code is run: int x; while(x<100) { cout<<x; x++; } 1) The computer will output "0123...99" 2) The computer will output "0123...100" 3) The output is undefined
What is polymorphism ? Explain with examples
What is multiple inheritance ?
17 Answers Blue Star, C DAC, CDAC, Impetus, Ness Technologies, Softvision Solution,
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
Difference between vector and array
What normal C constructs work differently in C++?