Computer Science, asked by rmms5a078, 18 days ago

write a progrramme in QBASIC to print your name, class, roll no. and school using input statement and show the output statement tooo ​

Answers

Answered by Devesh45222
2

Explanation:

Cls

Input "Enter name"; N$

Input "Enter class"; C$

Input "Enter roll no. "; RN

Input "Enter Subject "; SUB$

Input "Enter school name "; S$

Print "Name : "; N$

Print "Class : "; C$

Print "Roll No : "; RN

Print "Subject : "; SUB$

Print "School : "; S$

End

Similar questions