adplus-dvertising
frame-decoration

Question

Which of the following is false statement about package in java?

a.

Packages are used for preventing naming conflicts

b.

Providing controlled access: protected and default have package level access control.

c.

Packages cannot be considered as data encapsulation

d.

both a and c

Posted under Java Programming

Answer: (c).Packages cannot be considered as data encapsulation

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following is false statement about package in java?

Similar Questions

Discover Related MCQs

Q. Packages that are inside another package are the _________

Q. An interface in Java is like a 100% ____.

Q. A Java Interface is not considered a class. State TRUE or FALSE.

Q. Choose the correct syntax below for defining an Interface in Java.

Q. Choose a correct statement about Java Interfaces?

Q. A Java Class inheritsConstants and Methods of an Interface using ____ keyword.

Q. All Interface variables are ___ by default in Java.

Q. All Interface methods in Java are ____ by default.

Q. A Class implementing an Interface can use ____access modifier before the implemented methods.

Q. A Java Class implementing an Interface can define a variable with the same name as that of the Interface constant. State TRUE or FALSE.

Q. A Java Interface can not declare constructors. State TRUE or FALSE.

Q. Java 8 (Java 1.8) introduced the ___ feature.

Q. Java Interface static methods have ___ compatibility with the existing project code.

Q. Java Interface DEFAULT methods have ___ compatibility with the existing project code.

Q. The DEFAULT methods of an Interface are suitable mostly for ___ type of projects.

Q. Is it possible to remove the keyword DEFAULT and make the method abstract again in an Interface, if the Interfacebelongs to a Closed-Source project?

Q. The annotation used in Java to override the method of a super-class or interface by the subclass or implementing class is ___.

Q. It is ___ to override the static method of an Interface in Java.

Q. A Java static method can not be ___.

Q. A Superinterface is comparable to a Superclass. State TRUE or FALSE.