Computer Science, asked by Tannufairyland, 1 month ago

write the output of the following program

CLS
A=13
B=12
PRINT A*B
END

O 25
O 156
O AB
O 13*12

WHICH IS THE CORRECT OPTIONS ​

Answers

Answered by allysia
1

Answer:

156

Explanation:

* operator performs multiplication on the operands.

  • Line 1 : Clears screen.
  • Line 2: assigns a value of 13 to A
  • Line 3: assigns a value of 12 to B
  • Line 4: prints the product if  A and B on screen.
  • Line 5: ends the program.

Similar questions