3 answers
1
1 answer
3
Anyone give a solution for this.....
1 answer
4
What will be the output of the following C program?#include<stdio.h int main() { char c = 'A'; int x=5, y=10, res1, res2; res1=c++ || x++ || y; res2 = ++x && c && ++y; p...
3 answers
5
What are $x$ and $y$ in the following macro definition?macro Add x, y Load y Mul x Store y end macroVariablesIdentifiersActual parametersFormal parameters
1 answer
6
0 answers
8
x = 7if b { x = 8}print(x)Convert the following code in Static single assignment form.
0 answers
9
Please explain primary and secondary clustering in brief. I tend to forget their difference because their definitions seem quite similar to me. And also, which one is tru...
0 answers
12
0 answers
13
$L=\{0^l1^{2l}0^{l+n}|l\geq{0},n\geq{0}\}$
0 answers
16
Consider a Weighted undirected graph connected with 'V' vertices and 'E' edges.What is the worst case time complexity to check if 2 particular vertices 'x' and 'y' are p...
1 answer
18
True/False :1)Several threads can share same physical address space.2)Several threads can share same virtual address space.
2 answers
21
Consider a complete bipartite graph with ‘m’ and ‘n’ vertices. If m = 4, n = 4, then the number of spanning trees of graph are ________.
0 answers
22
Consider the following grammar:$S\rightarrow aA|bB$$A\rightarrow aA|bB$$B\rightarrow bB|ϵ$Then the number of states in a minimal D.F.A of the above grammar is __________...