InterviewSolution
Saved Bookmarks
| 1. |
Point out the wrong statement.(a) addDeprecations adds a set of deprecated keys to the global deprecations(b) configuration parameters cannot be declared final(c) addDeprecations method is lockless(d) none of the mentionedThe question was posed to me during an interview.I'd like to ask this question from Hadoop Configuration in portion Working of MapReduce of Hadoop |
|
Answer» CORRECT answer is (B) CONFIGURATION parameters cannot be declared final To EXPLAIN: Configuration parameters MAY be declared final. |
|