Skip to main content

Zener Diode



Zener Diode :-


                   A zener diode is a type of diode that permits current not only in the forward direction like a normal diode, but also in the reverse direction if the voltage is larger than the breakdown voltage known as "Zener knee voltage" or "Zener voltage

Purpose of zener diode :-

     The functions of a Zener Diode include operating the breakdown region. It is also known as voltage-regulator diodes. They maintain a constant output voltage.





Varactor diode :-

                                Varactor diode are also known as tuning diode It is a kind of type diode whose capacitance varies as a function of the voltage applied across its terminals.
Purpose of Varactor diode :-
                               They are used in frequency multipliers , also used as voltage controlled capacitors



    Optical diode

Optical diode, is an optical component which allows the transmission of light in only one direction.


Application of optical diode

Optical diode is mainly used in the main component, the Faraday rotator.




PIN DIODE                                                                                     
A PIN diode is a diode with a wide, lightly doped 'near'  intrinsic semiconductor region between a p-type semi-conductor and an n-type semiconductor region. The p-type and n-type regions are typically heavily doped because they are used for ohmic contacts.

Applications


PIN diodes are useful as RF switches, attenuators, and photodetectors.




Step recovery diode


Step recovery diode (SRD) is a semiconductor junction diode having the ability to generate extremely short pulses




 

Tunnel Diode 

This diode is a two terminal device. The concentration of dopants in both p and n region is very high. It is about 1024 - 1025 m-3 the p-n junction is also abrupt. For this reasons, the depletion layer width is very small. In the current voltage characteristics of tunnel diode, we can find a negative slope region when forward bias is applied. Quantum mechanical tunneling is responsible for the phenomenon and thus this device is named as tunnel diode.

PURPOSE

The application of transistors is very high in frequency range are hampered due to the transit time and other effects. Many devices use the negative conductance property of semi-conductors for high frequency applications. Tunnel diode is one of the most commonly used negative conductance devices. It is also known as Esaki diode after L. Esaki for his work on this effect.

APPLICATION

Tunnel Diode Oscillator


Tunnel diode can make a very stable oscillator circuit when they are coupled to a tuned circuit or cavity, biased at the center point of negative resistance region. Here is an example of tunnel diode oscillatory circuit.









Comments

Popular posts from this blog

Software Development & Fundamentals Microsoft Certification 98-361 TEST BANKS LESSON 4

Lesson 4: Understanding Web Applications 1. You are developing a Web page for a medium-sized business. You want to separate the formatting and layout of the page from its content. Which of the following technologies should you use to define the formatting and layout of the page content? a) Cascading Style Sheets (CSS) b) Hypertext Markup Language (HTML) c) JavaScript d) Hypertext Transmission Protocol (HTTP) Answer: a Difficulty: Medium Section Reference: Understanding Web Page Development Cascading Style Sheets (CSS) help you define the formatting and layout of a page’s content and store that separately from the content. HTML is a text-based language that uses various markup tags that describe how content is displayed. JavaScript is scripting language that you use to add functionality and behavior to a Web page. HTTP is the underlying communication protocol used by the World Wide Web. 2. You want to display an image on your Web page. The image is stored on a...

Software Development & Fundamentals Microsoft Certification 98-361 TEST BANKS LESSON 1

Lesson 1: Introduction to Programming 1. You need to gain a better understanding of the solution before writing the program. You decide to develop an algorithm that lists all necessary steps to perform an operation in the correct order. Any technique that you use should minimize complexity and ambiguity. Which of the following techniques should you use? a) flowchart b) decision table c) C# program d) A paragraph in English Answer: a Difficulty: Medium Section Reference: Introducing Algorithms A flowchart is a graphical representation of an algorithm that lists, in the correct order, all the necessary steps to perform the operation. A flowchart is simple to create and understand and is not ambiguous. 2. Which of the following languages is not considered a high-level programming language? a) C# b) Visual Basic c) Common Intermediate Language d) C++ Answer: c Difficulty: Easy Section Reference: Introducing C# C#, Visual Basic, and C++ are all h...

Software Development & Fundamentals Microsoft Certification 98-361 TEST BANKS LESSON 2

Lesson 2: Introduction to Object-Oriented Programming 1. You are developing code for a method that calculates the discount for the items sold. You name the method CalculateDiscount . The method defines a variable, percentValue of the type double . You need to make sure that percentValue is accessible only within the CalculateDiscount method. What access modifier should you use when defining the percentValue variable? a) private b) protected c) internal d) public Answer: a Difficulty: Medium Section Reference: Understanding Access Modifiers The private modifier restricts the access to the class in which the member was defined. The protected modifier restricts the access to the containing class and to any class derived directly or indirectly from the containing class. The internal modifier restricts the access to the code in the same assembly. The public modifier does not restrict access. 2. You are developing code that defines an InitFields method. Th...