1 answer
2
The minimum number of colours required to colour the following graph, such that no two adjacent vertices are assigned the same color, is
0 answers
3
IN THE VIA HEAP LIST WHY IT IS O(LOGN) FOR SEARCHING??
4 answers
6
2 answers
7
3 answers
8
HOW TO SOLVE THOSE TYPE OF QUESTION?
2 answers
9
Is in conservative 2pl we release the locks after it commit $\mathbf{or}$locks can be released at any point of time and need not after commit operation ?Please Explain wi...
2 answers
10
In the switch statement, if we write default case above all then will it be executed?a = 2;switch(a){default : print("abc");case 2 : print("xyz");}what will be the o/p ?
1 answer
11
https://gateoverflow.in/1036/gate2004-39WHAT IS DIFFERENCE BETWEEN TYM COMPLEXITY AND PROGRAM EXECUTION TIME??
0 answers
12
1 answer
13
Are NULL productions in the form of S->ɛ allowed in CFG and regular grammar?
1 answer
14
3 answers
15
wxw ;w,x belongs to {a,b}*this regular or dcfl or cfl??? somewhere it is written as regular but dontknow why??
1 answer
18
2 answers
19
Can we take image as an input in linked list using c programming?If 'yes' then how to implement that?
1 answer
22
Decompose the following table into BCNF:$R(ABCD)$$A \rightarrow C$$C \rightarrow A$$AB \rightarrow D$The result is:(AC) (ABD)(AC) (CBD)(AB)(BAD)Both (A) & (B)
0 answers
25
Generate TAC for: int c; int p ; int n int i =1; n=100; c=i; p=n; while(c<p) { for(i=2;i=n;i++) { c=c+p; p=c-p; } }b) Also Construct basic block for above TAC and perform...
2 answers
27
#include <stdio.h>void reverse(int i);int main(){reverse(1);}void reverse(int i){if (i 5)return ;printf("%d ", i);return reverse((i++, i));}I am not able to understand h...
1 answer
28