IT 206: Design and Analysis of Algorithms
IT 206: Design and Analysis of Algorithms
1. Given an array of n elements, write an algorithm to find a number that has a duplicate.
2. Given the numbers 5, 2, 3, 1, 4, 9, write an algorithm that selects all even numbers in the list and sort them in order.
3. What is the main difference between a “while” loop and a “do... while” loop?
4. The syntax of a “for” loop is:
for (init; condition; increment)
{
statement(s);
}
Write a “for” loop using these four lines above to write the letter “a” 8 times.
5. Given the following declaration:
int Prime[ ] = {1, 3, 5, 7, 11, 13};
Write the value for Prime[4]: _________
What does Prime[ ] represent? ________________
Answer questions 6-7 based on the following program function:
int factorial(int n)
{
if (n==0)
return 1;
else
return (n * factorial(n-1));
}
6. What value is returned from the function above if you run the following line in the main program?
factorial(0);
7. Explain what will happen in line 6 (the last return line).
5 years ago
10
Purchase the answer to view it

- sdjndjks1.pdf
- DesignAndAnalysisOfAlgorithmskinjalr101.docx
- FIN/370
- Four Discussions /One Page and references for each discussion
- Assignment 2: Research Proposal Draft
- Help with Grad Level Business Management Writing Assignment
- Unethical Treatment of research
- Ethical Decision Making
- ceteris comments 5
- McBride Company has the following opening account balances in its general and subsidiary ledgers on January 1 and uses the periodic inventory system. All accounts have normal debit and credit balances.
- Write a three to four page paper (not including the title and reference pages) about a contemporary leadership situation that is familiar to you. Your paper needs to: Carefully review the Grading Rubric for the criteria that will be used to evaluate your
- HU345 A9