| | | | Question Answer Tutorial - JAVA->Multi Threading | | | | Question: What is the name of the method used to start a thread execution?
| | Answer: start();
| | | | | | | | Question: What is multithreaded programming? | | Answer: It is a process in which two or more parts of  ;same process run simultaneously
| | | | | | | | Question: Which two are valid constructors for Thread?
a.) Thread(Runnable r, String name) b.) Thread() c.) Thread(int priority) d.) Thread(Runnable r, ThreadGroup g) e.) Thread(Runnable r, int priority)
| | Answer: a & b
| | | | | | | | Question: Which of these are types of multitasking? | | Answer: Process and Thread based
| | | | | | | | Question: Which of these packages contain all the Java’s built in exceptions? | | Answer: java.lang
| | | | | | | | | | | | |