Pregunta 1
Pregunta
How many times is the following cout statement executed within this loop?
int counter = 0;
for(int k=0; k<5; k++)
{
cout << "counter: " << counter << endl;
}
Pregunta 2
Pregunta
What is the big O for printing in a linked list.
Pregunta 3
Pregunta
How long does it take to excute for n items in for loop?
Pregunta 4
Pregunta
Program execution times are susceptible to the hardware, tricks , data, etc.
Pregunta 5
Pregunta
for ( int i = 0; i < 4; i++)
for( int x = 0; x <3 ; x++)
cout << "hi"<< endl;
how many times will the cout statement execute?
Pregunta 6
Pregunta
How many times would the cout operation be done in this loop?
for(int i = 0; i < n; i++){
for(int j = 0; j < n; j++){
for(int k = 0; k < 5; k++){
cout << "o hai.";
Respuesta
-
5*n*n times
-
none of the above
Pregunta 7
Pregunta
How many time is the cout statement executed in the following for loop?
int counter = 0;
for( int k = 0; k < 5; k++){
cout << "counter: " << counter << endl;
}
Pregunta 8
Pregunta
When measuring algorithm efficiency, the program is susceptible to ____
Respuesta
-
a. hardware
-
b. data
-
c. tricks
-
d. all of the above
-
e. none of the above
-
f. a,b,c, and more
Pregunta 9
Pregunta
When you are calculating the number of loops that a nested for loop runs through, you should:
Pregunta 10
Pregunta
How do you measure the efficiency of algorithms?
Respuesta
-
A) you can't, not enough information
-
B) Focus on algorithm, not program
-
C) none
Pregunta 11
Pregunta
What is algorithm analysis measuring?
Respuesta
-
A. the efficiency of algorithms
-
B. the number of lines of code
-
C. how often the program will enter an infinite loop
-
D. how much memory leakage there is
Pregunta 12
Pregunta
How many steps does the following take to execute if there's n items in a list?
Node* curr = m_head; // 1 assignment
while( curr !=NULL)
{ //n + 1 comparisons
cout << curr->next; // n calls to operator<<
curr = curr->next; // n assignments
}
Total: (n + 1) * assignment_time = (n + 1) * comparison_time + n write_time
Respuesta
-
A. 6 steps
-
B. 5 steps
-
C. 4 steps
-
D. 3 steps
Pregunta 13
Pregunta
What is the big O for this segment of code:
long factorial(int n){
if(n <= 1)
return 1;
else
return n * factorial(n - 1);
}
Pregunta 14
Pregunta
Program execution times are susceptible to hardware, tricks, data.
Pregunta 15
Pregunta
How many itterations would a quadruply-nested for loop with base itterations 7 and all others itterating at n itterate?