Final Model Word
Final Model Word
21. An RLC series circuit is under damped. To make it over damped, the value of R
A. has to be increased B. has to be decreased
C. has to be increased to infinity D. has to be reduced to zero
22. A two port network is said to be reciprocal if and only if
A. Z12 =Z21 B. Z12 =Z22
C. Z11 = Z12 D. Z11 = Z22
23. ABCD parameters are used in analysis of
A. Short circuit B. Electronic circuits
C. Open circuit D. Transmission line
24. Which of the following is correct for a driving point functions?
A. the real part of all poles must be negative
B. the real parts of poles and zeros must be negative
C. the real parts of all poles and zeros must be negative or zero
D. the real parts of all zeros must be negative
25. For a voltage transfer function H(S), realizable by RLC network, the following
statements are made of this statments
1. 1.H(S) cannot have a pole at s=0
2. H(S) cannot have a pole at s =
3. H(S) cannot have a pole at s=
4. H(S) cannot have a pole at s=+2
A. 3 and 4 are correct B. 2 and 4 are correct
C. 1 and 2 are correct D. 1 and 3 are correct
26. For a series resonant circuit at low frequency impedance is __________ and at high
frequency circuit impedance is __________ .
A. capacitive, inductive B. Inductive, capacitive
C. resistive, inductive D. capacitive, resistive
27. In a Hurwitz polynomial
A. all coefficients are non-negative
B. both the odd and even parts have roots on jω axis
C. the continued fraction expansion is the ratio of odd to even parts of a Hurwitz
polynomial yields all positive quotient terms
D. all of the above
28. Which one of the following is positive real function?
A.
B.
C.
D.
29. An RL impedance function is to be synthesised in second Foster form. The proper
function to be expanded is
A. Z(s) B. sZ(s)
C. 1/Z(s) D. Z(s)/s
30. The relation AD - BC = 1 where A, B, C, D are transmission parameters of a network is
valid for A. every network B. passive but not reciprocal network
C. passive and reciprocal network D. both active and passive networks
31. What are the ABCD parameters of the single elements circuit given below?
A. B.
C. D.
2
32. The polynomial P (s) = (s - 1) (s + 1) (s + 2) (s + 3) is
A. Hurwitz but not strictly Hurwitz B. not Hurwitz
C. strictly Hurwitz D. anti/Hurwitz
33. The circuit shown in figure is a
62. What must be used along with synchronous control inputs to trigger a change in the
flip flop?
A. 0
B. 1
C. Clock
D. Previous output
63. Which of the following majorly determines the number of emitters in a TTL digital
circuit?
A. Fan – in
B. Fan – out
C. Propagation delay
D. Noise immunity
64. What will be the output from a D flip – flop if the clock is low and D = 0?
A. 0
B. 1
C. No change
D. Toggle between 0 and 1
66. Which of the following gives the correct number of multiplexers required to build a
32 x 1 multiplexer?
A. Two 16 x 1 mux
B. Three 8 x 1 mux
C. Two 8 x 1 mux
D. Three 16 x 1 mux
68. Which of the following options correctly represents the consensus law of Digital
Circuits?
A. AB + AC + BC = AB + AC
B. AB + AC + BC = AB + AC
C. AB + AC + BC = AB + AC
D. AB + AC + BC = AB + AC
69. Which of the following points is not correct regarding an Ex – NOR gate in Digital
Electronics?
A. It is a one – bit comparator
B. It is a buffer
C. It is a one – bit inverter
D. It is a universal gate
70. A priority encoder has four inputs I0, I1, I2, and I3 where I3 has the highest priority
and I0 has the least priority. If I2 = 1, what will be the output?
A. 00
B. 01
C. 10
D. 11
71. What determines the output from the combinational logic circuit in Digital
Electronics?
A. Input signals from the past condition
B. Input signals at the present moment
C. Input signals from both past and present
D. Input signals expected in future
75. Which of the following options represent the synchronous control inputs in an S – R
flip flop?
a) S
b) R
c) Clock
d) Both S and R
76. What must be used along with synchronous control inputs to trigger a change in the
flip flop?
a) 0
b) 1
c) Clock
d) Previous output
78. A combinational logic circuit which generates a particular binary word or number is
A. Decoder
B. Multiplexer
C. Encoder
D. Demultiplexer
79. _____________ can be determined the Instability condition.
A. table
B. logic diagram
C. map
D. graph
INTRODUCTION TO COMPUTING
81. Which of the following is not a valid C++ data type?
a) int
b) char
c) string
d) float
82. What is the output of the following code snippet?
#include <iostream>
using namespace std;
int main()
{
int x = 10;
int y = 5;
int z = x / y;
cout << z;
return 0;
}
a) 2
b) 5
c) 10
d) Error
83. Which of the following is used to declare a constant variable in C++?
a) const
b) constexpr
c) constant
d) var
84. What is the correct syntax to define a class named "Rectangle" in C++?
a) class Rectangle {}
b) class Rectangle()
c) class Rectangle[]
d) class Rectangle {
85. What is the correct syntax to catch all types of exceptions in C++?
a) catch (...)
b) catch (Exception e)
c) catch (Exception& e)
d) catch (const Exception& e)
86. Which of the following is the correct way to include the header file "iostream" in a
C++ program?
a) #include <iostream.h>
b) #include "iostream.h"
c) #include <iostream>
d) #include "iostream"
87. What is the output of the following code snippet?
#include <iostream>
using namespace std;
int main()
{
int x = 5;
int y = x++;
cout << y;
return o;
}
a) 5
b) 6
c) 4
d) Error
88. What is the result of the expression 10 % 3 in C++?
a) 0
b) 1
c) 2
d) 3
89. Which of the following is used to terminate a switch case in C++?
a) break
b) continue
c) return
d) exit
90. What is the correct way to access the length of a string in C++?
a) str.size()
b) str.length()
c) str.capacity()
d) str.count()
91. What is the correct way to define a constant variable in C++?
a) const int x;
b) constant int x;
c) int constant x;
d) int const x;
92. What is the output of the following code snippet?
int x = 5;
int y = 2;
cout << x % y;
a) 0
b) 1
c) 2
d) 2.5
93. What is the correct way to declare a two-dimensional array in C++?
a) int arr[2][2];
b) int arr[][];
c) int arr[2];
d) int[] arr[];
94. 32. The invention of the integrated circuit (IC) is associated with which generation of
computers?
a) First generation
b) Second generation
c) Third generation
d) Fourth generation
95. The development of microprocessors occurred during which generation of
computers?
a) First generation
b) Second generation
c) Third generation
d) Fourth generation
96. The development of microprocessors occurred during which generation of
computers?
a) First generation
b) Second generation
c) Third generation
d) Fourth generation
97. Which control structure is most suitable when the number of iterations is not known
beforehand?
a) if-else
b) switch
c) for loop
d) do-while loop
98. Which control structure is used to select one of many code blocks to be executed
based on a given value?
a) if-else
b) switch
c) for loop
d) do-while loop
99. What is the purpose of the control unit in the CPU?
a) Execution of arithmetic operations
b) Storage of program instructions
c) Control of input/output devices
d) Coordination and execution of instructions
100. Which of the following components is responsible for executing instructions in a
computer system?
A) Arithmetic Logic Unit (ALU)
B) Control Unit (CU)
C) Memory Unit
D) Input/Output (I/O) Unit