OCAJP Encapsulation mock questions

This is another post in the series of mock questions for OCAJP exam. One of the exam objective is “Apply encapsulation principles to a class”.
This exam objective tests your knowledge on how to write a class that meets the encapsulation principles and validate your understanding.
I have prepared a set of good mock questions for this objective that might be useful for the readers who are preparing for the OCAJP 8 certification exam.

Encapsulation mock questions

1. Which Java feature uses access modifiers to protect class data (variables)?

A. Abstraction
B. Inheritance
C. Polymorphism
D. Encapsulation
E. Data hiding

2. What is Encapsulation ?

A. Variables are public and public setter/getter methods are provided to change/access their values.
B. Variables are default and protected setter/getter methods are provided to change/access their values.
C. Variables are protected and public setter/getter methods are provided to change/access their values. D. Variables are private and protected setter/getter methods are provided to change/access their values.
E. Variables are private and public setter/getter methods are provided to change/access their values.

3. Which are true about Encapsulation ? (select 2 options)

A. A class can have total control over what data is stored in its fields.
B. Classes can get functionality from other classes.
C. Classes expose only certain fields and methods to other classes for access.
D. Classes contains abstract methods which must be implemented by it’s sub classes.
4. How can you make the below class to exhibit fully encapsulation ?

A. No need of changes.
B. Make all properties private.
C. Make all methods protected.
D. Make all properties private and provide setter method for name property.
E. Make all properties private and remove setter method for id property.

5. How can you make the below class to exhibit fully encapsulation ?

A. No need of changes.
B. Make all properties private.
C. Make all methods protected.
D. Make all properties private and provide setter method for area property.
E. Make all properties private and getArea method public.

Answers

1. Correct option : D Encapsulation uses access modifiers to protect variables.
2. Correct option : E To make a class as fully encapsulated, make variables as private and provide setters methods to assign or change variable values and provide getters methods to get variable values.
3. Correct options : A, C With Encapsulation your classes can expose only certain fields and methods to other classes for access and class can have total control over what data is stored in its fields.
4. Correct option : D To make the above class as fully encapsulated, make all variables as private and give setter method for name property for assigning data to name property.
5. Correct option : E To make the above class as fully encapsulated, make all variables as private and give public to getArea method.
If you are preparing for the OCAJP certification exam, the following references would be much useful.
• OCAJP 8 Exam Curriculum
• OCAJP Forums
• How to prepare for OCAJP Exam?

Was this post helpful?

Leave a Reply

Your email address will not be published. Required fields are marked *