InterviewSolution
Saved Bookmarks
| 1. |
The ________ class provides the getValue() method to read the values from its instance.(a) Get(b) Result(c) Put(d) Value |
|
Answer» Correct option is (b) Result To elaborate: Get the result by passing your Get class instance to the get method of the HTable class. This method returns the Result class object, which holds the requested result. |
|