Complete the code to return "High" if Sales is greater than 1000, otherwise "Low".
Result = IF(Sales > 1000, [1], "Low")
The IF function checks if Sales is greater than 1000. If true, it returns "High"; otherwise, it returns "Low".
Complete the code to return "Bonus" if Profit is greater than or equal to 500, otherwise "No Bonus".
BonusStatus = IF(Profit [1] 500, "Bonus", "No Bonus")
The condition checks if Profit is greater than or equal to 500 to decide the bonus status.
Fix the error in the code to correctly return "Pass" if Score is at least 60, otherwise "Fail".
Result = IF(Score [1] 60, "Pass", "Fail")
The correct operator to check if Score is at least 60 is '>='.
Fill both blanks to return "Good" if Rating is greater than 3, otherwise "Bad".
Feedback = IF(Rating [1] [2], "Good", "Bad")
The condition checks if Rating is greater than 3 to return "Good".
Fill all three blanks to return "Eligible" if Age is between 18 and 65 inclusive, otherwise "Not Eligible".
Eligibility = IF(Age [1] [2] && Age [3] 65, "Eligible", "Not Eligible")
The condition checks if Age is greater than or equal to 18 and less than or equal to 65.