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: Sequence Control & Expression

SEQUENCE CONTROL AND EXPRESSION Viva Voce on Sequence control & expression Q1. Describe static function with its usage? Ans) A function, which has a function definition ...

Read more

Sequence Control & Expression | PPL

SEQUENCE CONTROL AND EXPRESSION   Viva Voce on Sequence control & expression   Q1. Describe static function with its usage? Ans) A function, which has a ...

Read more

PPL: Character Data Type

CHARACTER DATA TYPE Character data type allows a variable to store only one character (letter, number, etc.). char keyword is used to refer character data ...

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

PPL:Named Constants

NAMED CONSTANTSA named constant is a variable that is bound to a value only once. Viva Voce on Named Constants Q1. What in const? Ans. ...

Read more

PPL: Heap based storage management

HEAP BASED STORAGE MANAGEMENT Viva Voce on Heap based storage management Q1. What is Heap ? Ans. Heap is the segment where dynamic memory allocation usually takes ...

Read more

PPL: Primitive Data Type

PRIMITIVE DATA TYPE Primitive data types are data types which are not defined with support of other data types. Some of the primitive data types ...

Read more