InterviewSolution
Saved Bookmarks
| 1. |
How do you refer to the types, objects and subprograms declared within a package? |
|
Answer» The types, objects, and subprograms declared within a package are referred to using the dot notation as − package_name.type_name package_name.object_name package_name.subprogram_name |
|