Saved Bookmarks
| 1. |
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 |
|
Answer» 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 |
|