Question : 1
The negation of "Some students like hockey" is:
Some students dislike hockey
Every student dislike hockey
Every student like hockey
All students like hockey
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 2
A relation '𝑅 ' is defined on ordered pairs of integers as: \((𝑥,𝑦)𝑅(𝑢,𝑣)\) if \(𝑥<𝑢\) and \(𝑦>𝑣\). Then \(𝑅\) is
Neither a partial order nor an equivalence relation
A partial order but not a total order
A total order
An equivalence relation
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 3
Suppose you are married and you and your partner attend a party with three other married couples. Several handshakes took place. No one shook hands with himself (or herself) or with their partner, and no one shook hands with the same person more than once. After all hand shaking was completed, suppose you asked each person, including your partner, how many hands they had shaken. Each person gave a different answer. How many hands did your spouse shake?
1
2
3
4
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 4
Consider the following conditional code, which returns a Boolean values
if ((𝑥 > 25)&&(𝑦 > 100))
return 'false';
else iff (𝑥 ≤ 25)&&&(𝑦 ≤ 100))
return 'true';
else iff (𝑥 > 25) && (𝑦 ≤ 100))
return 'false';
else
return 'true';
Simplify it by filling in the following blank with a single Boolean expression without changing the behaviour of the conditional code.
if (_ _ _ _ _ _ _ _ _)
return 'true';
else
return 'false';
𝑥 > 25
𝑥 ≤ 25
𝑦 > 100
𝑦 ≤ 100
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 5
Which one of the following types of memory is fastest
Cache Memory
Register Memory
Main Memory
Secondary Memory
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 6
The memory size for n address lines and m data lines is given by
\(2^{\mathrm{m}} \times \mathrm{n}\)
\(\mathrm{m} \times \mathrm{n}^{2}\)
\(2^{\mathrm{n}} \times \mathrm{m}\)
\(\mathrm{n} \times \mathrm{m}^{2}\)
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 7
Simplify the following using K-Map
\(\mathrm{F}(\mathrm{A}, \mathrm{B}, \mathrm{C}, \mathrm{D})=\sum(0,2,5,7,8,10,13,15)\)
\(\mathrm{BD}+\mathrm{B}^{\prime} \mathrm{D}^{\prime}\)
\(\mathrm{AC}+\mathrm{A}^{\prime} \mathrm{C}^{\prime}\)
\(\mathrm{BC}+\mathrm{B}^{\prime} \mathrm{C}^{\prime}\)
\(\mathrm{AD}+\mathrm{A}^{\prime} \mathrm{D}^{\prime}\)
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 8
Consider an unpipelined machine with 10nsec clock cycles which uses four cycles for ALU operations and branches where as five cycles for memory operation. Assume that the relative frequencies of these operations are: 40%,20% and 40%, respectively. Due to clock skew and setup pipeline let us consider that the machine adds one nsec overhead to the clock. How much speedup is observed in the instruction execution rate when a pipelined machine is considered.
2 times
4 times
6 times
8 times
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 9
Machine Level Language is a/an
Assembly Language
Low Level language
High level Language
Translating Language
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 10
Which of the following is wrong about the data types?
The number is always positive when qualifier 'unsigned' is used.
The number can be positive or negative when the qualifier 'signed' is used
The range of values for signed data types is more than that of unsigned data types
The left most bit in unsigned data type is used to represent the value
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 11
If a constructor 'Date' is declared explicitly and has to be defined outside the class, which of the following is correct?
Date::Date(int dd) {/∗…∗/}
explicit Date:: Date(int dd) {/∗…∗/}
Such a constructor cannot be defined
Constructor always has to be defined inside the class
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 12
Which one of the following allows the session to continue?
When a user quits a browser
When the user logs out and is invalidated by the servlet
When the session is timed out due to inactivity
When the user refreshes the browser and there is a persistent cookie
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 13
Overfitting is expected when we observe that?
With training iterations error on training set as well as test set decreases
With training iterations error on training set decreases but test set increases
With training iterations error on training set as well as test set increases
With training iterations training set as well as test error remains constant
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 14
Identify the incorrect statement(s).
A candidate key is minimal set of one or more attributes that, taken collectively, allows us to uniquely identify any entity in the entity set.
A candidate key for which no proper subset is also a candidate key is called a super key.
A super key is a set of one or more attributes that, taken collectively, allows us to uniquely identify any entity in the entity set.
A super key for which no proper subset is also a super key is called a candidate key.
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 15
Consider the two relations below. The primary keys are underlined. Identify all possible foreign key(s) from the options based only on the two relations.
EMP (eid, ename, did)
DEPT (did, dname)
eid
did
eid, did
eid, did, ename
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 16
Which of the following statement is correct, according to the following instance of the relational schema R(X,Y,Z)?
X | Y | Z |
1 | 1 | a |
1 | 1 | a |
2 | 1 | b |
3 | 2 | b |
\(\mathrm{X} \rightarrow \mathrm{Y}, \mathrm{Z} \rightarrow \mathrm{X}\)
\(\mathrm{Y} \rightarrow \mathrm{Z}, \mathrm{Z} \rightarrow \mathrm{X}\)
\(\mathrm{X} \rightarrow \mathrm{Y}, \mathrm{X} \rightarrow \mathrm{Z}\)
\(\mathrm{Y} \rightarrow \mathrm{X}, \mathrm{X} \rightarrow \mathrm{Z}\)
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 17
In Linux Operating System, when ___________is invoked, it is passed a set of flags that determine how much sharing is to take place between the parent and child tasks.
fork()
clone()
pthread()
thread ()
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 18
The main function of the microkernel is to provide a communication facility between the program and the various that are also running in user space.
Virtual, Processes
System, Processes
Client, Services
Virtual, Services
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 19
Consider an operating system capable of loading and executing a single sequential user process at a time. The disk head scheduling algorithm used is first come first served (FCFS). If (FCFS) is replaced by shortest seek time first (SSTF) and the vendor claims 50% better benchmark results. What is the expected improvement in the I/O performance of user programs?
50%
100%
25%
0%
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 20
For the following set of processes scheduled using FCFS policy, determine the average waiting time. Assume that the processes arrived in the order P1, P2, P3, P4.
Process | Burst Time(ms) |
P1 | 8 |
P2 | 15 |
P3 | 10 |
P4 | 7 |
8
16
32
48
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 21
Which of the following is not a Non functional requirement?
Portability.
Security.
Scalability
User interaction
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 22
COCOMO stands for
Consumed cost model
Constructive cost model
Common control model
Composition cost model
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 23
Modifying the software to match changes in the ever changing environment is called as
Adaptive maintenance
Corrective maintenance
Perfective maintenance
Preventive maintenance
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 24
For a function of two variables, boundary value analysis yields,
4n+3 test cases
4n+1 test cases
n+4 test cases
2𝑛+4 test cases
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 25
How many different trees are possible with \(' 𝑛 '\) nodes?
\(\mathrm{n}_{-1}\)
\(2^{\mathrm{n}}-1\)
\(2^{\mathrm{n}}\)
\(2^{\mathrm{n}}-\mathrm{n}\)
Correct Answer : MTA
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 26
Let \(' 𝑛 '\) denote a positive integer. Suppose a function \(F\) is defined as
\(f(n)=\left\{\begin{aligned} 0, & n=1 \\ f\left(\left\lfloor\frac{n}{2}\right\rfloor+1\right), & n>1\end{aligned}\right.\)
What is \(𝑓(25)\) ? and what does this function find?
\(4,\left\lfloor\log _{2} \mathrm{n}\right\rfloor\)
\(14,\left\lfloor\log _{2} \mathrm{n}\right\rfloor\)
\(4,\left\lfloor\frac{n}{2}\right\rfloor\)
\(14,\left\lfloor\frac{n}{2}\right\rfloor\)
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 27
Given the FFT we can have time procedure for multiplying two polynomials A(x) and B(x) of degree bound n where input and output representations are in coefficient form, assuming n is a power of 2.
\(O\left(\mathrm{n}^{2}\right)\)
\(O\left(n \cdot \log _{2} n\right)\)
\(\mathrm{O}\left(2^{\mathrm{n}}\right)\)
\(\mathrm{O}\left(\log _{2} \mathrm{n}\right)\)
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 28
Consider the Graph below:
How many spanning trees can be found?
10
5
9
8
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 29
The transition function ' 𝛿 ' in multi-tape Turing machine is defined as:
\(\delta: 2 \mathrm{Q} \times \Gamma^{\mathrm{k}} \rightarrow 2^{\mathrm{Q}} \times \Gamma^{\mathrm{k}} \times\{\mathrm{L}, \mathrm{R}, \mathrm{S}\}^{\mathrm{k}}\)
\(\delta: \mathrm{Q} \times \mathrm{Q} \times \Gamma^{\mathrm{k}} \rightarrow \mathrm{Q} \times \mathrm{Q} \times \Gamma^{\mathrm{k}} \times\{\mathrm{L}, \mathrm{R}, \mathrm{S}\}^{\mathrm{k}}\)
\(\delta: \mathrm{Q} \times \Gamma \mathrm{k} \rightarrow \mathrm{Q} \times \Gamma^{\mathrm{k}} \times\{\mathrm{L}, \mathrm{R}, \mathrm{S}\}^{\mathrm{k}}\)
\(\delta: \mathrm{Q} \times \Gamma^{\mathrm{k}} \times 2^{\mathrm{Q}} \rightarrow \mathrm{Q} \times \Gamma^{\mathrm{k}} \times 2^{\mathrm{Q}} \times\{\mathrm{L}, \mathrm{R}, \mathrm{S}\}^{\mathrm{k}}\)
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 30
In Pumping Lemma for regular languages, to say a language is satisfying pumping lemma, what is the minimum length of ' y ' if you consider the string as ' xyz '.
n
2
1
0
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 31
The item generated by the production \(𝐴 → 𝜀\) is :
\(A→. \)
\(𝐴→𝜀. \)
\(A→.𝜀 \)
\(A→𝜀\)
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 32
In the \(𝜀-NFA, 𝑀=(\{q0,q1,q2,q3\},\{a\},𝛿,q0,\{q3\})\) where \(' 𝛿 '\) is given in the transition table below, what is the minimum length of string to reach to the final state?
𝜀 | a | |
q0 | {q1} | {} |
q1 | {q2} | {} |
q2 | {} | {q2,q3} |
q3 | {} | {} |
0
1
2
3
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 33
Given Ethernet address 010110100001000101010101000110001010101000001111 in binary, what is the address in hexadecimal notation?
5 A:88:AA:18:55:F0
5 A:81:BA:81:AA:08
5 A:18:5 A:18:55:0 F
5 A:11:55:18:AA:0 F
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 34
A Computer on a 10Mbps network is regulated by a token bucket. The token bucket is filled at a rate of 2Mbps. It is initially filled to capacity with 16 megabits. What is the maximum duration for which the computer can transmit at the full 10Mbps?
1.6 seconds
2 seconds
5 seconds
8 seconds
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 35
In the standard Ethernet with transmission rate of 10Mbps, assume that the length of the medium is 2500 m and size of a frame is 512 bytes. The propagation speed of a signal in a cable is normally 2×108 m/s. Calculate Transmission delay and propagation delay.
25.25𝜇s and 51.2𝜇s
51.2𝜇S and 12.5𝜇s
10.24𝜇s and 50.12𝜇s
12.5𝜇s and 51.2𝜇s
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 36
In CRC coding if the data word is 111111, divisor is 1010 and the remainder is 110. Which of the following code is true?
011111101
001010110
111111110
110111111
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 37
The A∗ algorithm is optimal when,
It always finds the solution with the lowest total cost if the heuristic ' ℎ ' is admissible.
Always finds the solution with the highest total cost if the heuristic ' h ' is admissible.
Finds the solution with the lowest total cost if the heuristic ' ℎ ' is not admissible.
It always finds the solution with the highest total cost if the heuristic ' h ' is not admissible.
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 38
Which Artificial intelligence technique enables the computers to understand the associations and relationships between objects & Events?
Heuristic Processing.
Cognitive Science.
Relative symbolism.
Pattern Matching.
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 39
Where does the values of alpha-beta search get updated?
Along the path of search.
Initial state itself.
At the end.
None of these.
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 40
A 4-input neuron has weights 1,2,3,4. The transfer function is linear with the constant of proportionality being equal to 3. The inputs are 5,7,10,30, respectively
Then the output will be,
120
213
410
507
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 41
Consider the following statements:
P: There exists no simple, undirected and connected graph with 80 vertices and 77 edges.
Q: All vertices of Euler graph are of even degree.
R: Every simple, undirected, connected and acyclic graph with 50 vertices has at least two vertices of degree one.
S : There exits a bipartite graph with more than ten vertices which is 2-colorable.
What is the number of correct statements among the above statements.
1
2
3
4
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 42
Consider the following statements:
A. There exists a Boolean algebra with ′5′ elements.
B. Every element of Boolean algebra has unique complement.
C. If a Lattice ' L ' is a Boolean algebra then ' L ' is not relatively complemented.
D. The direct product of two Boolean Algebras is also a Boolean algebra
Choose the correct answer about the four statements given above.
Only A and D are correct
Only B and D are correct
All statements are NOT correct
All statements are correct
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 43
Which of the statement is not true in regards to virtual memory?
The main objective for using virtual memory is to increase the effective capacity of the memory system
Size of the program can be as large as the size of the secondary memory
Program and data are stored in the secondary memory
None of these
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 44
Which of the following is/are true for Dynamic RAM (DRAM)?
A. It is slower than static RAM(SRAM)
B. Packing Density is higher than Static RAM (SRAM)
C. It is faster than static RAM(SRAM)
D. It requires data refreshing
Choose the correct answer from the options given below:
A, B and D Only
A, B and C Only
C and D Only
B and D Only
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 45
Which of the following statement is/are false?
A. The processor has direct access to both primary and secondary memory
B. Primary memory stores the active instructions and data for the program being executed on the process
C. Secondary memory is used as a backup memory
D. Memory system is implemented on a single level memory
Choose the correct answer from the options given below:
A and B only
B and C only
A, B and C only
A and D Only
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 46
Given a vector with cartesian components \((x, y)\), if scaling is done with matrix \(\left[\begin{array}{cc}0.5 & 0 \\ 0 & 1.5\end{array}\right]\), which of the following are true.
A. Decreases the vertical by three halves
B. Increases the vertical by three halves
C. Doubles the horizontal
D. Halves the horizontal
Choose the correct answer from the options given below:
A and C only
A and D only
B and C only
B and D only
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 47
Which of the following lists defined in HTML share similar elements?
A. Unordered lists
B. Ordered lists
C. Definition Lists
D. Corelated lists
E. Enumerated lists
Choose the most appropriate answer from the options given below:
A, B, D only
A, C, E only
A, B, C only
A, C, D only
Correct Answer : MTA
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 48
What are the drawbacks of using file systems to store data?
A. Data inconsistency
B. Difficulty in accessing data
C. Data isolation
D. Atomicity of updates
Choose the correct answer from the options given below:
A, B, only
B, C, D only
A, B, C only
A, B, C, D
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 49
Which of the following database model, we have a parent-child relationship
A. hierarchical databases
B. network databases
C. relational databases
Choose the correct answer from the options below:
A, B
A, C
B, C
A, B, C
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 50
Identify the correct operation which produces the below given output based on two relations R1 and R2.
R1
Name | Class |
a1 | 9 |
b1 | 5 |
c1 | 6 |
d1 | 11 |
R2
Name | Class |
b1 | 5 |
f1 | 8 |
Output:
Name | Class |
b1 | 5 |
Choose the correct answer from the options below:
R1∩R2
R1−R2
R1−(R1−R2)
R1∪R2
Correct Answer : A or C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 51
Which of the following statements are true?
A. Shortest remaining time first scheduling may cause starvation
B. Preemptive scheduling may cause starvation
C. Round robin is better than FCFS in terms of response time
Choose the correct answer from the options given below:
A only
B, C only
A, B only
A, B, C
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 52
In design protocol of critical section problem, each process must ask permission to enter critical section in ________ code; it then executes in the critical section; once it finishes executes in the critical section it enters the_________ code. The process then enters the ________ code.
entry section, remainder section, exit section
entry section, exit section, remainder section
remainder section, entry section, exit section
remainder section, exit section, entry section
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 53
How do you create agile processes to manage unpredictability?
A. Requirements gathering must be conducted very carefully.
B. Risk analysis must be conducted before planning takes place.
C. Software increments must be delivered in short time periods.
D. Software processes must not adapt to changes incrementally.
Choose the correct answer from the options given below:
A only
B only
C only
D only
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 54
Software project manager is responsible for the following tasks:
A. Project Planning
B. Project status tracking
C. Resource management
D. Risk management
E. Project delivery within time & budget.
Choose the correct answer from the options given below:
All the statements are correct.
Only B & C are correct.
Only A & D are correct
All the statements are not correct.
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 55
Mr. X designed open source software which must comply with some criteria. Choose the false statement in respect of above.
A. No restriction on redistribution of the software as part or whole.
B. The integrity of the author's source code must be maintained.
C. The software can be sold after distribution.
Choose the correct answer from the options given below:
A only
B only
C only
All statements are false
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 56
Circuit satisfiability problem: Given a Boolean combinatorial circuit composed of AND, OR and NOT gates, is it satisfiable? A one output Boolean combinatorial circuit is satisfiable means for the given inputs the output will be 1.
A. The circuit satisfiability problem belongs to class NP
B. The circuit satisfiability problem is at least as hard as any language in NP
C. The circuit satisfiability is NP-Complete
D. The size of the circuit is Θ(K2+1)
E. If P≠NP, this situation would contradict the NP-Completeness of the problem.
Choose the correct answer from the options given below:
A, C, D Only
B, D, E Only
A, B, C Only
B, C, D Only
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 57
Given an expression
(A+B∗D)/(E−F)+G
A. The prefix notation is +/+A∗DB−EFG
B. The prefix expression is the reverse of the postfix expression
C. The order of operands in infix expression and postfix expression are the same.
D. The order of operands in infix expression, prefix expression and postfix expression are the same.
Choose the most appropriate answer from the options given below:
A, C and D Only
C and D Only
A and B Only
A and D Only
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 58
Which of the following is (are) correct about the regular expression?
\(a a^{*} b b^{*} c c^{*} d d^{*}\)
A. The language for the given expression is:
\(\mathrm{L}=\left\{\mathrm{a}^{\mathrm{n}} \mathrm{b}^{\mathrm{n}} \mathrm{c}^{\mathrm{m}} \mathrm{d}^{\mathrm{m}} \mid \mathrm{n} \geq 1, \mathrm{~m} \geq 1\right\} \mathrm{U}\left\{\mathrm{a}^{\mathrm{n}} \mathrm{b}^{\mathrm{m}} \mathrm{c}^{\mathrm{m}} \mathrm{d}^{\mathrm{n}} \mid \mathrm{n} \geq 1, \mathrm{~m} \geq 1\right\}\)
B. The Context Free Language for the given expression is:
\(\begin{array}{l} \mathrm{S} \rightarrow \mathrm{AB} \mid \mathrm{C} \\ \mathrm{A} \rightarrow \mathrm{aAb} \mid \mathrm{ab} \\ \mathrm{B} \rightarrow \mathrm{cBd} \mid \mathrm{cd} \\ \mathrm{C} \rightarrow \mathrm{aCd} \mid \mathrm{aDd} \\ \mathrm{D} \rightarrow \mathrm{bDc} \mid \mathrm{bc} \end{array}\)
C. The language generated by this expression is equal number of \(′𝑎′𝑠\), followed by equal number of \(′𝑏′𝑠\), followed by equal number of \(′𝑐′𝑠\) and followed by equal number of \(′𝑑′𝑠\).
Choose the correct answer from the options given below:
Only A is correct
Only B is correct
Both A and B are correct
All the three A, B and C are correct
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 59
Which of the following statements are correct?
A. The first three-address instruction in the intermediate code is a leader.
B. The instruction which is exactly at the middle of the given three address code is a leader.
C. Any instruction that is the target of a conditional or unconditional jump is a leader.
D. Any instruction that immediately follows a conditional or unconditional jump is a leader.
Choose the correct answer from the options given below:
A, B and C
B, C and D
A, C and D
A, B, C and D
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 60
Which of the following are correct on regular expressions?
A. \(\varphi+\mathrm{L}=\mathrm{L}+\varphi=\mathrm{L}\)
B. \(\varepsilon \mathrm{L}=\mathrm{L} \varepsilon=\mathrm{L}\)
C. \(\varphi \mathrm{L}=\mathrm{L} \varphi=\varphi\)
D. \(\varphi \mathrm{L}=\mathrm{L} \varphi=\mathrm{L}\)
Choose the correct answer from the options given below:
A, B and D only
A, B and C only
B and D only
A and D only
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 61
Consider two hosts P and Q are connected through a router R. The maximum transfer unit (MTU) value of the link between P and R is 1500 bytes and between R and Q is 820 bytes. A TCP segment of size of 1400 bytes is transferred from P to Q through R with IP identification value of 0×1234. Assume that IP header size is 20 bytes. Further the packet is allowed to be fragmented that is Don't Fragment (DF) flag in the IP Header is not set by P. which of the following statement is/are true
A. Two fragments are created at R and IP datagram size carrying the second fragment is 620 bytes
B. If the second fragment is lost then R resend the fragment with IP Identification value of 0×1234
C. If the second fragment lost then P required to resend the entire TCP segment
D. TCP destination port can be determined by analyzing the second fragment only
Choose the correct answer from the options given below:
A, B and C Only
A and C Only
C and D Only
B and D Only
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 62
The Solution to Silly Window Syndrome problem is/are:
A. Nagle's Algorithm
B. Clark's Algorithm
C. Jacobson's Algorithm
D. Piggy backing Algorithm
Choose the correct answer from the options given below:
A and B Only
A and C Only
C and D Only
B and D Only
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 63
Which AI System mimics the evolutionary process to generate increasingly better solutions to a process to a problem?
A. Self organizing neural network.
B. Back propagation neural network.
C. Genetic algorithm.
D. Forward propagation neural network.
Choose the correct answer from the options given below:
A Only
B Only
C Only
D Only
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 64
Consider the following Learning algorithms.
A. Logistic regression.
B. Back propagation.
C. Linear regression.
D. Forward propagation.
Which of the following options represents classification algorithm?
Choose the correct answer from the options given below:
A & C only
B & D only
A & B only
C & D only
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 65
Which Boolean operation on two variables can be represented by a single perception layer?
A. X1 AND X2
B. X1 OR X2
C. X1 NOR X2
D. X1 XOR X2
Choose the most appropriate answer from the options given below:
A and B Only
B and C Only
A, B and C Only
A, B, C and D Only
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 66
Match List I with List II
List I | List II |
A. Planer Graph | I. Probabilistic Model |
B. Bipartite Graph | II. Deterministic Model |
C. PERT | III. 4-Colorable |
D. CPM | IV. 2-Colorable |
Choose the correct answer from the options given below:
A-IV; B-III; C-I; D-II
A-III; B-IV; C-II; D-I
A-II; B-IV; C-I; D-III
A-III; B-IV; C-I; D-II
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 67
Match List I with List II
List I | List II |
A. Direct Addressing | I. MVI A, FFH |
B. Indirect Addressing | II. MOV A, B |
C. Register Addressing | III. STA FFFFH |
D. Immediate Addressing | IV. MOV A, M |
Choose the correct answer from the options given below:
A-I, B-II, C-III, D-IV
A-II, B-III, C-IV, D-I
A-III, B-IV, C-II, D-I
A-IV, B-III, C-I, D-II
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 68
Match List I with List II
List I | List II |
A. If the implementation of generated or derived classes differ only through a parameter we have | I. to use class hierarchy |
B. If the actual types of objects used cannot be known at compile time, then we have | II. improved run-time efficiency |
C. If inline operations are essential and templates are used then we have | III. to use templates |
D. To gain access to differing instances for derived classes through base we have | IV. to use explicit casting |
Choose the correct answer from the options given below:
A-I, B-II, C-IV, D-III
A-III, B-I, C-II, D-IV
A-I, B-III, C-II, D-IV
A-II, B-I, C-III, D-IV
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 69
Match List I and List II
List I | List II |
A. Apache Kafka | I. Platform for constructing data flows for extract, transform, and load (ETL) processing and analysis of large datasets. |
B. Pig | II. General-purpose computing model and runtime system for distributed data analytics. |
C. Apache Mahout | III. Open-source platform that was created by Linkedin. |
D. Mapreduce | IV. Open-source platform used for creating scalable machine learning algorithms. |
Choose the correct answer from the options given below:
A-II, B-IV, C-I, D-III
A-II, B-I, C-IV, D-III
A-III, B-I, C-IV, D-II
A-I, B-II, C-IV, D-III
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 70
Match List I with List II
List I | List II |
A. IPC | I. Resource Allocation |
B. Demand Paging | II. Computational speedup |
C. Banker's Algorithm | III. Task Control Block |
D. PCB | IV. Virtual Memory |
Choose the correct answer from the options given below:
A-II, B-I, C-IV, D-III
A-II, B-IV, C-I, D-III
A-I, B-II, C-III, D-IV
A-II, B-III, C-I, D-IV
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 71
Match List I with List II
List I | List II |
A. Product complexity | I. System Requirements Design. |
B. Structured System analysis | II. Software design. |
C. Coupling & Cohesion | III. Validation techniques. |
D. Symbolic Execution | IV. Software cost estimation. |
Choose the correct answer from the options given below:
A-II, B-III, C-IV, D-I
A-III, B-I, C-IV, D-II
A-IV, B-I, C-II, D-III
A-III, B-IV, C-I, D-II
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 72
Match List I with List II
List I | List II |
A. Dijkstra's Algorithm | I. Calculates path matrix |
B. Prim's Algorithm | II. Stores minimum cost edge |
C. Warshall's Algorithm | III. Stores the total cost from a source node to the current node |
D. Kruskal's algorithm | IV. Finds Minimum Spanning Tree |
Choose the correct answer from the options given below:
A-I, B-II, C-III, D-IV
A-III, B-II, C-I, D-IV
A-II, B-I, C-IV, D-III
A-III, B-IV, C-II, D-I
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 73
Match the following based on the language accepted by using brute force method of parsing.
LIST I | LIST II |
A. S→aSa∣ aa | I. ((2n∗3)−4);𝑛≥1 |
B. S→aaSaa∣ aa | II. 2n;n≥1 |
C. S→ aaaSaaa ∣ aa | III. ((4∗2n)−6);n≥1 |
D. S→ aaaaSaaaa ∣ aa | IV. 2n−2;n≥2 |
Choose the correct answer from the options given below:
A-IV, B-III, C-I, D-II
A-II, B- IV, C-I, D-III
A-I, B- IV, C-III, D-II
A-II, B-III, C-I, D-IV
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 74
Match List I with List II
List I | List II |
A. CDMA | I. It provides mobile internet connection with faster data transfer rates |
B. GSM | II. It allows users to connect to a network or to other devices over wireless channel |
C. UMTS | III. Accessing mechanism for multiple transmitters over a single channel |
D. WiFi | IV. It is cellular technology employs hybrid of FDMA and TDMA |
Choose the correct answer from the options given below:
A-III, B-IV, C-II, D-I
A-III, B-IV, C-I, D-II
A-II, B-III, C-IV, D-I
A-II, B-I, C-IV, D-III
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 75
Match List I with List II
List I |
List II |
A. Text planning |
I. Natural language understanding. |
B. Sentence planning | II. Natural language generation. |
C. Sentence generation | |
D. Map the input to useful representations |
Choose the correct answer from the options given below:
A-I, B-II, C-I, D-II
A-II, B-II, C-I, D-II
A-I, B-II, C-II, D-I
A-II, B-II, C-II, D-I
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 76
Consider the statements:
A. There does not exist a polynomial time algorithm to solve integer linear programming problem.
B. Main focus of PERT is 'minimizing time'.
Choose the correct option about the statements A and B.
A is True; B is True
A is True; B is False
A is False; B is True
A is False; B is False
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 77
The correct sequence in fetch-execute cycle is
A. Decode
B. Fetch
C. Execute
Chose the correct answer from the following
A−B−C
B−C−A
C−B−A
B−A−C
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 78
In what sequence the initialization, testing and execution of body is done while using do-while loop?
A. Commenting
B. Execution of the body
C. Initialisation
D. Testing the condition
Choose the correct answer from the following
D,B,C
D,C,B
C,A,B
C,B,D
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 79
Select the correct order of DBSCAN algorithm.
A. Find recursively all its density connected points and assign them to the same cluster as the core point.
B. Find all the neighbor points with eps and identify the core points with more than MinPts neighbors.
C. Iterate through the remaining unvisited pointed in the dataset.
D. For each core point if it is not already assigned to a cluster, create a new cluster.
Choose the correct answer from the following :
B, D, C, A
D, B, C, A
B, D, A, C
D, B, A, C
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 80
Select the correct order of events after power is initialized on a system.
A. Bootstrap loader is loaded from the disk
B. Kernel is loaded onto the memory
C. Firmware ROM loads boot block
Choose the correct answer from the options given below:
B,C,A
C,A,B
A,B,C
A,C,B
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 81
Given below are two statements: one is labeled as Assertion A and the other is labelled as Reason R.
Assertion A: Cohesion is a qualitative indication of the degree to which a module can be written more compactly and is able to complete its function in a timely manner.
Reason R: Cohesion is a qualitative indication of the degree to which a module is connected to other modules and the outside world.
In the light of the above statements, choose the most appropriate answer from the options given below.
Both A and R are correct and R is the correct explanation of A.
Both A and R are correct but R is NOT the correct explanation of A.
A is correct but R is not correct.
A is not correct but R is correct.
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 82
Given the graph below which one of the following edges cannot be added in that order to find a minimum spanning tree uses algorithm.
A. a-b
B. d-f
C. b-f
D. d-c
E. d-e
Choose the correct answer from the options given below:
A,B,C,D,E
A, B, D, C, E
B, A, C, E, D
B, A, D, C, E
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 83
What is the safest order while simplifying Context Free Grammar?
Elimination of 𝜀-productions, Unit productions and then Useless symbols \& productions.
Elimination of useless symbols \& productions, 𝜀-productions and then Unit productions.
Elimination of Unit productions, 𝜀-productions and then Useless symbols and productions.
Elimination of 𝜀-productions, Useless symbols and productions and then Unit productions.
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 84
Rearrange the following sequence in the context of OSI Layers:
A. Transforming the raw bits in the form of frame for transmission
B. Transmission of raw bits over communication channel
C. Handling user interfaces
D. Control and monitoring of subnet
E. Transmission data through connection oriented or connection less using datagrams
Choose the correct answer from the options given below:
A-B-C-D-E
B-C-D-E-A
B-A-D-E-C
A-B-D-E-C
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 85
Choose the correct option describing the features of Artificial neural network
A. It is essentially machine learning algorithm.
B. It is useful when solving the problems for which the data set is very large.
C. They are able to extract features without input from the programmer.
D. These are systems modeled on the human brain and nervous system
Choose the correct answer from the options given below:
All the statements are correct.
Only B & C are correct.
Only A & D are correct.
All the statements are not correct.
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 86
Four persons: P, Q, R and S are in police custody and one of them has committed a crime. They confess as follows:
A. Person P: Q did it.
B. Person Q : S did it.
C. Person R: I did not do it.
D. Person S : Q lied.
If exactly one of the statements is false, which of the following is the guilty person.
P
Q
R
S
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 87
Assertion A: A Raster scan device is a CRT graphic device and can use a television monitor for display
Reason R: In Raster scan display the picture is composed of a series of dots. These dots are traced out as a series of horizontal lines. Television works in a similar fashion.
In the light of the above statements, choose the correct answer from the options given below:
Both A and R are true and R is the correct explanation of A
Both A and R are true but R is not the correct explanation of A
A is true but R is false
A is false but R is true
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 88
An OS follows round-robin scheduling with time quantum of 4 ms. Assuming that the CPU is free now and there are 20 processes waiting in the ready queue, the maximum amount of time that a process waits before getting into the CPU is
80 ms
76 ms
84 ms
None of the above
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 89
Statement 1:
Given a graph G=(V,E) in which each vertex v∈V has an associated positive weight w(v), we can use linear programming to find the lower bound on the weight of the minimum-weight vertex cover.
Statement 2:
The lower bound can be found by maximizing the following
\(\sum_{v \in V}^{n} \mathrm{w}(v) \mathrm{x}(v)\)
\(\text { subject to }\)
\(x(u)+x(v) \geq 1 \text { for each }(u, v) \in V\)
\(\quad x(v) \leq 1 \text { for each } v \in V\)
\(\quad x(v) \geq 0 \text { for each } v \in V\)
In the light of the above statements, choose the most appropriate answer from the options given below:
Both statement I and Statement II are correct
Both statement I and Statement II are incorrect
Statement I is correct but Statement II is incorrect
Statement I is incorrect and Statement II is correct
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 90
A TCP Server application is programmed to listen on port P on Host S. A TCP Client is connected to the TCP Server over the network. Considered that while TCP Connection is active the server is crashed and rebooted. Assume that the client does not use TCP keepalive timer. Which of the following behaviours is/are possible?
Statement I:
If client is waiting to receive a packet, it may wait indefinitely
Statement II:
If the client sends a packet after the server reboot, it will receive the FIN segment
In the light of the above statements, choose the correct answer from the options given below
Both Statement I and Statement II are true
Both Statement I and Statement II are false
Statement I is true but Statement II is false
Statement I is false but Statement II is true
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 91
An organization is granted the block 130.56.0.0/16. The administrator wants to create 1024 subnets.
Find the number of addresses in each subnet
32
64
128
16
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 92
An organization is granted the block 130.56.0.0/16. The administrator wants to create 1024 subnets.
Find the subnet prefix.
130.56
136.0
136.255
136.56.255
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 93
An organization is granted the block 130.56.0.0/16. The administrator wants to create 1024 subnets.
Find first and last addresses of First subnet.
130.56.0.0 130.56.254.254
130.56.0.0 130.56.0.63
130.0.0.0 130.255.255.255
130.56.0.0 130.56.255.63
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 94
An organization is granted the block 130.56.0.0/16. The administrator wants to create 1024 subnets. .
Find first and last addresses of last subnet.
130.56.0.0 130.56.254.255
130.56.255.0 130.56.255.255
130.56.0.192 130.255.255.255
130.56.255.192 130.56.255.255
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 95
An organization is granted the block 130.56.0.0/16. The administrator wants to create 1024 subnets.
Find subnet mask.
130.255.255.255
130.56.255.255
130.56.0.255
130.56.155.192
Correct Answer : MTA
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 96
A Turing Machine for the language \(\mathrm{L}=\left\{\mathrm{a}^{\mathrm{n}} \mathrm{b}^{\mathrm{m}} \mathrm{c}^{\mathrm{n}} \mathrm{d}^{\mathrm{m}} \mid \mathrm{n} \geq 1, \mathrm{~m} \geq 1\right\}\) is designed. The resultant model is \(M =\)\(\left(\left\{\mathrm{q}_{0}, \mathrm{q}_{1}, \mathrm{q}_{2}, \mathrm{q}_{3}, \mathrm{q}_{4}, \mathrm{q}_{5}, \mathrm{q}_{6}, \mathrm{q}_{7}, \mathrm{q}_{\mathrm{f}}\right\},\{\mathrm{a}, \mathrm{b}, \mathrm{c}, \mathrm{d}\},\left\{\mathrm{a}, \mathrm{b}, \mathrm{c}, \mathrm{d}, \mathrm{X}_{1}, \mathrm{X}_{2}, \mathrm{Y}_{1}, \mathrm{Y}_{2}\right\}, \delta, \mathrm{q}_{0}, \mathrm{~B},\left\{\mathrm{q}_{\mathrm{f}}\right\}\right)\) and part of \(' 𝛿 '\) is given in the transition table. You need to write the following questions based on design of Turing Machine for the given language. Note that, while designing the Turing Machine \(X_1\) and \(X_2\) are used to work with \(′𝑎′𝑠\) and \(′𝑐′𝑠\) and \(Y_1\) and \(Y_2\) are used to handle \(′𝑏′𝑠\) and \(′𝑑′𝑠\) of the given string.
\(\begin{array}{|c|c|c|c|c|c|c|c|c|c|} \hline & \mathrm{a} & \mathrm{b} & \mathrm{c} & \mathrm{d} & \mathrm{X}_{1} & \mathrm{X}_{2} & \mathrm{Y}_{1} & \mathrm{Y}_{2} & \mathrm{~B} \\ \hline \mathrm{q}_{0} & \left(\mathrm{q}_{1}, \mathrm{X}_{1}, \mathrm{R}\right) & & & & \mathrm{M} 2 & & & & \\ \hline \mathrm{q}_{1} & \left(\mathrm{q}_{1}, \mathrm{a}, \mathrm{R}\right) & \left(\mathrm{q}_{1}, \mathrm{~b}, \mathrm{R}\right) & \mathrm{M} 1 & & & \left(\mathrm{q}_{1}, \mathrm{X}_{2}, \mathrm{R}\right) & & & \\ \hline \mathrm{q}_{2} & \left(\mathrm{q}_{2}, \mathrm{a}, \mathrm{L}\right) & \left(\mathrm{q}_{2}, \mathrm{~b}, \mathrm{~L}\right) & & & \left(\mathrm{q}_{2}, \mathrm{X}_{1}, \mathrm{R}\right) & \left(\mathrm{q}_{2}, \mathrm{X}_{2}, \mathrm{~L}\right) & & & \\ \hline \mathrm{q}_{3} & \mathrm{M} 3 & \left(\mathrm{q}_{4}, \mathrm{Y}_{1}, \mathrm{R}\right) & & & & \left(\mathrm{q}_{6} \mathrm{X}_{2}, \mathrm{R}\right) & & & \\ \hline \mathrm{q}_{4} & & \left(\mathrm{q}_{4}, \mathrm{~b}, \mathrm{R}\right) & & \left(\mathrm{q}_{5}, \mathrm{Y}_{2}, \mathrm{~L}\right) & & \mathrm{M} 5 & & \left(\mathrm{q}_{4}, \mathrm{Y}_{2}, \mathrm{R}\right) & \\ \hline \mathrm{q}_{5} & & \left(\mathrm{q}_{5}, \mathrm{~b}, \mathrm{~L}\right) & & & & \left(\mathrm{q}_{5}, \mathrm{X}_{2}, \mathrm{~L}\right) & \mathrm{M} 4 & \left(\mathrm{q}_{5}, \mathrm{Y}_{2}, \mathrm{~L}\right) & \\ \hline \mathrm{q}_{6} & & & & & & \left(\mathrm{q}_{6}, \mathrm{X}_{2}, \mathrm{R}\right) & & \left(\mathrm{q}_{7}, \mathrm{Y}_{2}, \mathrm{R}\right) & \\ \hline \mathrm{q}_{7} & & & & & & & & \left(\mathrm{q}_{7}, \mathrm{Y}_{2}, \mathrm{R}\right) & \left(\mathrm{q}_{6}, \mathrm{~B}, \mathrm{R}\right) \\ \hline \end{array}\)
What is the Move in the cell with number \(' M1 '\) of the resultant Table?
\(\left(\mathrm{q}_{2}, \mathrm{X}_{2}, \mathrm{R}\right)\)
\(\left(\mathrm{q}_{2}, \mathrm{X}_{2}, \mathrm{~L}\right)\)
\(\left(\mathrm{q}_{3}, \mathrm{X}_{2}, \mathrm{~L}\right)\)
Error Entry
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 97
A Turing Machine for the language \(\mathrm{L}=\left\{\mathrm{a}^{\mathrm{n}} \mathrm{b}^{\mathrm{m}} \mathrm{c}^{\mathrm{n}} \mathrm{d}^{\mathrm{m}} \mid \mathrm{n} \geq 1, \mathrm{~m} \geq 1\right\}\) is designed. The resultant model is \(M =\)\(\left(\left\{\mathrm{q}_{0}, \mathrm{q}_{1}, \mathrm{q}_{2}, \mathrm{q}_{3}, \mathrm{q}_{4}, \mathrm{q}_{5}, \mathrm{q}_{6}, \mathrm{q}_{7}, \mathrm{q}_{\mathrm{f}}\right\},\{\mathrm{a}, \mathrm{b}, \mathrm{c}, \mathrm{d}\},\left\{\mathrm{a}, \mathrm{b}, \mathrm{c}, \mathrm{d}, \mathrm{X}_{1}, \mathrm{X}_{2}, \mathrm{Y}_{1}, \mathrm{Y}_{2}\right\}, \delta, \mathrm{q}_{0}, \mathrm{~B},\left\{\mathrm{q}_{\mathrm{f}}\right\}\right)\) and part of \(' 𝛿 '\) is given in the transition table. You need to write the following questions based on design of Turing Machine for the given language. Note that, while designing the Turing Machine \(X_1\) and \(X_2\) are used to work with \(′𝑎′𝑠\) and \(′𝑐′𝑠\) and \(Y_1\) and \(Y_2\) are used to handle \(′𝑏′𝑠\) and \(′𝑑′𝑠\) of the given string.
\(\begin{array}{|c|c|c|c|c|c|c|c|c|c|} \hline & \mathrm{a} & \mathrm{b} & \mathrm{c} & \mathrm{d} & \mathrm{X}_{1} & \mathrm{X}_{2} & \mathrm{Y}_{1} & \mathrm{Y}_{2} & \mathrm{~B} \\ \hline \mathrm{q}_{0} & \left(\mathrm{q}_{1}, \mathrm{X}_{1}, \mathrm{R}\right) & & & & \mathrm{M} 2 & & & & \\ \hline \mathrm{q}_{1} & \left(\mathrm{q}_{1}, \mathrm{a}, \mathrm{R}\right) & \left(\mathrm{q}_{1}, \mathrm{~b}, \mathrm{R}\right) & \mathrm{M} 1 & & & \left(\mathrm{q}_{1}, \mathrm{X}_{2}, \mathrm{R}\right) & & & \\ \hline \mathrm{q}_{2} & \left(\mathrm{q}_{2}, \mathrm{a}, \mathrm{L}\right) & \left(\mathrm{q}_{2}, \mathrm{~b}, \mathrm{~L}\right) & & & \left(\mathrm{q}_{2}, \mathrm{X}_{1}, \mathrm{R}\right) & \left(\mathrm{q}_{2}, \mathrm{X}_{2}, \mathrm{~L}\right) & & & \\ \hline \mathrm{q}_{3} & \mathrm{M} 3 & \left(\mathrm{q}_{4}, \mathrm{Y}_{1}, \mathrm{R}\right) & & & & \left(\mathrm{q}_{6} \mathrm{X}_{2}, \mathrm{R}\right) & & & \\ \hline \mathrm{q}_{4} & & \left(\mathrm{q}_{4}, \mathrm{~b}, \mathrm{R}\right) & & \left(\mathrm{q}_{5}, \mathrm{Y}_{2}, \mathrm{~L}\right) & & \mathrm{M} 5 & & \left(\mathrm{q}_{4}, \mathrm{Y}_{2}, \mathrm{R}\right) & \\ \hline \mathrm{q}_{5} & & \left(\mathrm{q}_{5}, \mathrm{~b}, \mathrm{~L}\right) & & & & \left(\mathrm{q}_{5}, \mathrm{X}_{2}, \mathrm{~L}\right) & \mathrm{M} 4 & \left(\mathrm{q}_{5}, \mathrm{Y}_{2}, \mathrm{~L}\right) & \\ \hline \mathrm{q}_{6} & & & & & & \left(\mathrm{q}_{6}, \mathrm{X}_{2}, \mathrm{R}\right) & & \left(\mathrm{q}_{7}, \mathrm{Y}_{2}, \mathrm{R}\right) & \\ \hline \mathrm{q}_{7} & & & & & & & & \left(\mathrm{q}_{7}, \mathrm{Y}_{2}, \mathrm{R}\right) & \left(\mathrm{q}_{6}, \mathrm{~B}, \mathrm{R}\right) \\ \hline \end{array}\)
What is the Move in the cell with number \('M2'\) of the resultant Table?
\(\left(\mathrm{q}_{1}, \mathrm{X}_{1}, \mathrm{R}\right)\)
\(\left(\mathrm{q}_{1}, \mathrm{a}, \mathrm{R}\right)\)
\(\left(\mathrm{q}_{2}, \mathrm{X}_{1}, \mathrm{R}\right)\)
Error Entry
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 98
A Turing Machine for the language \(\mathrm{L}=\left\{\mathrm{a}^{\mathrm{n}} \mathrm{b}^{\mathrm{m}} \mathrm{c}^{\mathrm{n}} \mathrm{d}^{\mathrm{m}} \mid \mathrm{n} \geq 1, \mathrm{~m} \geq 1\right\}\) is designed. The resultant model is \(M =\)\(\left(\left\{\mathrm{q}_{0}, \mathrm{q}_{1}, \mathrm{q}_{2}, \mathrm{q}_{3}, \mathrm{q}_{4}, \mathrm{q}_{5}, \mathrm{q}_{6}, \mathrm{q}_{7}, \mathrm{q}_{\mathrm{f}}\right\},\{\mathrm{a}, \mathrm{b}, \mathrm{c}, \mathrm{d}\},\left\{\mathrm{a}, \mathrm{b}, \mathrm{c}, \mathrm{d}, \mathrm{X}_{1}, \mathrm{X}_{2}, \mathrm{Y}_{1}, \mathrm{Y}_{2}\right\}, \delta, \mathrm{q}_{0}, \mathrm{~B},\left\{\mathrm{q}_{\mathrm{f}}\right\}\right)\) and part of \(' 𝛿 '\) is given in the transition table. You need to write the following questions based on design of Turing Machine for the given language. Note that, while designing the Turing Machine \(X_1\) and \(X_2\) are used to work with \(′𝑎′𝑠\) and \(′𝑐′𝑠\) and \(Y_1\) and \(Y_2\) are used to handle \(′𝑏′𝑠\) and \(′𝑑′𝑠\) of the given string.
\(\begin{array}{|c|c|c|c|c|c|c|c|c|c|} \hline & \mathrm{a} & \mathrm{b} & \mathrm{c} & \mathrm{d} & \mathrm{X}_{1} & \mathrm{X}_{2} & \mathrm{Y}_{1} & \mathrm{Y}_{2} & \mathrm{~B} \\ \hline \mathrm{q}_{0} & \left(\mathrm{q}_{1}, \mathrm{X}_{1}, \mathrm{R}\right) & & & & \mathrm{M} 2 & & & & \\ \hline \mathrm{q}_{1} & \left(\mathrm{q}_{1}, \mathrm{a}, \mathrm{R}\right) & \left(\mathrm{q}_{1}, \mathrm{~b}, \mathrm{R}\right) & \mathrm{M} 1 & & & \left(\mathrm{q}_{1}, \mathrm{X}_{2}, \mathrm{R}\right) & & & \\ \hline \mathrm{q}_{2} & \left(\mathrm{q}_{2}, \mathrm{a}, \mathrm{L}\right) & \left(\mathrm{q}_{2}, \mathrm{~b}, \mathrm{~L}\right) & & & \left(\mathrm{q}_{2}, \mathrm{X}_{1}, \mathrm{R}\right) & \left(\mathrm{q}_{2}, \mathrm{X}_{2}, \mathrm{~L}\right) & & & \\ \hline \mathrm{q}_{3} & \mathrm{M} 3 & \left(\mathrm{q}_{4}, \mathrm{Y}_{1}, \mathrm{R}\right) & & & & \left(\mathrm{q}_{6} \mathrm{X}_{2}, \mathrm{R}\right) & & & \\ \hline \mathrm{q}_{4} & & \left(\mathrm{q}_{4}, \mathrm{~b}, \mathrm{R}\right) & & \left(\mathrm{q}_{5}, \mathrm{Y}_{2}, \mathrm{~L}\right) & & \mathrm{M} 5 & & \left(\mathrm{q}_{4}, \mathrm{Y}_{2}, \mathrm{R}\right) & \\ \hline \mathrm{q}_{5} & & \left(\mathrm{q}_{5}, \mathrm{~b}, \mathrm{~L}\right) & & & & \left(\mathrm{q}_{5}, \mathrm{X}_{2}, \mathrm{~L}\right) & \mathrm{M} 4 & \left(\mathrm{q}_{5}, \mathrm{Y}_{2}, \mathrm{~L}\right) & \\ \hline \mathrm{q}_{6} & & & & & & \left(\mathrm{q}_{6}, \mathrm{X}_{2}, \mathrm{R}\right) & & \left(\mathrm{q}_{7}, \mathrm{Y}_{2}, \mathrm{R}\right) & \\ \hline \mathrm{q}_{7} & & & & & & & & \left(\mathrm{q}_{7}, \mathrm{Y}_{2}, \mathrm{R}\right) & \left(\mathrm{q}_{6}, \mathrm{~B}, \mathrm{R}\right) \\ \hline \end{array}\)
What is the Move in the cell with number \('M3'\) of the resultant Table?
\(\left(\mathrm{q}_{1}, \mathrm{X}_{1}, \mathrm{~L}\right)\)
\(\left(\mathrm{q}_{4}, \mathrm{X}_{1}, \mathrm{R}\right)\)
\(\left(\mathrm{q}_{1}, \mathrm{X}_{1}, \mathrm{R}\right)\)
Error Entry
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 99
A Turing Machine for the language \(\mathrm{L}=\left\{\mathrm{a}^{\mathrm{n}} \mathrm{b}^{\mathrm{m}} \mathrm{c}^{\mathrm{n}} \mathrm{d}^{\mathrm{m}} \mid \mathrm{n} \geq 1, \mathrm{~m} \geq 1\right\}\) is designed. The resultant model is \(M =\)\(\left(\left\{\mathrm{q}_{0}, \mathrm{q}_{1}, \mathrm{q}_{2}, \mathrm{q}_{3}, \mathrm{q}_{4}, \mathrm{q}_{5}, \mathrm{q}_{6}, \mathrm{q}_{7}, \mathrm{q}_{\mathrm{f}}\right\},\{\mathrm{a}, \mathrm{b}, \mathrm{c}, \mathrm{d}\},\left\{\mathrm{a}, \mathrm{b}, \mathrm{c}, \mathrm{d}, \mathrm{X}_{1}, \mathrm{X}_{2}, \mathrm{Y}_{1}, \mathrm{Y}_{2}\right\}, \delta, \mathrm{q}_{0}, \mathrm{~B},\left\{\mathrm{q}_{\mathrm{f}}\right\}\right)\) and part of \(' 𝛿 '\) is given in the transition table. You need to write the following questions based on design of Turing Machine for the given language. Note that, while designing the Turing Machine \(X_1\) and \(X_2\) are used to work with \(′𝑎′𝑠\) and \(′𝑐′𝑠\) and \(Y_1\) and \(Y_2\) are used to handle \(′𝑏′𝑠\) and \(′𝑑′𝑠\) of the given string.
\(\begin{array}{|c|c|c|c|c|c|c|c|c|c|} \hline & \mathrm{a} & \mathrm{b} & \mathrm{c} & \mathrm{d} & \mathrm{X}_{1} & \mathrm{X}_{2} & \mathrm{Y}_{1} & \mathrm{Y}_{2} & \mathrm{~B} \\ \hline \mathrm{q}_{0} & \left(\mathrm{q}_{1}, \mathrm{X}_{1}, \mathrm{R}\right) & & & & \mathrm{M} 2 & & & & \\ \hline \mathrm{q}_{1} & \left(\mathrm{q}_{1}, \mathrm{a}, \mathrm{R}\right) & \left(\mathrm{q}_{1}, \mathrm{~b}, \mathrm{R}\right) & \mathrm{M} 1 & & & \left(\mathrm{q}_{1}, \mathrm{X}_{2}, \mathrm{R}\right) & & & \\ \hline \mathrm{q}_{2} & \left(\mathrm{q}_{2}, \mathrm{a}, \mathrm{L}\right) & \left(\mathrm{q}_{2}, \mathrm{~b}, \mathrm{~L}\right) & & & \left(\mathrm{q}_{2}, \mathrm{X}_{1}, \mathrm{R}\right) & \left(\mathrm{q}_{2}, \mathrm{X}_{2}, \mathrm{~L}\right) & & & \\ \hline \mathrm{q}_{3} & \mathrm{M} 3 & \left(\mathrm{q}_{4}, \mathrm{Y}_{1}, \mathrm{R}\right) & & & & \left(\mathrm{q}_{6} \mathrm{X}_{2}, \mathrm{R}\right) & & & \\ \hline \mathrm{q}_{4} & & \left(\mathrm{q}_{4}, \mathrm{~b}, \mathrm{R}\right) & & \left(\mathrm{q}_{5}, \mathrm{Y}_{2}, \mathrm{~L}\right) & & \mathrm{M} 5 & & \left(\mathrm{q}_{4}, \mathrm{Y}_{2}, \mathrm{R}\right) & \\ \hline \mathrm{q}_{5} & & \left(\mathrm{q}_{5}, \mathrm{~b}, \mathrm{~L}\right) & & & & \left(\mathrm{q}_{5}, \mathrm{X}_{2}, \mathrm{~L}\right) & \mathrm{M} 4 & \left(\mathrm{q}_{5}, \mathrm{Y}_{2}, \mathrm{~L}\right) & \\ \hline \mathrm{q}_{6} & & & & & & \left(\mathrm{q}_{6}, \mathrm{X}_{2}, \mathrm{R}\right) & & \left(\mathrm{q}_{7}, \mathrm{Y}_{2}, \mathrm{R}\right) & \\ \hline \mathrm{q}_{7} & & & & & & & & \left(\mathrm{q}_{7}, \mathrm{Y}_{2}, \mathrm{R}\right) & \left(\mathrm{q}_{6}, \mathrm{~B}, \mathrm{R}\right) \\ \hline \end{array}\)
What is the Move in the cell with number \('M4'\) of the resultant Table?
\(\left(\mathrm{q}_{5}, \mathrm{Y}_{1}, \mathrm{~L}\right)\)
\(\left(\mathrm{q}_{3}, \mathrm{Y}_{1}, \mathrm{R}\right)\)
\(\left(\mathrm{q}_{4}, \mathrm{Y}_{1}, \mathrm{~L}\right)\)
\(\left(\mathrm{q}_{3}, \mathrm{Y}_{1}, \mathrm{~L}\right)\)
Correct Answer : MTA
Question Type : MCQ
Max Marks : 2
Negative Marks : 0
Question : 100
A Turing Machine for the language \(\mathrm{L}=\left\{\mathrm{a}^{\mathrm{n}} \mathrm{b}^{\mathrm{m}} \mathrm{c}^{\mathrm{n}} \mathrm{d}^{\mathrm{m}} \mid \mathrm{n} \geq 1, \mathrm{~m} \geq 1\right\}\) is designed. The resultant model is \(M =\)\(\left(\left\{\mathrm{q}_{0}, \mathrm{q}_{1}, \mathrm{q}_{2}, \mathrm{q}_{3}, \mathrm{q}_{4}, \mathrm{q}_{5}, \mathrm{q}_{6}, \mathrm{q}_{7}, \mathrm{q}_{\mathrm{f}}\right\},\{\mathrm{a}, \mathrm{b}, \mathrm{c}, \mathrm{d}\},\left\{\mathrm{a}, \mathrm{b}, \mathrm{c}, \mathrm{d}, \mathrm{X}_{1}, \mathrm{X}_{2}, \mathrm{Y}_{1}, \mathrm{Y}_{2}\right\}, \delta, \mathrm{q}_{0}, \mathrm{~B},\left\{\mathrm{q}_{\mathrm{f}}\right\}\right)\) and part of \(' 𝛿 '\) is given in the transition table. You need to write the following questions based on design of Turing Machine for the given language. Note that, while designing the Turing Machine \(X_1\) and \(X_2\) are used to work with \(′𝑎′𝑠\) and \(′𝑐′𝑠\) and \(Y_1\) and \(Y_2\) are used to handle \(′𝑏′𝑠\) and \(′𝑑′𝑠\) of the given string.
\(\begin{array}{|c|c|c|c|c|c|c|c|c|c|} \hline & \mathrm{a} & \mathrm{b} & \mathrm{c} & \mathrm{d} & \mathrm{X}_{1} & \mathrm{X}_{2} & \mathrm{Y}_{1} & \mathrm{Y}_{2} & \mathrm{~B} \\ \hline \mathrm{q}_{0} & \left(\mathrm{q}_{1}, \mathrm{X}_{1}, \mathrm{R}\right) & & & & \mathrm{M} 2 & & & & \\ \hline \mathrm{q}_{1} & \left(\mathrm{q}_{1}, \mathrm{a}, \mathrm{R}\right) & \left(\mathrm{q}_{1}, \mathrm{~b}, \mathrm{R}\right) & \mathrm{M} 1 & & & \left(\mathrm{q}_{1}, \mathrm{X}_{2}, \mathrm{R}\right) & & & \\ \hline \mathrm{q}_{2} & \left(\mathrm{q}_{2}, \mathrm{a}, \mathrm{L}\right) & \left(\mathrm{q}_{2}, \mathrm{~b}, \mathrm{~L}\right) & & & \left(\mathrm{q}_{2}, \mathrm{X}_{1}, \mathrm{R}\right) & \left(\mathrm{q}_{2}, \mathrm{X}_{2}, \mathrm{~L}\right) & & & \\ \hline \mathrm{q}_{3} & \mathrm{M} 3 & \left(\mathrm{q}_{4}, \mathrm{Y}_{1}, \mathrm{R}\right) & & & & \left(\mathrm{q}_{6} \mathrm{X}_{2}, \mathrm{R}\right) & & & \\ \hline \mathrm{q}_{4} & & \left(\mathrm{q}_{4}, \mathrm{~b}, \mathrm{R}\right) & & \left(\mathrm{q}_{5}, \mathrm{Y}_{2}, \mathrm{~L}\right) & & \mathrm{M} 5 & & \left(\mathrm{q}_{4}, \mathrm{Y}_{2}, \mathrm{R}\right) & \\ \hline \mathrm{q}_{5} & & \left(\mathrm{q}_{5}, \mathrm{~b}, \mathrm{~L}\right) & & & & \left(\mathrm{q}_{5}, \mathrm{X}_{2}, \mathrm{~L}\right) & \mathrm{M} 4 & \left(\mathrm{q}_{5}, \mathrm{Y}_{2}, \mathrm{~L}\right) & \\ \hline \mathrm{q}_{6} & & & & & & \left(\mathrm{q}_{6}, \mathrm{X}_{2}, \mathrm{R}\right) & & \left(\mathrm{q}_{7}, \mathrm{Y}_{2}, \mathrm{R}\right) & \\ \hline \mathrm{q}_{7} & & & & & & & & \left(\mathrm{q}_{7}, \mathrm{Y}_{2}, \mathrm{R}\right) & \left(\mathrm{q}_{6}, \mathrm{~B}, \mathrm{R}\right) \\ \hline \end{array}\)
What is the Move in the cell with number \('M5'\) of the resultant Table?
\(\left(\mathrm{q}_{4}, \mathrm{X}_{2}, \mathrm{R}\right)\)
\(\left(\mathrm{q}_{5}, \mathrm{X}_{2}, \mathrm{R}\right)\)
\(\left(\mathrm{q}_{5}, \mathrm{X}_{2}, \mathrm{~L}\right)\)
Error Entry
Correct Answer : MTA
Question Type : MCQ
Max Marks : 2
Negative Marks : 0