0 answers
1
What is a biconnected componenet?Does it always include V-V’ where V’ represent the set of articulation points of a graph G?
1 answer
3
What is the correct sequence of the functions -Scheduling, dispatching, and context switching.
1 answer
5
I Have doubt about the language. Is it asking about the sum of elements if we make the GBL set for the given lattice .
4 answers
8
main() { if(fork()>=0) { printf("*"); if(fork()==0) { printf("*"); } else{ //do nothing } printf("*"); }How many number of times “*” will be printed?
0 answers
9
I have just started reading "Data communication and networking by Forouzan", I can't understand which chapters and sub-chapters are important.Please help.
4 answers
11
Which one of the following kinds of derivation is used by LR parsers?LeftmostLeftmost in reverseRightmostRightmost in reverse
1 answer
15
0 answers
16
1 answer
21
What is the minimum number of 2 input NOR gates required to realise:F(A,B,C) = (A'+B')(B'+C')(C'+A')Case 1- Compliments of A,B,C are not availableCase 2- Compliments of A...
0 answers
25
Which phase of the compiler detects the error?#include<stdio.h>int main(){printf(“%d”,2..3);return 0;}I think lexical analyzer am i correct?
2 answers
26
b = b + cd = b + db = b – de = d + bThe minimum number of nodes and edges present in the DAG representation of above basic block respectively are ?4 and 55 and 46 and 6...
0 answers
27
0 answers
28
1 answer
29
In a directed graph, a path is called special if every sub-path of the path is shortest path. Sub-path of a path P means every path in the path P, except P.A. Every short...
0 answers
30