Lecture 0 and 1

 0    11 schede    kapi2304
Scarica mp3 Stampa Gioca Testa il tuo livello
 
Domanda język polski Risposta język polski
What are algorithms?
inizia ad imparare
Algorithms are some well-defined set of instructions, steps, or logic, written such that by following the steps, some specific task is accomplished.
The steps of algorithms design are:
inizia ad imparare
Obtain a description of the problem, Analyze the problem, Develop a high-level algorithm, Refine the algorithm by adding more detail, Review the algorithm
The major factor in speeding up your getting results is:
inizia ad imparare
The algorithm
Which is the most appropriate definition for recursion?
inizia ad imparare
A function that calls another execution instance of the same function.
Problems that can only be defined recursively can be solved using recursion.
inizia ad imparare
False
Which of the following statement is false?
inizia ad imparare
Every recursive function must have a return value.
Factorial function
inizia ad imparare
num * fact(num - 1)
Recursion is the process of describing an action in terms of itself.
inizia ad imparare
True
A recursive function may or may not have a recursive case.
inizia ad imparare
False
A factorial is the product of an integer and all the positive integers greater than it.
inizia ad imparare
False
Only problems that are recursively defined can be solved using recursion.
inizia ad imparare
False

Devi essere accedere per pubblicare un commento.