1 votes
1
Given f(n) = θ(n), g(n) = Ω(n), h(n) = O(n). Then f(n) + [g(n) ⋅ h(n)] = ?A.O(n)B. θ(n)C. Ω(n)D. None of theseAns is given CPlease explain how to solve such questio...
1 votes
2
which of the protocol is flow control but not error control?1)stop n wait2) go back n3)selective repeate4)simplest
1 votes
3
my answer 5 plz check but answer given 4
6 votes
5
Consider the following schedule:S:r1(a) r3(d) w1(B) r2(B) r4(B) w2(C) r5(C) w4(E) r5(E) w5(B)How many serial schedules conflict equal to schedules (S)?
0 votes
6
Please explain why first option is wrong
2 votes
9
1 votes
10
Assume while transmitting packets using GB5, every 4th packet is lost. Number of transmissions required to transmit 10 packets is ________
0 votes
12
Answer given on virtual gate is a1,a3,a2I'm getting a1,a3,a2,a1 as duplicate values are allowed in SQL. What is my mistake here ?
0 votes
13
What would be the asymptotic time complexity to add a node at the end of singly linked list, if the pointer is initially pointing to the head of the list?O(n)O(1)θ(n2)θ...
2 votes
14
1. How many super key is possible if (a,bc,cd) is candidate key and R(ABCDEF)#DOUBTWhen we use veen digram why we are taking only intersections part only ??? Need help pl...
0 votes
15
The following message is: GATE2018GAATTTEEEE22000011188What is the average length of bits required for encoding each letter using Huffman coding___?
1 votes
16
Is the below statement correct:Bellman Ford finds all negative weight cycles in the graph.This is true or false?
1 votes
17
Suppose we used a hash function H(n) to hash ‘n’ distinct elements (keys) into an array T of length ‘m’.What is the expected number of colliding pairs of elements...
1 votes
18
How L2 is NOT regular and L3 is regular??? please explain
0 votes
20
0 votes
21
How to get space complexity of binary search ..I am getting confusion in Space complexity = ip + extra (stack) And ip = nB ( why it is nB) ????? And extra = logn B So nB+...
0 votes
23
0 votes
24
I/p - Sorted array of n elementO/p- find any two elements a and b such that (a+b)>1000if lenear search is possible then go to Binary Search and Find time complexity ..?
0 votes
25
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? (A) (logn)?(B...
0 votes
29
Relation: R(ABCDE):FDs: A->BC, CD->E, B->D, E->AThis relation is not in BCNF bcz of FD B->D. So how it make BCNF by decomposition so that the resultant decomposition is b...
0 votes
30
Does out put of conditional join contains duplicates?I know that it gives distinct in natural join as the projection operator removes duplicate rows. But in conditional j...