Which type of device is JFET?

Which type of device is JFET? Correct Answer Voltage controlled device

Concept:

  • JFET stands for Junction Field Effect Transistor.
  • A field effect transistor is a voltage controlled device i.e. the output characteristics of the device are controlled by input voltage. There are two basic types of field effect transistors:

  1. Junction field effect transistor (JFET)

  2. Metal oxide semiconductor field effect transistor (MOSFET)

  • A JFET is a three terminal semiconductor device in which current conduction is by one type of carrier i.e. electrons or holes.
  • The current conduction is controlled by means of an electric field between the gate and the conducting channel of the device. To control the conduction of current from the source to the drain, the gate voltage must be more negative than the source voltage.
  • JEFTs are futher divided into two types that n-channel JEFT and p-channel JEFT. The three leads of a JEFT are labeled source, gate and drain. 

 

JFET is a three-terminal voltage controlled device. The voltage applied across the gate is used to control the current through the drain.

[ alt="121112" src="//storage.googleapis.com/tb-img/production/19/02/121112.PNG" style="width: 274px; height: 222px;">

The gate to source voltage changes the channel width between two p regions, which ultimately controls the current flowing between drain and source terminals.

[ alt="26 June 1" src="//storage.googleapis.com/tb-img/production/19/08/26%20June_1.png" style="width: 160px; height: 46px;">

FET

BJT

Unipolar device: Uses only one type of charge carrier

Bipolar device: Uses both electron and hole

Voltage-controlled device: voltage between gate and source control the current through the device.

Current-controlled device: Base current control the amount of collector current

High input resistance

Low input impedance

Slower in switching

Faster in switching

Related Questions

Assertion (A): A JFET can be used as a current source.Reason (R): In beyond pinch off region the current in JFET is nearly constant.
Assertion (A): A JFET can be used as a current source.
Reason (R): In beyond pinch off region the current in JFET is nearly constant.
Consider the following grammar (that admits a series of declarations, followed by expressions) and the associated syntax directed translation (SDT) actions, given as pseudo-code: P → D* E* D → int ID {record that ID.lexeme is of type int} D → bool ID { record that ID.lexeme is of type bool} E → E1 + E2 {check that E1.type = E2.type = int; set E.type := int} E → !E1 {check that E1.type = bool; set E.type := bool} E → ID {set E.type := int} With respect to the above grammar; which one of the following choices is correct?