AND or Operators - R AND or Operators Flashcards

1
Q

AND & - The & symbol (and) is a logical operator, and is used to combine conditional statements:

A

a <- 200 b <- 33 c <- 500
if (a > b & c > a) {print(“both conditions are true”)}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

OR I - The | symbol (or) is a logical operator, and is used to combine conditional statements:

A

a <- 200 b <- 33 c <- 500
if (a > b | a > c) {print(“At least one of the conditions is true”)}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly