6 answers
7
The set of all recursively enumerable languages is:closed under complementationclosed under intersectiona subset of the set of all recursive languagesan uncountable set
6 answers
11
Let $L$ be a context-free language and $M$ a regular language. Then the language $L ∩ M$ isalways regularnever regularalways a deterministic context-free languagealways...
8 answers
13
3 answers
17
DFA for Every 'a' followed by 'b'. The second one is correct but I want to know if the first one is correct or not? If not please share an example.
5 answers
18
No. of states in the minimal finite automata which accepts the binary strings whose equivalent is divisible by 32 is ________?A. 5B. 6C 31D 32
2 answers
19
The application of finite automata include:-a)Lexical Analyzerb)Text Editorc)Operating Systemd)All of the above
4 answers
21
In the slow start phase of the TCP congestion algorithm, the size of the congestion window:does not increaseincrease linearlyincreases quadraticallyincreases exponentiall...
2 answers
26
1 answer
27
Find no of tokens in below program.#include<stdio.h>main(){ int I; int *pi = &I; //parent pointer scanf("%d",pi); printf("%d\n", I+5);}
1 answer
29
Consider the following code$x = (y + 5) + (^*z) * 10 - x /3 $Which of the following correctly identified by lexical analysis after scanning the above code?5 Identifiers...
5 answers
30
What it the number of tokens in the following line?printf("%d numbers.", &x);