depends on the situation but I would write N/A
Answer:
Physiological
Explanation:
She is satisfying her kids' physiological needs
Answer:
Was Sean totally miserable in his marriage?
Explanation:
With the help of prediction whether Sean will be better after divorce with his wife. In this case, we can ask Sean that will he feel better after divorcing his wife? or was he unhappy at the time of marriage? as it is the most important question for Sean to decide because it the matter of his future.
According to the given situation, the right question which is needed to be asked from Sean
"Was Sean totally miserable in his marriage?"
Answer:
if-else
Explanation:
Based on the information provided within the question it can be said that the best statement to use in this situation is an if-else statement. Like mentioned, this is a statement that outputs two different results depending on whether or not the input meets a predefined set of rules.
For Example: Input is 17
if (hour < 18) {
greeting = "Good day";
} else {
greeting = "Good evening";
}
Output would be "Good evening" in this situation