Computer Science, asked by bhanukumar9360, 10 months ago

Write a program in qbasic to input"student 's name marks obtained Mark and percentage

Answers

Answered by mersalkeerthi46
2

1)Write a program to enter your name and print it .

CLS

Input 'Enter you name';n$

Print 'The name is';n$

End

2)Write a program to enter your name, city, country, age and print them.

CLS

Input " Enter the name ";N$

Input " Enter the city";C$

Input " Enter the country";CO$

Input " Enter the age";A

Print " The name is ";N$

Print " The city is ";C$

Print " The country is ";CO$

Print " The age is ";A

End  

Similar questions