Operational Electronics Engineering Interview Preparation Guide
Download PDF

Electronics Engineering frequently Asked Questions in various Electronics Engineering job Interviews by interviewer. Get preparation of Electronics Engineering job interview questions.

185 Electronics Engineering Questions and Answers:

Table of Contents:

Operational  Electronics Engineering Job Interview Questions and Answers
Operational Electronics Engineering Job Interview Questions and Answers

1 :: Explain what is the Tri State of a Signal?

In digital ciruit, the gate output can be only high or low. In highstate the output source current at a minimum voltage, greater than ~2.8V if load(fan out ) is proper. In low state it will sink current at max output voltage less than ~0.8V. Some times it is derirable to have a state output both not high or low. with neither sinking or sourcing (with high output impedance). This is called tristate. Tristate output cannot change output condition of succeding logic gates, unless tristate is disabled.

2 :: Explain in wave guides TEM wave propagation is not exit, give the physical interpretation?

Please share your answers.

3 :: Why the input resistance of an ideal OP-AMP is infinite and output resistance is zero?
secondly, how can we measure these resistances(input and output) in case of an ideal OP-AMP and Real OP-AMP in the following conditions when
1- load is not connected.
2- load is connected.

Ideal OP-AMP is a power ful concept.

If one goes through the history of amplifying devices, it becomes clear that less it loads the previous stage, better the output signal. ie. it is a trend toward higher and higher input impedances.

Also it is better to maintain the signal level irrespective of the LOAD connected at the ouput. Lesser the output impedance, less the signal amplitude reduction when load is connected. ie. it is a trend toward lower and lower output impedances.

As ideal opamp is a concept , by virtue it has zero output impedance and infinite input impedance, and they are not physically measurable but has to be taken for granted for the use in theoritical analysis.

To measure input resistance, of non ideal opamp, connect a known source at the input and give a signal (within Specifications) through a current meter of sufficient precision. Input voltage by current gives the input impedance.

To measure input resistance, of non ideal opamp, connect a known source at the input and give a signal (within Specifications) through a current meter of sufficient precision. Input voltage by current gives the input impedance.

To measure output resistance, of non ideal opamp, connect a known source at the input such that the output does not saturate and connect a load (within Specifications ) through a current meter of sufficient precision and meaure the output voltage. Output voltage by current gives the output impedance.

Please refer application notes by device manufacturers freely availble in internet for more precise and practical solutions.

4 :: What are the differences between voltage and current controlled devices?

In any (electronic) device controlling parameter is current it is called current controlled device. eg bilpolar transistor- output current is a function of base current.

In any (electronic) device controlling parameter is voltage it is called voltage controlled device. eg Field effect transistor- output current is a function of gate voltage.

It depends on the inherent physical mechanism which defines the primary (independent) controlling parameter.

5 :: What is the difference between Silicon Controlled Switch (SCS) and Gate Turn-off Switch (GTO)?

SCS is nothing but the switch (sillicon controlled switch SCR),but GTO is one of the turn off method in SCR.if any other answer for this question please forward me too the answer.

7 :: Explain how many type of resistor are there in diode?

They are two types one is forward resistance

1.Forward resistance
2.Reverse
resistance

1.Forward resistance
This is the resistance offered in forward bias condition of the diode.
It is calculated by with the help of graph for voltage and current characteristic.

2.Reverse resistance
This resistance is offered in the reverse bias condition of the diode. It is also calculated by the same method.

8 :: What is Edison Effect?

In a conducting material, the electrons are governed by Fermi-Dirac statistics. The baseline electron energy is the Fermi Energy*, and at low temperatures the electrons all exist at or below this level. As temperature is increased, so the distribution function for the electrons develops a high energy 'tail'. Some of these electrons have sufficient energy to pass over the surface potential barrier between the material and the vacuum. This process of increasing the temperature of a bulk material to increase the number of electrons which can leave the material is called thermionic emission or Edison effect.

9 :: Tell me what are the components has to be done in FPGA board (Altera)?

Please share your answers.

10 :: What is function of ALE in 8085 microprocessor?

AlE stands for the address latch enable
it 's working is that it differentiate the address and data bus in microprocessor.
when it is high it select address bus .
when it is low it select data bus.

11 :: Explain what is meant by saying at what current is transistor biased?

Bias current of a transistor is the preset DC current when no input voltage signal is applied to it.

13 :: What is the difference between Power Amplifier and Voltage Amplifier?

In power amplifier feedback employed is current feedback and In voltage amplifier, voltage feedback is employed.

14 :: Explain how to manufacture the CMOS inverter?

by connecting a pmos transistor and cmos transistor in series and take the output from middle of the connection

15 :: Why do we use two ground pins in the pin diagram of 8086?

There are basically two reasons for doing so, one is to remove GROUND BOUNCE one more reason is circuit complexity demands a large amount of current flowing through the circuits, and multiple grounds help in dissipating the accumulated heat so that device will be safe.

16 :: Explain difference between DCS & PLC & SCADA?

PLC stands for Programmable Logic ControllerDCS for Data control SystemSCADA for Supervisory Control And Data Acquisition SCADA involves supervision by a user, in most cases the plant controller.Whereas PLC is the means by which he performs the function of SCADA.DCS on the other hand stand only to control the system and not to log any datain the process of controlling.

18 :: Tell us Design gray to binary code converter?

Binary of 1011 -
1101

Steps

1. write the msb as itseif (here retain fourth bit say 1 ) and it will be the
msb of binary.

2. add the msb of binary (say 1) with next bit of gray (say 0 ie third bit )and
the sum (1) becomes next bit of binary. note: if any carry generated just discard
it.

3. previous sum (1) is again added with next bit of gray(1 ie second bit) and
this sum(0) becomes second bit of binary .

4. previous sum (0) is again added with next bit of gray (1 ie first bit) and
the sum (1) becomes first bit of binary.

19 :: Explain what is the meaning of Tristate Signal in Electronics?

An active digital line in case of multiplexed buses has three states. high & low when controlled, and tristated when not controlled or when it is free to be used by other controller. this state where in it's level is not determinable or when it is floating is called tristate.

21 :: Explain why BJT is known as current controlled device and FET is known as voltage controlled device?

BJT as current controlled device -
Base current controls the collector an emitter currents

FET as voltage controlled device-
Field of p or n region decides width of conducting channel in n type or p type FET

22 :: How many 2:1 multiplexers do we need to make a 2 input XOR gate?

A xor B= A'B + AB'

hence, if A=0, then the output is B
if A=1, then the output is B'

so we need only ONE mux (2:1), which is controlled by A, and its inputs are B --> mux_in_0
B' --> mux_in_1

23 :: What is hybrid parameter?

the h-parameter or the hybrid parameters of a transistor helps us to analyse the amplifying action of transistor for small signal .

24 :: How to convert a binary number into BCD number directly and vice-versa, without converting it into any other number system?

It depends on the range. An algorithm can be used.

For a number in the range of 0 to 19 (decimal), the following algorithm can be used:

if a<10
a_BCD=a;
else if a<20
a_BCD=a+0x06;
end

for example if a=0x0E, then a_BCD=0x0E+0x06=0x14, which is the BCD representation of 0x0E.

This could be generalized for a number in the range of 0 to 99: a_BCD=a+n*0x06, where 10*n<=a<10*(n+1).

25 :: Explain differences between microprocessor and micro controller?

The microprocessor is the integration of a number of useful functions into a single IC package.

These functions are: The ability to execute a stored set of instructions to carry out user defined tasks. The ability to be able to access external memory chips to both read and write data from and to the memory.

Basically, a microcontroller is a device which integrates a number of the components of a microprocessor system onto a single microchip.

So a microcontroller combines onto the same microchip : The CPU core Memory (both ROM and RAM) Some parallel digital I/O Essentially, a microcontroller is obtained by integrating the key components of microprocessor,RAM, ROM, and Digital I/O onto the same chip die. Modern microcontrollers also contain a wealth of other modules such as Serial I/O, Timers, and Analogue to Digital Converters.
Electronics Engineering Interview Questions and Answers
185 Electronics Engineering Interview Questions and Answers