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

PPL: Exception Handler in C++

Purpose of Exception Handling: Try-Catch Blocks: Throwing Exceptions: Catching Exceptions: Standard Exceptions: Custom Exception Classes: Multiple Catch Blocks: Order of Catch Blocks: Unhandled Exceptions: Rethrowing … Read more

PPL: OOP in PHP

OOP IN PHP   Viva Vice on OOP in PHP   Q1. What is OOPS? OOPS is abbreviated as Object Oriented Programming system in which programs … Read more