Programming (Part 4)
1. WAP to modify division identification program using SELECT CASE. => CLS INPUT "Enter secured percentage"; P SELECT CASE P CASE IS >= 60 PRINT "First Division" CASE 50 TO 59.9 PRINT "Second Division" CASE 40 TO 49.9 PRINT "Third Division" CASE ELSE PRINT "Failed" END SELECT END 2. WAP to check whether the number is positive or negative or zero. => CLS INPUT "Enter any number"'; A SELECT CASE A CASE IS > 0 PRINT "Number is positive" CASE IS< 0 PRINT "Number is zero" CASE ELSE END SELECT END 3. WAP to find area of circle asking the ...