Concept
The emphasis of this level is on the concept of overflow and underflow which is a concern for contracts written in solidity version <0.8.
Basically, there are different types of integer data type. For example, uint256, int256, uint8, int8. Ea...