7 votes
2
Consider the below function$f=\sum m(0,1,2,5,8,15)+d(6,7,10)$In this Prime Implicant count comes-7 and Essential Prime Implicant Count comes 2.Please verify.
6 votes
3
Consider 'A is a set containing n elements. A subset 'P' of 'A' is chosen at random The set 'A' is reconstructed by replacing the elements of 'A'. A subset 'Q' of 'A' is ...
8 votes
5
What is the time complexity?int i,j,k,x=0;for(i=1;i<=n;i++)for(j=1;j<=i*i;j++){if (j mod i ==0)for(k=1;k<=j;k++)x=x+10;}
1 votes
6
I had a slight doubt as regards with Minterm. How the output is 1 in the truth table values of the minterms?Please explain in detail.
2 votes
8
let say there are three elements in a set {1,2,3}.find total #of 4 digit no. which are neither non decreasing nor non increasing.
1 votes
12
How many relation possible with $n$ elements of a set which are symmetric but not antisymmetric ?
9 votes
13
1)$L_{1}=\left \{ a^{2^{n}} \right \}$ where n is a positive integer.Is it Reguler, CFL or CSL?2)$L_{2}=\left \{ (a^{n})^{m}.b^{n}|n,m\geq 1 \right \}$ Is it Regular CFL ...
4 votes
14
0 votes
17
it is confirmed that every LL(1) is LR(1) i.e CLR(1),but i want to know that is every LL(1) grammar is also LALR????? becz LALR is subset of CLR(1).
3 votes
18
7 votes
19
How to distinguish between countably finite , countably infinite , uncountably infinite set?for reference see this ques:https://gateoverflow.in/36654/why-set-of-all-funct...
4 votes
20
There are 12 pair of shoes, what is the probability that atleast one complete pair of shoes are present if 4 shoes are selected at random?
4 votes
24
Why????
2 votes
25
L={a^n b^n :n>=1} and R = (a+b)^* L union R is going to be regular or not regular plzz give reason L is not regular if N leads to infinity then how it can be regular .......
1 votes
26
main(){if(fork()>0)sleep(100);}The given code results in the creation of:I) an orphan processII) a zombie processIII) a process that executes foreverIV) None of these Ca...
8 votes
27
1) Kruskal Algorithm2) Prims Algorithm3) Dijkstra Algorithm4) Bellman Ford Algorithm5) Floyd Warshall AlgorithmAmong these which one works for onlyi) Positive edge weight...
6 votes
29