Recent questions without a selected answer

965
views
2 answers
1 votes
How to solve question of the following type without creating a tree for each given option. Which of the following order of elements are inserted into an empty AVL tree so that it ... 83,86,25,71,27C. 86,25,98,83,27,90,71,94D. None of these
303
views
0 answers
0 votes
https://gateoverflow.in/39592/gate2016-2-50HOW TO KNOW IN SUCH TYPE OF QUESTION THAT WE NEED TO APPLY HIERARCHICAL OR SIMULTANEOUS APPROACH .....VERY CONFUSING ???
741
views
1 answers
0 votes
Consider a network with hierarchical routing with 5760 routers. r region and c cluster sizes should be chosen to minimize the size of the routing table for a ... is the minimum size of table?Ans is given as 36.Please provide solution .
4.3k
views
0 answers
0 votes
Three packet-switching networks each contain n nodes. The first network has a star topology(see the Figures) with a central switch, the second is a (bidirectional ... . What are the best-, average-, andworst-case transmission paths in hops?
549
views
0 answers
1 votes
Will there be any stall in the code for instruction I1 and I2 as there exits WAW I-1 AddI R3,R1,R2;I-2 SW R3,0(R4);I-3 ... is does WAW cause stall if there is dependency between a load&store instruction to a arithmetic instructions.
2.1k
views
0 answers
0 votes
A sender is sending data to the receiver over a half-duplex link.Transmission time for data packets sent from sender to receiver is 80 μs. The propagation delay over the ... x 106 bits per second.A) 1800 BB) 225 BC) 250 bitsD) 2000 bits
676
views
2 answers
0 votes
A ____ can be used to prevent a user program from never returning control to the operating system.
1.3k
views
0 answers
0 votes
Ques. A disadvantage of a broadcast subnet is the capacity wasted when multiple hosts attempt to access thechannel at the same time. As a simplistic example, suppose that time is divided ... due to collisions?Ans. 1 - np(1-p)n-1 - (1-p)n.
778
views
1 answers
1 votes
Block size 1000B records are of size 100B of which 12B are the key field and pointer of size 8B. a file consist of 10000 records1.the number of blocks required ... this file?2.the number of blocks required for for a dense index on this file
119
views
0 answers
1 votes
186
views
0 answers
0 votes
i have a simple doubt is this solution correct as for data or length of frame 40Mb should mean 40 * 2^20
258
views
0 answers
0 votes
https://gateoverflow.in/82551/gate1987-11cIS IN SYLLABUS ?? WHAT IS THAT ALGO USED HERE??
595
views
0 answers
0 votes
Can anyone please explain how this calculation is done?A 1.3 GB disk with 512 byte blocks would need a bit map of over 332 KB to track its free blocks .
146
views
0 answers
0 votes
https://gateoverflow.in/82452/gate1987-10cHOW TO SOLVE IT??
255
views
1 answers
0 votes
1.1k
views
0 answers
1 votes
Are following part of gate syllabus for dbms?1-Validation Based protocols2-multiversion schemes3-snapshot isolation4-predicate reads(concurrency control)5-concurrency in index structures.
136
views
0 answers
0 votes
https://gateoverflow.in/81359/gate1987-4aI AM GETTING 27 BY TAKING 4 BRANCH BITS ..IS IT RIGHT??
324
views
0 answers
0 votes
1)How many injective function are there which are also bijective with n elements?2)How many injective function of n elements are there among which m elements ... function of n elements are there among which m elements are also surjective ?
231
views
0 answers
0 votes
https://gateoverflow.in/80586/gate1987-2fIS THERE NEED TO KNOW POOF ?IF YES THEN GIVE ANY EASY PROOF...
360
views
0 answers
0 votes
https://gateoverflow.in/80584/gate1987-2eIS IT ENOUGH TO KNOW THAT IS TRUE OR WE NEED TO KNOW WHY AND HOW IT IS TRUE??
6.6k
views
0 answers
0 votes
#include <stdio.h>void fun(int);typedef int (*pf) (int ,int );int proc(pf, int ,int);int main(){ int a = 3; fun(a); return 0; }void fun(int n){ if (n>0) { fun(--n); printf("%d,", n); fun(--n);}}
425
views
1 answers
1 votes
"Whenever ther is Internal fragmentation, there is always an external fragmentation "Is this statement TRUE ?
153
views
0 answers
0 votes
https://gateoverflow.in/80194/gate1987-1-vIN THIS QUESTION IF ANOTHER OPTION IS GIVEN LIKE BASE REGISTER ADDRESSING MODE THEN WHAT WILL BE THE ANSWER ... DIFFERENT ONE IS INTRA SEGMEnT TRANSFER OF CONTROL AND OTHER FOR INTER TRANSFER??
244
views
1 answers
0 votes
what are the attributes of all the minimum tables formed??
357
views
0 answers
0 votes
383
views
1 answers
0 votes
$\text{How we can represent a number like 234.4437 using 2's complement representation?}$\text{Or we are supposed to represent it using floating point representation? Please explain }$
389
views
0 answers
1 votes
How do I set deadlines and plan for gate 2019 as I am behind the schedule given by Arjun sir in go classroom ( I have completed discrete maths till now)?
1.2k
views
2 answers
1 votes
Is the statement true or false?With a MLFQ scheduler, high priority jobs have longer time slices than low priority jobs.
2.0k
views
2 answers
2 votes
A language in NOT - RE is un-countably infinite. true or false?
1.1k
views
1 answers
2 votes
Will the topological order for acyclic graph through indegree Elimination method and DFS method be same.Please answer the above question ?