When we use a condition within another condition we say the conditions are "nested". One special case of nested conditions is given by the elseif option, but there are numerous other ways to use nested conditons. Let's examine the following code:
a = 2;
if mod(a,2)==0 % MOD - modulo o...