Question 1
Which of the following statements are true?
◦ Encapsulating data fields makes the program short.
◦ Encapsulating data fields makes the program easy to maintain.
◦ Encapsulating data fields helps prevent programming errors.
◦ Use the private modifier to encapsulate data fields.
Question 2
Suppose you wish to provide an accessor method for a boolean property finished, what signature of the method should be?
◦ public void isFinished()
◦ public boolean isFinished()
◦ public void getFinished()
◦ public boolean getFinished()