what is the difference between multitasking and
multithreading?
Answer Posted / amulya
multithreading is a specialized form of multitasking.multi threading programs contains 2 or more threads running concurrently.it requires less overhead than multitasking.in this process threads are light weight process.
multitasking contains 2 or more process will run concurrently.in this process are heavy weight tasks.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are green threads in java?
How do I run java on windows?
What is protected in java?
Is there any way to find whether software installed in the
system is registered by just providing the .exe file?
I have tried the following code but its just displaying the
directory structure in the registry.
Here the code :
package com.msi.intaller;
import java.util.Iterator;
import ca.beq.util.win32.registry.RegistryKey;
import ca.beq.util.win32.registry.RootKey;
public class RegistryFinder {
public static void main(String... args) throws Exception
{
RegistryKey.initialize(RegistryFinder.class.getResource("jRe
gistryKey.dll").getFile());
RegistryKey key = new RegistryKey(RootKey.HKLM,
"Software\\ODBC");
for (Iterator
How we can execute any code even before main method?
Can we write any code after throw statement?
What restrictions are placed on method overloading?
What is a pointer and does java support pointers?
How many types of keywords are there?
What is anti pattern in java?
What happens if we don’t define serial version uid?
How does compareto work in java?
Does java support multiple inheritance or not?
What is the purpose of a default constructor?
What are the topics in core java?