
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
When a thread is created and started, what is its initial state?
When a new thread begins its life cycle in the new state. It remains in this state until the program starts the thread. It is also referred to as a born thread.
After this newly born thread is started, the thread becomes runnable. A thread in this state is considered to be executing its task.
Advertisements