Computer Science, asked by sumitra46877, 2 months ago

What will the given command do?
LET C=A+B​

Answers

Answered by sakshikeshriclass925
3

Answer:

it will give the sum of A+B

Answered by dreamrob
3

Answer:

LET : It assigns a value to a variable in a program. It stores value in the memory location.

LET A = 15     Assigning constant to a variable

LET A = B     Assigning variable to a variable

LET C = A + B     Assigning an expression to a variable

So, in expression C = A + B, the numerical variable C will be assigned with the value of A + B.

Similar questions