Technical Interview

Home
Technical Interview
Interview Process
Introduction Questions
Quantitative Problems
Google & Microsoft
Algorithms
C/C++ Questions
Java Questions
Data Structures
Fundamental Questions
Puzzles
Resume Tips
Added Recently
Links
Contact Us
Submit Question/Answer

Java Interview Questions and Answers

 

Explain different ways of using thread?

The thread could be implemented by using runnable interface or by inheriting from the Thread class. The former is more advantageous, because when you are going for multiple inheritance, only interface can help.