Articles by Team EasyExamNotes

Type checking

TYPE CHECKING Introduction: The compiler must perform static checking (checking done at compiler time).This ensures that certain types of programming errors will be detected and … Read more

Parameter passing

PARAMETER PASSING There are two types of parameters: Formal parameters Actual parameters Based on these parameters there are various parameter passing methods.  The most common … Read more

Storage organization

During the execution of a program, the same name in the source can denote different data objects in the computer. The allocation and deallocation of … Read more

Recursive descent parser

A parser that uses collection of recursive procedures for parsing the given input string is called Recursive descent (RD) parser. Basic steps for construction of … Read more