Login
Register
Dark Mode
Brightness
Ambient Glow – Questions list
Register
Profile
Edit Profile
Messages
My favorites
My Updates
Logout
Recent questions tagged goclasses-cs-dpp-day-314
4
4 votes
3
3 answers
236
236 views
GO Classes DPP | GATE CS | Theory of Computation | Initial State
Which state in the following DFA should be made the initial state to make it accept the language $L = \{w \in \{0,1\}^* \mid w$ has even number of $1$s and odd number of ...
GO Classes
236
views
asked
Jul 4
Theory of Computation
goclasses
goclasses-cs-dpp
theory-of-computation
goclasses-cs-dpp-day-314
goclasses-toc-practice-questions
finite-automata
+
–
4
4 votes
3
3 answers
218
218 views
GO Classes DPP | GATE CS | Theory of Computation | DFA Language
Which of the following is the correct description of language recognized by the DFA below?Binary strings not divisible by $4$ Binary strings divisible by $4$ Binary strin...
GO Classes
218
views
asked
Jul 4
Theory of Computation
goclasses
goclasses-cs-dpp
theory-of-computation
goclasses-cs-dpp-day-314
goclasses-toc-practice-questions
finite-automata
+
–
3
3 votes
3
3 answers
203
203 views
GO Classes DPP | GATE CS | Theory of Computation | Dead State
The node $q_2$ is best defined as $\dots$ $\dots$Final state Dead state Both final and dead state Neither final nor dead state
GO Classes
203
views
asked
Jul 4
Theory of Computation
goclasses
goclasses-cs-dpp
theory-of-computation
goclasses-cs-dpp-day-314
goclasses-toc-practice-questions
finite-automata
+
–
5
5 votes
4
4 answers
222
222 views
GO Classes DPP | GATE CS | Theory of Computation | Final State
Which of the following states would be notated as the final state/acceptance state for $L = \{x \in \Sigma^* : \text{length of } x \text{ is } 2\},\ \Sigma = \{a,b\}$?$q...
GO Classes
222
views
asked
Jul 4
Theory of Computation
goclasses
goclasses-cs-dpp
theory-of-computation
goclasses-cs-dpp-day-314
goclasses-toc-practice-questions
finite-automata
+
–
3
3 votes
3
3 answers
251
251 views
GO Classes DPP | GATE CS | Theory of Computation | Valid DFA
Is the given figure a DFA?(If your answer is No, enter $\textit{0}$, if Yes, enter $\textit{1}$)
GO Classes
251
views
asked
Jul 4
Theory of Computation
goclasses
goclasses-cs-dpp
theory-of-computation
goclasses-cs-dpp-day-314
goclasses-toc-practice-questions
finite-automata
numerical-answers
+
–
3
3 votes
3
3 answers
220
220 views
GO Classes DPP | GATE CS | Data Structures | Pointer Tracing
Consider the following singly linked list:$\texttt{'B' - 'A' - 'S' - 'E' - NULL}$The pointer $\texttt{head}$ points to the first node containing $\texttt{'B'}$.What chara...
GO Classes
220
views
asked
Jul 4
Data Structures
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-314
data-structures
goclasses-ds-practice-questions
linked-list
+
–
6
6 votes
2
2 answers
223
223 views
GO Classes DPP | GATE CS | Data Structures | Front and Rear Reference
A singly linked list maintains two pointers:struct Node *front; // points to first node struct Node *rear; // points to last nodeWhich operation would be inefficient when...
GO Classes
223
views
asked
Jul 4
Data Structures
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-314
data-structures
goclasses-ds-practice-questions
linked-list
+
–
9
9 votes
2
2 answers
238
238 views
GO Classes DPP | GATE CS | Data Structures | Find Middle Node
Consider the problem of finding the middle node in a list $l$ of size $n$, given that $n$ is odd. Count the number of accesses to positions of list $l$ needed to find the...
GO Classes
238
views
asked
Jul 4
Data Structures
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-314
data-structures
goclasses-ds-practice-questions
linked-list
+
–
7
7 votes
4
4 answers
231
231 views
GO Classes DPP | GATE CS | Data Structures | Delete Last Node
Consider the following C function intended to delete the last node of a singly linked list:void removeLast(struct Node *head) { struct Node *p = head; struct Node *q = p-...
GO Classes
231
views
asked
Jul 4
Data Structures
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-314
data-structures
goclasses-ds-practice-questions
linked-list
+
–
6
6 votes
3
3 answers
230
230 views
GO Classes DPP | GATE CS | Data Structures | Insert at Front
Consider the following structure:struct Node { int data; struct Node *next; };A function should insert a new node containing value $\texttt{x}$ at the beginning of a sing...
GO Classes
230
views
asked
Jul 4
Data Structures
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-314
data-structures
goclasses-ds-practice-questions
linked-list
+
–
To see more, click for the
full list of questions
or
popular tags
.