What is the use of bin and lib in JDK?

Answer Posted / shruti gupta

'bin' is where binary (executable) files are stored. These
are the Java tools, e.g. java.exe, javac.exe, jar.exe, etc.

'lib' is where library files are stored, these are the Java
classes supplied for you to use in your programs. They are
mainly stored as compressed directories, in .jar files.

Is This Answer Correct ?    27 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Who found java?

763


we have syntax like for(int var : arrayName) this syntax is to find whether a number is in the array or not.but i want to know how to find that number's location.

1794


Explain the difference between the public, private, final, protected, and default modifiers?

776


What is string in java is it a data type?

732


What is the purpose of the system class in java programming?

740


what state does a thread enter when it terminates its processing? : Java thread

809


What is google full form?

742


Is integer immutable in java?

730


What are different types of references?

743


What are the differences between the constructors and methods?

801


What is class level lock ?

794


Can an anonymous class be declared as implementing an interface and extending a class in java programming?

879


What is OOP Language?

832


What is your platform?s default character encoding and how to know this?

1998


there are N number of matchboxes numbered 1...N.each matchbox contain various number of stick.Two player can alternatevely pick some amount of stick from the higest stick containing box . The player is condidered win if there is no stick after his move.Find the final move so that the move player win. Note:In case the number of stick is equal ,pick the stick from the higest numbered box.

1769