---
title: "What is the difference between process and thread?"  
description: "What is the difference between process and thread?"  
author: "Pushpendra Singh"  
published: 2010-10-25  
updated: 2020-09-22  
canonical: https://www.mindstick.com/interview/175/what-is-the-difference-between-process-and-thread  
category: "java"  
tags: ["java"]  
reading_time: 1 minute  

---

# What is the difference between process and thread?

A Procees is an execution of program but a thread is a single execution sequence within a process.\
A process can contain n number of threads.\
\
Threads can directly communicate with other threads of its process; processes must use interprocess communication to communicate with sibling processes. \

## Answers

### Answer by Pushpendra Singh

A Procees is an execution of program but a thread is a single execution sequence within a process.\
A process can contain n number of threads.\
\
Threads can directly communicate with other threads of its process; processes must use interprocess communication to communicate with sibling processes. \


---

Original Source: https://www.mindstick.com/interview/175/what-is-the-difference-between-process-and-thread

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
