1) What are the similarities between multitasking and multithreading?
2) What are the differences between multithreading and multitasking?
3) What is a thread?
4) What is a single thread application? What is its limitation?
5) What is multithreaded application?
6) What is green thread?
7) How to implement Multithreading in java?
8) Explain the life cycle of a thread?
9) Explain about New state in thread life cycle?
10) explain about Active state in thread life cycle?
11) explain about Sleep state in thread life cycle?
12) explain about Dead state in thread life cycle?
13) Develop a java application that performs the fallowing 2 tasks concurrently?
14) Write a program that a single user defined thread class to perform the two tasks in parallel
15) Write a program that task performing code is placed in the run method in directly
16) Write a program that user defined class implements java.long.Runnable interface instead of extending thread class.
17) What is Thread priority?
18) What are daemon Threads?
Comments
Post a Comment