OS Deadlock In a multi programming environment several processes may compete for a finite number of resources. A process request resources; if... BY Team Topic Nest October 30, 2021 0 Comments
OS Classical Problem on Synchronization There are various types of problem which are proposed for synchronization scheme such as Bounded Buffer Problem: This problem was... BY Team Topic Nest October 30, 2021 0 Comments
OS Process Synchronization A co-operation process is one that can affect or be affected by other processes executing in the system. Co-operating process... BY Team Topic Nest October 30, 2021 0 Comments
OS CPU Scheduling Algorithm CPU Scheduling deals with the problem of deciding which of the processes in the ready queue is to be allocated... BY Team Topic Nest October 30, 2021 0 Comments
OS Types of schedulers There are 3 types of schedulers mainly used: 1. Long term scheduler: Long term scheduler selects process from the disk... BY Team Topic Nest October 30, 2021 0 Comments
C and C++ Difference between break and continue statement Break Continue can be used in switch statement cannot be used in switch statement causes premature exit of the loop... BY Team Topic Nest October 27, 2021 0 Comments
Data Structures Recursion Recursion is the name given for expressing anything in terms of itself. A function which contains a call to itself... BY Team Topic Nest October 26, 2021 0 Comments
Data Structures Evaluation of Postfix Expression 1.read only one input symbol at a time from postfix expression. 2.if input symbol is operand ,push operand in to... BY Team Topic Nest October 26, 2021 0 Comments
Data Structures Convert infix expression into postfix Expression Infix notation: In most common arithmetic opeartions,the opeartor is placed b/w the two operands. 1) A+B 2)C-D 3) E*F 4)... BY Team Topic Nest October 26, 2021 0 Comments
Data Structures Implement Stack by using dynamic arrays When a stack is implemented by using static arrays the size of the stack is bound to MAXSTK(i.e maximum elements... BY Team Topic Nest October 26, 2021 0 Comments