InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is the correct way of importing an entire package ‘pkg’?(a) import pkg.(b) Import pkg.(c) import pkg.*(d) Import pkg.* |
|
Answer» Right choice is (c) import pkg.* For explanation I would say: Operator * is used to import the entire package. |
|