How many times will the word YES be printed when the following BASIC program is executed? 10 LET I = 1 20 PRINT "YES" 30 LET I = I + 1 40 IF I<5 THEN 20 50 END 1) 4 times2) 5 times3) 6 times4) The program cannot be executed