what is the difference between multitasking and
multithreading?
Answer Posted / kumari pooja
-Multitasking: With a multi tasking os,you can can simultaneously run multiple applications.
+Example: A web browser, social networking sites etc.
-Multithreading: Within a single application into individual threads.
+Example : Playing a multi racing game 2 players play a racing game at a time in a single address.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain wrapper classes in java?
How many types of assembly languages are there?
Explain about collection interface in java?
What are the two basic ways in which classes that can be run as threads may be defined?
How to check if a list is sorted in java?
How do you sort arrays in java?
What are static blocks in java ?
Why do we need wrapper classes?
Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example
Can I extend singleton class in java?
What will happen if non-synchronized method calls a static synchronized method and what kind of lock it acquires?
What is length in java?
What is the difference between an if statement and a switch statement?
What is java reflection?
Can a method inside a interface be declared as final?