Find the value of a after execution of the loop by first constructing a trace table.
a := 3
for i:= 1 to 3
a:= 4a + 1
next i
iteration 0 1 2 3
i __ __ __
a 3 __ __ __

After execution:
a = ___