This should be anwsered in something you read or a video you watched prior to the question being asked. try checking multiple sources.
Answer:
Develop and maintain a personal code of ethics
Explanation:
It seems that Katniss does not have a personal code of ethics. A person needs to have personal code of ethics in general. The personal code of ethics should be applicable to any situation whether it be work related of personal life related.
If Katniss would have her own personal code of ethics then she would not have to depend on others and deal with the situation.
Hence, I would suggest Katniss to develop and maintain a personal code of ethics.
Answer:
Energy is the capacity of a physical system to perform work. Energy exists in several forms such as heat , kinetic or mechanical energy, light, potential energy , electrical, or other forms.
Explanation:
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