What would be the output of the following QBASIC code, if user enters Rashi, 11 and 6 respectively for each input prompt?
CLS
INPUT "What is your name?", name$
INPUT "What is your age?", age
INPUT "Enter your class:", class
PRINT "Hello"; name$; "! How are you?"
PRINT
PRINT "You are"; age; "years old"
PRINT
PRINT "You study in class"; class
A
Hello Rashi! How are you?
You are 11 years old
You study in class 6
B
Hello Rashi! How are you?
You are 11 year old; you study in class 6
C
HelloRashi! How are you?
You are 11 years old
You study in class 6
D
Hello Rashi how are you?
You are 11 years old;
You study in class 6
???