QBASIC Programming - VERSION 9.2
Q.1) WAP to change degree Celsius into degree Fahrenheit. => CLS INPUT "Enter degree celsius value" ; D F = ( 9 * C / 5 ) + 32 PRINT "Degree Fahrenheit value = "; F END __________________________________________________________________________________ Q.2) WAP to change dollar into Nepali currency. => CLS INPUT "Enter Dollar value"; USD NRS = USD * 100 PRINT "Nepali currency value = "; NRS END ___________________________________________________________________________________ Q.3) WAP to change Indian currency into Nepali currency. => CLS INPUT "Enter Indian currency value"; IC NRS = IC * 1.6 PRINT "Nepali currency value = "; NRS END _____________________________________________________...