1. (TCO 4) Which of the following functions has a constant growth rate? (Points : 3)
n
n2
n
log n
1
2. (TCO 4) Algorithms can be described using _____. (Points : 3)
pseudocode
assignment and arithmetic operations
loops and decision statements
All of the above
3. (TCO 4) The running time of an algorithm is _____. (Points : 3)
the time, in milliseconds, it takes to complete its execution
the running time of its implementation
the maximum number of basic operations executed by the algorithm (over all inputs of size N)
the number of steps given in its description
4. (TCO 4) The running time of an algorithm to find the maximum of a collection of n
numbers stored in an array is _____. (Points : 3)
O(n2)
O(n
log n)
O(n)
O(1)
5. (TCO 5) Consider the recursive function below.
int RecFunction(int n)
{
if (n==0) return 0;
else return RecFunction(n-1) + n;
}
Which does this code do? (Points : 3)
Returns n
+ (n – 1)
Returns the sum of numbers 0 to n
Returns the factorial of a number n
Returns the nth Fibonacci number
6. (TCO 5) Consider the function below.
long x(int n)
{
if (n == 1) return 1;
else return n*x(n-1);
}
Which will be displayed by the following cout statement?
cout << x(5) << endl; (Points : 3) 120 25 6 1 7. (TCO 5) In the worst case, bubble sort uses _____ steps. (Points : 3) O(1) O(n2) O(n log n) O(2n) 8. (TCO 5) A method that performs very well in practice, even though its worst-case running time is quadratic, is _____. (Points : 3) bubble sort insertion sort mergesort quicksort
* You can also use 2CO option if you want to purchase through Credit Cards/Paypal but make sure you put the correct billing information otherwise you wont be able to receive any download link.
* Your paypal has to be pre-loaded in order to complete the purchase or otherwise please discuss it with us at support@iqrajavaid.com.
* As soon as the payment is received, download link of the solution will automatically be sent to the address used in selected payment method.
* Please check your junk mails as the download link email might go there and please be patient for the download link email. Sometimes, due to server congestion, you may receive download link with a delay.
* All the contents are compressed in one zip folder.
* In case if you get stuck at any point during the payment process, please immediately contact us at support@iqrajavaid.com and we will fix it with you.
* We try our best to reach back to you on immediate basis. However, please wait for atleast 8 hours for a response from our side. Afterall, we are humans.
* Comments/Feedbacks are truely welcomed and there might be some incentives for you for the next lab/quiz/assignment.
* In case of any query, please donot hesitate to contact us at support@iqrajavaid.com.
* MOST IMPORTANT Please use the tutorials as a guide and they need NOT to be used for any submission. Just take help from the material.
******************************************** Good Luck ***************************************************
Any personal information received will only be used to fill your order. We will not sell or redistribute your information to anyone.
We will try our best to resolve the issue and if still persists we can discuss for a refund in case its required.