Question 14 of 72 from exam 1Z0-900: Java EE 7 Application Developer

Question 14 of 72 from exam 1Z0-900: Java EE 7 Application Developer

Question

Given:

public class SomeClass {
@Resource (name="java:comp/env/concurrent/TaskExecutor")
ManagedExecutorService mes;
public void createTask() {
Future<Integer> result=
mes.sibmit(new MyCallable<Integer>());

How often does the submitted task run?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

A.