Activity 1.13.1.
(!isPeerReviewed && hIndex <= 3) || citation <= 50
(!isPeerReviewed || hIndex <= 3) && citation <= 50
- Correct! When applying negation, || will become && and vice versa. Also < will become >= and > will become <=.
(!isPeerReviewed || hIndex > 3) && citation > 50
- Read the feedback explanation for option 2.
What is the negation of the following expression?
(isPeerReviewed && hIndex > 3) || citation > 50
Select all that apply.