Articles by Team EasyExamNotes

PPL: Semaphores

SEMAPHORES A semaphore is an integer variable that apart from initialisation is accessed only through two standard atomic operators. In two processes, critical section solution … Read more

PPL: Variable Initialization

VARIABLE INITIALISATION MCQs on Variable Initialisation Q1. Global variable are available to all functions. Does there exist a mechanism by way of which it available to some and … Read more

PPL: Array

ARRAY Array: An array is a homogeneous collection of data elements in which an individual element is identified by its position in the, relative to the first … Read more

PPL: Strong Typing

Strong Typing A strongly-typed programming language is one in which variable type is defined. (such as integer, character, hexadecimal, packed decimal, and so forth). If … Read more

PPL: Coroutines

COROUTINES   To understand coroutines first we should know about subroutines. In computer programming, a subroutine is a sequence of program instructions that perform a … Read more