Write a pseudocode to print all multiples of 5 between 10 and 25 (including both 10 and 25).
Step 1: SET start = 10 Step 2: SET end = 25 Step 3: FOR num = start TO end Step 4: IF num MOD 5 is 0 THEN Step 5: PRINT num