Computer Science, asked by Reyansh4503, 1 year ago

Create a user define package which has a class that will perform bubble sort of an given array

Answers

Answered by Anonymous
0

What is Package in Java?

A Package is a collection of related classes. It helps organize your classes into a folder structure and make it easy to locate and use them. More importantly, it helps improve re-usability.

Each package in Java has its unique name and organizes its classes and interfaces into a separate namespace, or name group.

Although interfaces and classes with the same name cannot appear in the same package, they can appear in different packages. This is possible by assigning a separate namespace to each package.

Attachments:
Similar questions