Java MCQ Set 1 1. ________ submits a value-returning task for execution and returns a Future representing the pending results of the task. a) submit(Callable<T> task) b) awaitTermination c) submit(Runnable task, T result) d) invokeAll() AnswerAnswer: a [Reason:] The Future’s get method will return the task’s result upon successful completion. 2. ______ submits a Runnable…