Answer:
is there a pic or something, sorry i cant help at the time being
Explanation:
Answer:
ok I've got the answer sheet on the picture I will attach
Explanation:
I had to crop to size on my computer and found them all
Answer:
D). Algorithm
Explanation:
The set of specific, sequential steps that describe exactly what a computer program must do to complete the work is called an algorithm.
From the question, it is clear the correct option is algorithm.
In simple terms, to solve a problem the set of rules to follow is called algorithm. Algorithm in computer programming describes the steps that explains not only the task that needs to be performed, but also how to do it.
In algorithm, the steps are needed to be in the right sequence.
Answer:
nest an else clause within an elif clause
Explanation:
in python Programming, we cannot nest an else clause within an elif clause. elif is actually else if condition. we cannot nest another else with in elif clause.