228k views
5 votes
This operator represents the logical AND.

A.
++

B.
| |

C.
&&

D.
@

User Jan Marvin
by
7.3k points

1 Answer

6 votes

Answer:

C. &&

Step-by-step explanation:

Of the options provided:

A) ++ : increment operator. For example : ++1 = 2

B) || : Logical OR operator. A || B is true if any one of A or B is true.

C) && : Logical AND operator. A && B is true if both A and B are true.

A B A && B

False False False

False True False

True False False

True True True

D) @ : Ampersand character (commonly used in email addresses) e.g, [email protected]

User Luke Sweeney
by
6.8k points