InterviewSolution
Saved Bookmarks
| 1. |
What is meant by a package ? Name any two java Application Programming Interface packages. |
|
Answer» A package in java is a mechanism for organizing java classes into namespaces similar to the modules of modula. Java packages allow classes in the same package to access each other’s package-access members. Two Java application programming interface packages are java.lang and java.io. |
|