You are on page 1of 4

1. Find the current through R2 of the given circuit.

A. 37.7 mA
B. 104 mA
C. 74 mA
D. 134 mA
2. In case of Inductive circuit, Frequency is ______________ to the current.
A. Inversely proportional
B. Directly proportional
C. Unrelated
D. Much greater than
3. What happens to the quality factor when the bandwidth increases?
A. Decreases
B. Increases
C. Remains the same
D. Becomes zero
4. What are the advantages of 3 phase circuits over single phase circuits?
A. More efficient
B. Generation, transmission and distribution of 3 phase power is cheaper
C. Uniform torque production occurs
D. all
5. Which of the following is the main source of real power losses incurred in transmission
lines?
A. Resistance
B. Inductance
C. Capacitance
D. All
6. One of the following is mostly employed to cover peak load on the system
A. Thermal power plant
B. Pumped storage hydropower plant
C. Wind power plant
D. All
7. Skin Effect is occurs in
A. AC
B. DC
C. Both AC and DC
D. None of the above
8. Power factor improvement can be possible by
A. Inductor
B. Capacitor
C. Both Inductor and Capacitor
D. None of the above
9. Power Plant Efficiency depend upon
A. power factor
B. diversity factor
C. losses
D. all of the above
10. Synchronous Motor is used in power plant to improve
A. power factor
B. diversity factor
C. demand factor
D. none of the above

11. A Java class can contain


a. Variables c. Inner class
b. Methods d. All
12. The instance of a class is known as ___________
a. Behavior
b. Object
c. Syntax
d. Method
13.  A technique of diverting the processor from the execution of the current program so that it may
deal with some event that has occurred is known as _________
a. Interrupt
b. Method invoking
c. Encoding
d. Decoding
14. For the code given below which of the following is correct

class Test
{
public static void main(String [] args)
{
Test p = new Test();
p.start();
}

void start()
{
boolean b1 = false;
boolean b2 = fix(b1);
System.out.println(b1 + " " + b2);
}

boolean fix(boolean b1)


{
b1 = true;
return b1;
}
}
a. true true
b. false true
c. true false
d. false false }

You might also like