What is the difference between Logical Parallelism and
Physical Parallelism?
Answer Posted / Nimish Singh
Logical Parallelism refers to a technique used in programming where multiple tasks are divided and executed concurrently by the CPU, giving an illusion of parallel execution. On the other hand, Physical Parallelism involves the use of multiple CPUs or processing units to execute different tasks at the same time in reality. In Java, Logical Parallelism can be achieved using threads, while Physical Parallelism requires multiple physical machines.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the resourcebundle class?
what is reflection api? How are they implemented?
What is the first argument of the string array in main method?
What is the locale class?
Can we extract main method from another class?
How does java handle integer overflows and underflows?
What is the java api?
What if I write static public void instead of public static void?
What do you understand by casting in java language? What are the types of casting?
Are jvm’s platform independent?