arjushah80 arjushah80 18-01-2024 Computers and Technology contestada END Write down the output of the given program. Show with dry run in a table.REM To display the output CLS a=0 x = 0 WHILE a<20 IF a MOD 5=0 x=x+a PRINT x; ENDIF a=a+1WENDEND