SUBMIT CONTENT
Home
SECMPN
Advantages of Transistor's
SECMPN
Advantages of Transistor's
By
Unknown
At 22:36
0
Share on Facebook
Share on Twitter
The transistor are more desirable than the vacuum tube because of their following advantages:
1. Small size light weight and ruggedness.
2. Higher Efficiency.
3. Do not require any filament power.
4. Long life.
5. Operate at low voltage.
Fig. Transistor
Share on Facebook
Share on Twitter
You Might Also Like
Post a Comment
Newer Post
Home
Subscribe to:
Post Comments ( Atom )
Popular Posts
Develop a java program to create a class "Book" having data members 'author', 'title', & 'publisher'. Derive a class "BookInfo" having data members 'price', 'stock position' and a method 'show()'. Initialize and display the information for 3 objects of "BookInfo".
class Book { String author, title, publisher; Book(String a, String t, String p) { author = a; title = t; publisher = p; ...
Develop a Java program to display the content of a file supplied as command line argument.
import java.io.*; class Exp11_1 { public static void main(String[] args) { FileInputStream in = null; try { in = new FileInput...
Develop a program to create a class "Fruits" with the data members 'countable' (values=Yes/No) and a method 'display()'. Derive a class "Watermelon" having data members 'price', 'quantity' and method 'show()'. Initialize & display the information for 3 objects of "Watermelon".
class Fruits { boolean countable; Fruits(boolean c) { countable = c; } void display() { System.out.println("Countab...
The Unbiased Transistor
For an unbiased transistor no external power supplies are connected to it. • We have already seen the formation of a depletion region in ...
Develop a program to create a class "Bird" with the data members 'category' and a method 'show()'. Derive a class "Parrot" with the data members 'no_of_parrots' and a method 'show()'. Initialize using constructor and display the information.
class Bird { String category; Bird(String c) { category = c; } void show() { System.out.println("Category: " +...
Write a program that takes two comma - separated list of integers as input.for each integer N in the first list. The program needs to find count of its occurrence called C in the second list. The program should print the N-C for each integer
Note This Program Is written in C# class Program { static void Main(string[] args) { string list1, list2; ...
Develop the Java program to print the multiples of 5 between 20 and 70
class Multi { public static void main(String[] args) { for(int i = 20; i<=70;i+=5) System.out.println(i); /* Or for(...
Define a package named 'useFul' with a class names 'UseMe' having following methods:
1) area() -> To calculate the area of given shape 2) salary() -> To calculate the salary given basic salary, da, hra. 3) p...
Develop a Java program to display the name of the players, who played more test matches. Given the names and numbers of test matches played of three players.
class Players { public static void main(String[] args) { String name[] = {"Rahul Dravid", "Sachin Tendulkar", ...
While Loop Statement - C Language Tutorial
Description While loop statement is used when programmer doesn't knows how many times the code will be executing before starting th...
Powered by
Blogger
.
Featured Post
Write a program that takes two comma - separated list of integers as input.for each integer N in the first list. The program needs to find count of its occurrence called C in the second list. The program should print the N-C for each integer
Copyright ©
LetML.
Blogger Templates
Designed by
OddThemes
Post a Comment