OOPS
August 29, 2024OOPS
August 29, 2024OOPS
|
Question 146
|
Which of the following is/are true about packages in Java?
1) Every class is part of some package
2) All classes in a file are part of the same package
3)If no package is specified, the classes in the file go into a special unnamed package.
4) If no package is specified, a new package is created with folder name of class and the class is put in this package
1) Every class is part of some package
2) All classes in a file are part of the same package
3)If no package is specified, the classes in the file go into a special unnamed package.
4) If no package is specified, a new package is created with folder name of class and the class is put in this package
|
Only 1,2 and 3
|
|
|
Only 1,2 and 4
|
|
|
Only 4
|
|
|
Only 1 and 3
|
Question 146 Explanation:
Option -4 false because new package is created by using syntax package package_name which is user defined .There is no relation with class name.
Correct Answer: A
Question 146 Explanation:
Option -4 false because new package is created by using syntax package package_name which is user defined .There is no relation with class name.
