To input age of 5 students and find number of students whose age is less than 15. (Qbasic Code)
- CLS
 FOR i = 1 TO 5
 INPUT "Enter age of students"; n(i)
 NEXT i
 FOR j = 1 TO 5
 IF n(j) < 15 THEN c = c + 1
 NEXT j
 PRINT "The number of students below 15 years = "; c
 END
