Recent activity by pranjalgennext

0 answers
1
Which companies visited IIT Kanpur for placements this academic year?
0 answers
5
6 answers
8
1 answer
9
.....
0 answers
10
The number of view equal serial schedules possible for the given schedule are:S: w1(A) r2(A) w3(A) r4(A) w5(A) r6(A) w7(A) r8(A)
1 answer
12
Consider the following C program segment:struct nodeWhat is the output of above C program when it runs on a root node of a binary tree?prints nodes at K distance from roo...
0 answers
14
A priority queue is used to implement a stack efficiently. Push(C) is implemented as insert 'C'. Pop is implemented as a delete minimum element. For a sequence of operati...
0 answers
16
0 answers
17
GATE exam is online, so people are not allowed to take their question papers. So how do people calculate their marks? Does a copy of exam paper is mailed to the candidate...
0 answers
18
1 answer
20
Assume a B-plus tree as:Size of search key=15BSize of block=512BSize of record pointer=9BSize of block pointer=8BWhat is the maximum number of nodes that can be accomodat...
1 answer
23
#include <stdio.h void A() { printf("A");}; void B() { printf("B");}; void C() { printf("C");}; void D() { printf("D");}; int main() { void (*P[4])() = {A,B,C,D}; for(int...
2 answers
24
What is the maximum number of records that can be indexed for a B+ tree of 4 levels with order 10 and root at level 1?
1 answer
25
What is the maximum number of nodes if a B+ tree has order 4 and number of levels as 6?
1 answer
26
What is the difference between different types of indices:1. Clustered Index2. Unclustered Index3. Dense Index4. Sparse Index