Articles by Team EasyExamNotes

Boolean expression

A boolean expression is an expression that evaluates to either true or false. It typically involves logical and/or relational operators and is used to make … Read more

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