what is a package?

Answers were Sorted based on User's Feedback



what is a package?..

Answer / kavitha

The package is a Java namespace or part of Java libraries.
The Java API is grouped into libraries of related classes
and interfaces; these libraries are known as packages.
You can create your own packages to bind all ur classes at
one place.

Is This Answer Correct ?    6 Yes 0 No

what is a package?..

Answer / chandra rekha

Package in java is a collection of classes and interfaces
that can be reused in any application or applet.

Is This Answer Correct ?    5 Yes 0 No

what is a package?..

Answer / devarathnam c,kotagudibanda(po

Hi...
A package is nothing but collections of classes and
interfaces.
example:java.lang,java.util,java.applet,java.awt,java.net,ja
va.io etc...

Is This Answer Correct ?    3 Yes 0 No

what is a package?..

Answer / sudhakar

Java provides a mechanism for partitioning the class name
space into more manageable chunks. This mechanism is the
PACKAGE.

Is This Answer Correct ?    3 Yes 1 No

what is a package?..

Answer / mahipal reddy.kaitha,hyd

A Package is a collection of Classes Interfaces that
provides a high-level layer of access protection and name
space management.

Is This Answer Correct ?    0 Yes 0 No

what is a package?..

Answer / ravikiran

package defines a name space for members and methods inside
a class

Is This Answer Correct ?    0 Yes 0 No

what is a package?..

Answer / ramesh

A package in java is an encapsulation mechanism that can be
used to group related classes,interfaces,and subpackages.

Is This Answer Correct ?    0 Yes 0 No

what is a package?..

Answer / shripal

package is a collection of classes and interfaces.
whatever classes we used in program they are belongs to the
particular package which we have defined

Is This Answer Correct ?    0 Yes 0 No

what is a package?..

Answer / pooja

a package is nothing but a folder in which there are a
collection of classes and interfaces.
of course it is a folder , a folder which is created
explicitly is not a package .
the keyword used for creation of package is "package"
syntax:package <package_name>;
compilation syntax:javac -d path file_name.java;

Is This Answer Correct ?    0 Yes 0 No

what is a package?..

Answer / kamruz

package is a namespace,for organising classes and interface in a logical manner

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

why interaction with server using javascript is difficult

1 Answers  


What is Mutex (Mutual Exclusion Object) ?

1 Answers   Ciena,


What is a Hash Table? What are the advantages of using a hash table?

1 Answers   Ciena,


What is the impact of declaring a method as final?

1 Answers  


What data type is a string?

1 Answers  


What is externalizable interface?

1 Answers  


how we can use debug in myeclipse 6.0 in order solve the problems that exist in our program when there are 900 to 1000 pages in a web application

1 Answers   SAP Labs,


Does java initialize arrays to zero?

1 Answers  


What are the two types of java programming?

1 Answers  


what are the rules to use try catch finally?

1 Answers   Satyam, UJ,


How many characters is 16 bytes?

1 Answers  


How many types of memory areas are allocated by jvm?

1 Answers  


Categories