What is multithreading ???? How to stop multithrading in
java????
Answer / 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 |
How dead lock situation occurs in java and how you can identify it?
Can we call thread start () twice?
Is empty .java file name a valid source file name?
What is Unicast and Multicast object? Where we will use?
1 Answers Scope International,
What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }
Are generics important java?
What is the purpose of garbage collection in java? When is it used?
Which package has light weight components?
An inner class can actually be a subclass of the outer class? a. true b. false
What is arraylist class in java?
What is the requirement of thread in java?
How many bytes is a string?