Articles by Team EasyExamNotes

PPL: Loops

LOOPS MCQs on Loops Q1. Depending on the place of control statement in loop, it can be classified as what? (A)Entry-controlled   (B)Exit-controlled   (C)Both (A) and (B) … Read more

PPL: Exception Handling

C++ Exception Handling   #include < iostream.h> using namespace std;   void main() { int x,y; cout<<“Enter the value of x:”; cin>>a>>b;   cout<<“Enter the … Read more

PPL: C# Threads

C# THREADS MCQs on C# Threads   Q1. How many threads can exists for each of the processes that occurs in the program? a) at most … Read more

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