what is the difference between javap and jad utility

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is the sylabus for priliminaries?

1677


What is balance factor?

576


What is an interface in oop?

589


How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction

1650


What is difference between oop and pop?

607






What are the features of oop?

628


i=20;k=0; for(j=1;k-i;k+=j<10?4:3) { cout<

1409


Why is static class not inherited?

590


What do you mean by variable?

567


#include #include #include #include void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

2056


Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)

1633


What is stream in oop?

833


What are the 4 pillars of oop?

660


What is static in oop?

585


What is multilevel inheritance in oop?

547