Articles by Team EasyExamNotes

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

PPL: Exceptions

EXCEPTIONS Viva Voce on Exceptions   Q1. What is the difference between error and exception in java? Errors are mainly caused by the environment in which … Read more