What is multithreading ???? How to stop multithrading in
java????
Answer Posted / jyothsna ivaturi
An independent sequential path of execution with in a program is called as THREAD.
MULTITHREADING is the proess of execution of two or more threads concurrently at a time.
This process can be stopped in java with the help of synchronization.
SYNCHRONIZATION can be defined as "a shared resource can be used by only a single thread at a time"
Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
Can we have a try block without catch block?
What is string length in java?
Difference between static binding and dynamic binding?
what is function overloading in java?
How do we access static members in java?
What is private static class in java?
What is the need of transient variables in Java ?
What is a line separator in java?
How can we make copy of a java object?
What about main() method in java ?
What is the impact of declaring a method as final?
How can a gui component handle its own events in java programming?
If we don’t want some of the fields not to serialize how to do that?
what is the difference between the methods sleep() and wait()? : Java thread
Can we use both this () and super () in a constructor?