Type Checking

TYPE CHECKING

Type checking is a program analysis that verifies something about the types that are used in the program.
Type checking could happen at compile-time or at run-time.
There is two types of type checking:

  1. Static type checking
  2. Dynamic type checking
1) Static type checking: When variable data type is defined.
For example, in Java
int age = 20;

It is performed at compile time.

2) Dynamic type checking: When variable data type is not defined.
For example, in Python
age = 20;

It is performed at run time.




Principles of Programming Languages:

EasyExamNotes.com covered following topics in these notes.

Practicals:
Previous years solved papers:
A list of Video lectures
References:
  1. Sebesta,”Concept of programming Language”, Pearson Edu 
  2. Louden, “Programming Languages: Principles & Practices” , Cengage Learning 
  3. Tucker, “Programming Languages: Principles and paradigms “, Tata McGraw –Hill. 
  4. E Horowitz, "Programming Languages", 2nd Edition, Addison Wesley 

Share: