Computer Science, asked by sakshinarware5216, 9 months ago

Write the qbasic statement to multiply two variable a and b and store the result in c. increase the value of a by 10 and store in a

Answers

Answered by Rajvaibhav87365
6

Answer:

CLS

A=3

PRINT "A=" ;A

B=4

C=A*B

PRINT "C=" ;C

A=A+10

PRINT "NOW A=" ;A

END

Explanation:

PROOF: is the following output and program

Plzplz mark as brainliest

Attachments:
Answered by SwethaHN
2

Answer:

REM program to multiple two numbers

CLS

INPUT "Enter the values of A" ; A

INPUT "Enter the values of B" ; B

C = A*B

PRINT " The product of A and B is" C

END

Similar questions