8.2k views
1 vote
He equals sign “=” is used as

a) Is the “assignment” operator and computes the right side, takes that value and stores it in the variable on the left side

b) A “test” operator to test to see if the value on the left side equal the value on the right side and returns true if they are equal

c) Is used as a test operator in the if statement and the assignment operator in a simple expression

User Daywon
by
5.9k points

1 Answer

4 votes

Answer:

(A). Is the “assignment” operator and computes the right side, takes that value and stores it in the variable on the left side.

Step-by-step explanation:

The "="(equal) sign is used as an assignment operator that is it evaluates the value on the right side of the operator and stores or assigns that value to the variable on left side of the operator."=" operator not to be confused with "==" equal to operator it checks the value on the right is equal to the value on the left.if it is returns true else returns false.

User Alveoli
by
6.0k points