Computer Science, asked by kamranhassan511, 9 months ago

Multiple
1. Which symbol shows up in output window of QBasic to indicate that it expects input
(b)\\
(a) !​

Answers

Answered by anusingh1034
12

Answer:

(A) is the right answer

Answered by BrainlyYoda
18

Question:

Which symbol shows upon output window of QBasic to indicate that it expects input?

(a) !

(b) //

(c) ?

(d) >​

Answer:

(d) >​ is the correct answer.

Extra Information:

QBasic =>

It is a structured programming language developed by Microsoft in the year 1991.

Program in QBASIC:

REM "Program to input two numbers and find their Sum, Subtraction, Multiplication and Average"

CLS

PRINT  "Enter first number"

INPUT  NUMBER1

PRINT  "Enter second number"

INPUT  NUMBER2

SUM = NUMBER1 + NUMBER2

SUBTRACTION = NUMBER1 - NUMBER2

MULTIPLICATION = NUMBER1 * NUMBER2

AVERAGE = (NUMBER1 + NUMBER2) / 2

PRINT "The sum is:", SUM

PRINT "The subtraction is:", SUBTRACTION

PRINT "The multiplication is:", MULTIPLICATION

PRINT "The average is:", AVERAGE

END

REM is used for adding remarks you can remove that while running QBasic Program.

CLS is used to clear the output screen if it is already clear avoid it's usage.

Similar questions