Computer Science Engineering (CSE) Exam  >  Computer Science Engineering (CSE) Tests  >  GATE Computer Science Engineering(CSE) 2025 Mock Test Series  >  Test: Time Complexity- 2 - Computer Science Engineering (CSE) MCQ

Test: Time Complexity- 2 - Computer Science Engineering (CSE) MCQ


Test Description

15 Questions MCQ Test GATE Computer Science Engineering(CSE) 2025 Mock Test Series - Test: Time Complexity- 2

Test: Time Complexity- 2 for Computer Science Engineering (CSE) 2024 is part of GATE Computer Science Engineering(CSE) 2025 Mock Test Series preparation. The Test: Time Complexity- 2 questions and answers have been prepared according to the Computer Science Engineering (CSE) exam syllabus.The Test: Time Complexity- 2 MCQs are made for Computer Science Engineering (CSE) 2024 Exam. Find important definitions, questions, notes, meanings, examples, exercises, MCQs and online tests for Test: Time Complexity- 2 below.
Solutions of Test: Time Complexity- 2 questions in English are available as part of our GATE Computer Science Engineering(CSE) 2025 Mock Test Series for Computer Science Engineering (CSE) & Test: Time Complexity- 2 solutions in Hindi for GATE Computer Science Engineering(CSE) 2025 Mock Test Series course. Download more important topics, notes, lectures and mock test series for Computer Science Engineering (CSE) Exam by signing up for free. Attempt Test: Time Complexity- 2 | 15 questions in 45 minutes | Mock test for Computer Science Engineering (CSE) preparation | Free important questions MCQ to study GATE Computer Science Engineering(CSE) 2025 Mock Test Series for Computer Science Engineering (CSE) Exam | Download free PDF with solutions
Test: Time Complexity- 2 - Question 1

Consider the following segment of C-code:

int j, n;

j = 1;

while (j <= n)    

j = j * 2;

Detailed Solution for Test: Time Complexity- 2 - Question 1

may be we have to count those comparisons which results in the execution of loop.

Answer should be Ceil(log2n) + 1
EDIT: but answer could be: floor(log2n) + 2

Test: Time Complexity- 2 - Question 2

In the following C function, let n ≥ m

int gcd(n,m) {

if (n%m == 0) return m;    

n = n%m;

return gcd(m,n);
}

How many recursive calls are made by this function?

Detailed Solution for Test: Time Complexity- 2 - Question 2

Worst case will arise when both n and m are consecutive Fibonacci numbers.

and nth Fibonacci number is 1.618n  where 1.618 is the Golden ratio. 

So, to find gcd(n,m), number of recursive calls will be θ(logn)

1 Crore+ students have signed up on EduRev. Have you? Download the App
Test: Time Complexity- 2 - Question 3

Consider the following C program segment:

Let T(n) denote number of times the for loop is executed by the program on input . Which of the following is TRUE?

Detailed Solution for Test: Time Complexity- 2 - Question 3

Worst Case : 

Best Case : When n is an even number body of for loop is executed only 1 time (due to "return 0" inside if) which is  irrespective of 

Test: Time Complexity- 2 - Question 4

Exponentiation is a heavily used operation in public key cryptography. Which of the following options is the tightest upper bound on the number of multiplications required to compute 

Detailed Solution for Test: Time Complexity- 2 - Question 4

We need to divide
n recursively and compute like following:

  In this, we need to calculate bn/2 only once.

.

.

Recurrence relation: 

 

Test: Time Complexity- 2 - Question 5

Let P1,P2,..... Pn points in the xy-plane such that no three of them are collinear. For every pair of points Pi and Pj, Let Lij be the line passing through them. Let Lab  be the line with the steepest gradient among all n(n-1)/2 lines. The time complexity of the best algorithm for finding  Pa and Pb is

Detailed Solution for Test: Time Complexity- 2 - Question 5

Gradient = y2-y1/x2-x1

For gradient to be maximum x2-x1 should be minimum. So, sort the points (in θ(nlogn) time) according to x coordinate and find the minimum difference between them (in θ(n) time).

Best complexity: θ(nlogn + n) which leads to B.

Test: Time Complexity- 2 - Question 6

The minimum number of comparisons required to determine if an integer appears more than n/2 times in a sorted array of n integers is

Detailed Solution for Test: Time Complexity- 2 - Question 6

whenever there exists an element which is present in the array : more than n/2 times, then definitely it will be present at the middle index position; in addition to that it will also be present at anyone of the neighbourhood indices namely i - 1 and i + 1 

No matter how we push that stream of More than n/2 times of elements of same value around the Sorted Array, it is bound to be present at the middle index + atleast anyone of its neighbourhood once we got the element which should have occurred more that n/2 times.we count its total occurrences in O(logn) time. 

To check whether a given number is repeated n/2 times in the array can be done in O(log n) time.

Algo

1. find the first occurrence (index i) of x(given number) in the array which can be done in O(log n) time (a variant of binary search).

2. check if A[i] == A[n/2+i]

return true
3. else return false

Test: Time Complexity- 2 - Question 7

Consider the following pseudo code. What is the total number of multiplications to be performed?

D = 2
for i = 1 to n do

for j = i to n do

for k = j + 1 to n do            

D = D * 3

Detailed Solution for Test: Time Complexity- 2 - Question 7

Total number of multiplications

Test: Time Complexity- 2 - Question 8

An algorithm performs   (log N)1/2   find operations , N insert operations, (log N)1/2 delete operations, and (log N)1/2 decreasekey operations on a set of data items with keys drawn from a linearly ordered set . For a delete operation, a pointer is provided to the record that must be deleted . For the decrease-key operation, a pointer is provided to the record that has its key decreased. Which one of the following data structures is the most suited for the algorithm to use, if the goal is to achieve the best total asymptotic complexity considering all the operations?

Detailed Solution for Test: Time Complexity- 2 - Question 8

The operations given can be performed in any order. So, for Min-heap we cannot do the usual BuildHeap method.

Delete in unsorted array is O(1) as we can just swap the deleted element with the last element in the array and delete the last element.

For sorted-doubly linked-list we cannot do binary search as this would require another array to maintain the pointers to the
nodes.

Test: Time Complexity- 2 - Question 9

Two main measures for the efficiency of an algorithm are

Test: Time Complexity- 2 - Question 10

Match the algorithms with their time complexities:

Detailed Solution for Test: Time Complexity- 2 - Question 10

According to the recurrrence relation

T(n) = 2 T( n-1 ) +1

Tower of hanoi we get it is Ɵ(2n)
now heap sort worst case Ɵ(n log n)

Binary Search given n numbers n sorted numbers Ɵ(log n)
Addition of two nxn matrices Ɵ (n2)
so C is correct answer here

Test: Time Complexity- 2 - Question 11

Consider the following C function

int fun(int n) {

int I, j;

for(i=1; i<=n; i++) {

for (j=1; j<n; j+=i) {            

printf(“%d %d”, I, j);

}
}
}

Time complexity of fun in terms of θ notation is

Detailed Solution for Test: Time Complexity- 2 - Question 11

inner for loop is dependent on i, so for each i we have to check no of times inner loop operating..

it ll be something like

Test: Time Complexity- 2 - Question 12

It takes O(n) time to find the median in a list of n elements, which are not necessarily in sorted order while it takes only  O(1) time to find the median in a list of n sorted elements. How much time does it take to find the median of 2n elements. which are given as two lists of  sorted elements each?

Detailed Solution for Test: Time Complexity- 2 - Question 12

1) Calculate the medians m1 and m2 of the input arrays ar1[]
and ar2[] respectively.
2) If m1 and m2 both are equal.
return m1 (or m2)
3) If m1 is greater than m2, then median is present in one
of the below two subarrays.
a) From first element of ar1 to m1 (ar1[0 to n/2])
b) From m2 to last element of ar2 (ar2[n/2 to n-1])
4) If m2 is greater than m1, then median is present in one
of the below two subarrays.
a) From m1 to last element of ar1 (ar1[n/2 to n-1])
b) From first element of ar2 to m2 (ar2[0 to n/2])
5) Repeat the above process until size of both the subarrays
becomes 2.

6) If size of the two arrays is 2 then
the median.
Median = (max(ar1[0], ar2[0]) + min(ar1[1], ar2[1]))/2
Time complexity O(logn)

Test: Time Complexity- 2 - Question 13

Which of the following statements is TRUE for all sufficiently large n?

Detailed Solution for Test: Time Complexity- 2 - Question 13

Let us take log for each function.

Here, If we consider logn as a term (which is common in all 3), first 1 is a log function, second one is sqrt function and third one is linear function of logn . Order of growth of these functions are well known and log is the slowest growing followed by sqrt and then linear. So, option A is the correct answer here. 

PS: After taking log is we arrive at functions distinguished by some constant terms only, then we can not conclude the order of grpwth of the original functions using the log function. Examples are 

Test: Time Complexity- 2 - Question 14

Consider the following code fragment in the C programming language when run on a non-negative integer n.

int f (int n)

{
if (n==0 || n==1)

return 1;

else

return f (n - 1) + f(n - 2);
}

Assuming a typical implementation of the language, what is the running time of this algorithm and how does it compare to the optimal running time for this problem?

Detailed Solution for Test: Time Complexity- 2 - Question 14

it is fibanacci series generation. it takes exponential time if we won't use dynamic programming.
if we use dynamic programming then it takes O(n)

Test: Time Complexity- 2 - Question 15

Two alternative packages A and B are available for processing a database having 10k records. Package A requires  0.0001n2 time units and package  B requires  10nlog10ntime units to process n records. What is the smallest value of k for which package B will be preferred over A?

Detailed Solution for Test: Time Complexity- 2 - Question 15

Trying the values, 5 doesn't satisfy this but 6 satisfies.

55 docs|215 tests
Information about Test: Time Complexity- 2 Page
In this test you can find the Exam questions for Test: Time Complexity- 2 solved & explained in the simplest way possible. Besides giving Questions and answers for Test: Time Complexity- 2, EduRev gives you an ample number of Online tests for practice

Top Courses for Computer Science Engineering (CSE)

Download as PDF

Top Courses for Computer Science Engineering (CSE)