Core Java Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 231 Page Views: 

What is JAR file?



Posted By: Avi Date: 4 November 2010 12:05:47 AM
 Answer:

JAR(Java Archive) is a file format that enables you to bundle multiple files into a single archive file and it will contains a manifest.mf file inside META-INF folder that describes the version and other features of it.


Posted By: avibtech


Date: 4 November 2010 12:05:47 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image r1gwJH
Related Questions
Core Java : What is an object's lock?

What is an object's lock?

An object's lock obtains synchronized access to the object by multiple threads.
Category: Core Java Date: 11/9/2010 12:12:50 AM
Core Java : Under what conditions is an object's finalize() method invoked by the garbage collector?

Under what conditions is an object's finalize() method invoked by the garbage collector?

The garbage collector invokes an object's finalize() method when it detects that the object has beco....
Category: Core Java Date: 11/8/2010 11:28:54 PM
Core Java : What is the difference between Byte Streams and Character Streams?

What is the difference between Byte Streams and Character Streams?

Byte Streams provide a convenient means for handling input and output of bytes.  And Character ....
Category: Core Java Date: 11/8/2010 10:23:52 PM
Core Java : what is a the difference between System.err and System.out?

what is a the difference between System.err and System.out?

System.out can be redirect to another file. System.err can’t be redirect stream.
Category: Core Java Date: 11/8/2010 9:51:50 PM
Core Java : The thread can enter the waiting state by three ways, what are them?

The thread can enter the waiting state by three ways, what are them?

invoking its sleep() method. 2- blocking on I/O. 3- unsuccessfully attempting to acquire an object's....
Category: Core Java Date: 11/8/2010 9:18:50 PM