Answer:
serendipitous
Explanation:
this happened by chance in a positive manner.
Answer:
means-ends analysis
Explanation:
<h2><u>Fill in the blanks</u></h2>
The most frequently applied heuristic in problem solving is a <u>means-end analysis,</u> which involves repeated tests for differences between the desired outcome and what currently exists.
Answer:
Come up with a controversial topic, one that make your listeners think
Research the topic thoroughly that you have chosen
Understand the perspective of your audience. Keep your goal in mind. You are trying to persuade the audience to do or believe something .
The code segment makes use of conditional statements.
Conditional statements in programming are used to make decisions
The code segment in C++ is as follows
if (score > 90) {
grade = 'A';
}
else if (score >= 80 && score < =90) {
grade = 'B';
}
else {
grade = 'C';
}
The above code segments take the score, make comparison, and then determine the appropriate letter grade.
Read more about code segments at:
brainly.com/question/20475581
Answer:
try declarimg smt before the int eg answer=int(input("your answer"))