- 
					 Which feature of java 8 enables us to create a work stealing thread pool using all available processors at its target?
- 
                        - newWorkStealingPool
- workPool
- workThreadPool
- threadPool
- None of these
 
Correct Option: A
Executors newWorkStealingPool() method to create a work-stealing thread pool using all available processors as its target parallelism level.
 
	