Temporal cohesion:
When a module contains functions that are related by the fact that these functions are executed in the same time span, then the module is said to possess temporal cohesion.
Example of Temporal cohesion,
Consider the following situation. When a computer is booted, several functions need to be performed. These include initialization of memory and devices, loading the operating system, etc. When a single module performs all these tasks, then the module can be said to exhibit temporal cohesion.


