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
Who found java?
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.
Explain the difference between the public, private, final, protected, and default modifiers?
What is string in java is it a data type?
What is the purpose of the system class in java programming?
what state does a thread enter when it terminates its processing? : Java thread
What is google full form?
Is integer immutable in java?
What are different types of references?
What are the differences between the constructors and methods?
What is class level lock ?
Can an anonymous class be declared as implementing an interface and extending a class in java programming?
What is OOP Language?
What is your platform?s default character encoding and how to know this?
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.