0 votes
1
a) I onlyb) II onlyc) I and II onlyd) all these are true
0 votes
2
0 votes
3
Write C Program using Recursive Funtions for the Problem Described below and Analyse the Complexity Of the CodeProblemGiven an unordered array arr[] which contains n di...
0 votes
6
A page fault?
0 votes
7
What will be the output of the program?#include<stdio.h>int main(){ char c=48; int i, mask=01; for(i=1; i<=5; i++) { printf("%c", c|mask); mask ...
0 votes
9
#include<stdio.h int main() { int a = 5; switch(a) { default: a = 4; case 6: a ; case 5: a = a+1; case 1: a = a-1; } printf("%d \n",a); return 0; }(a) 5 (b) 4 (c) 3 (d) N...
1 votes
10
To add a background color for all <h1 elements, which of the following HTML syntax is usedh1 { background-color :#FFFFFF}{ background-color :#FFFFFF} . h1h1 { background-...
0 votes
12
can we further minimize it.
2 votes
13
$L = \left \{ a^nb^n \ ; n\geq 0 \ , n \neq 20 \right \}$ is(a) a DCFL(b) a recursive set but not CFL(c) a CFL but not DCFL(d) not a CFL
1 votes
14
a*b*b (a+ (ab)*)* b*shortest string generated by this RE?
0 votes
15
How many number of DFA's are possible with 2 states X and Y for input alphabet {0,1}?
0 votes
23
Draw an FA accepting the language of all strings that begin or end with aa or bb, where indicated language is over {a, b} .
–1 votes
24
–1 votes
25
int main(){ int i=5,j; j=++i + ++i + ++i; printf("%d %d",i,j); return 0; } https://gateoverflow.in/?qa=blob&qa_blobid=15560219953750733487please explain how j = 22 comes ...
0 votes
26
0 votes
27
1 votes
28
0 votes
29
A device which converts BCD to Seven Segment is called(A) Encoder(B) Decoder(C) Multiplexer(D) Demultiplexer