Ask Question
24 February, 18:40

Given two variables, is_empty which is associated with a bool, indicating whether a class roster is empty or not, and number_of_credits which is associated with an int, containing the number of credits for a class, write an expression that evaluates to true if the class roster is not empty and the class is more than two credits.

+3
Answers (1)
  1. 24 February, 21:17
    0
    I guess the correct answer is:

    (is_empty==True) and (number_of_credits>2)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Given two variables, is_empty which is associated with a bool, indicating whether a class roster is empty or not, and number_of_credits ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers