Computer Studies
State whether the following statement is True or False :
INPUT "Information Technology" is a valid statement.
QBASIC: Input Statement
6 Likes
Answer
False
Answered By
3 Likes
Related Questions
State whether the following statement is True or False :
INPUT statement accepts the data value during execution of the program.
State whether the following statement is True or False :
There is no difference between LET and INPUT statement in QBASIC.
Complete the following QBASIC program:
CLS
PRINT "Enter two numbers"
INPUT ………..
……….. = A+B
……….. = A*B
PRINT "The sum of two numbers ="; S
PRINT "The product of two numbers ="; P
………..Complete the following QBASIC program:
CLS
INPUT "Enter the name of article"; N$
INPUT "Enter the number of articles"; P
INPUT "Enter the price of article"; ………..
M = P * Q
PRINT "Name of the article is"; ………..
PRINT "Total cost of the articles is"; ………..
END