______________ is a command that disassembles a class file

Options
- javaamd
- javacmd
- javad
- javap


CORRECT ANSWER : javap

Discussion Board
javap

javap is also called as disassembler as it takes one or more files and separates the classes. The output is totally dependent on the options used with the command. It is used to print out the package, protected, and public fields and methods of the classes that are passed to it.
This command gives an overview of the Java statement and its working. It is also used to find out the methods that are available for a class which doesn't require the source code to be known for the classes that has been created. The format is as follows:

javap filename [options]

Rohit Sharma 08-3-2014 04:20 PM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement