InterviewSolution
Saved Bookmarks
| 1. |
Point out the wrong statement.(a) getInstance() creates a new Job with particular cluster(b) getInstance(Configuration conf) creates a new Job with no particular Cluster and a given Configuration(c) getInstance(JobStatus status, Configuration conf) creates a new Job with no particular Cluster and given Configuration and JobStatus(d) all of the mentioned |
|
Answer» The correct option is (a) getInstance() creates a new Job with particular cluster The explanation is: getInstance() creates a new Job with particular cluster. |
|