true or false
1.A is a string variable.
2.input A$,B$ accepts two alphanumeric values from user
3.Input A$,B$ accepts two numbers values
4.when comma is used with print statement, then items are displayed closed to each other leaving no space
5.The condition in if...then...else statement is given by some relational expression
Answers
Answered by
1
Answer:
1) False 2) True 3 ) True 4) False 5) True
Answered by
2
Answer:
Answer:
(NOTE: ALL THE ANSWERS ARE APPLICABLE FOR QBASIC ONLY)
1:)FALSE.
2:)TRUE
3:)TRUE
4:)FALSE
5:)TRUE
Explanation:
1:)BEACUSE STRING VARIABLE CONTAINS $ sign after it
2:)CLS
PRINT "INPUT TWO APLHANUMERIC CHARACTERS"
INPUT A$
INPUT B$
END
(the following program can input the above statement)
3:). because string variable can accept but can't execute the numeric value
CLS
INPUT "ENTER TWO NUMBERS";A
INPUT B
END (the program can accept two numeric values)
4:)semicolons is used with print statement, then items are displayed with no space between them
5:) because it is conditional decision making statement that make decisions based on comparisons (I. E. =,<, >etc.)
Similar questions