Skip to content

Tag Archives: mutli-threading

An array is a collection of items stored at contiguous memory locations. The idea is to store multiple items of the same type together. This… Read More
When a thread moves through the system, it is always in one of the five states: (1) Ready (2) Running (3) Waiting (4) Delayed (5)… Read More
Given a 2-D matrix, find the element having maximum value using multi-threading. Prerequisite : Multithreading Examples : Input : {{1, 5, 3, 6}, {22, 10,… Read More
What are conditional wait and signal in multi-threading? Explanation: When you want to sleep a thread, condition variable can be used. In C under Linux, there… Read More

Start Your Coding Journey Now!