1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
tatyana61 [14]
3 years ago
5

What’s a pnp transitor?

Engineering
2 answers:
Dafna1 [17]3 years ago
7 0

Answer:

A transistor is of two types: PNP and NPN

Explanation:

A transistor is current controlled device in which the current flow by the movement of the electrons and wholes.

The NPN and PNP transistor are the types of the BJT (Bipolar junction transistor) that have two uses i.e switching and amplification.

A PNP transistor have three junction i.e P, N and P where the base is connected to the N - junction. The P junction is high in number of wholes and N- junction have high numbers of electrons.

In the PNP transistor the voltage is provided to the emitter and base terminal with base connected to the negative terminal of the voltage source and emitter connected to its positive terminal. The direction of the flow of the current is from emitter to collector whenever a significant voltage is provided to the emitter base junction.  

Damm [24]3 years ago
6 0

Answer:

PnP transistor is a current controlled device. It has two crystal diodes connected back to back. The left side of the diode is known as the emitter-base diode and the other side which is the right side of the diode is known as the collector-base diode.

You might be interested in
A machine used to shred cardboard boxes for composting has a first cost of $10,000, an AOC of $7000 per year, a 3-year life, and
borishaifa [10]
Annual Payment where F is accumulated sum of amount, n is number of years and i is annual rate of interest. The standard notation equation is in the image since i can’t type it-
6 0
3 years ago
The section of the area to be examined is shown circumscribed by broken lines with circles at
Aloiza [94]

This question is about Circle Geometry. it evaluates connected and broken lines with respect to circles.

<h3>What is Circle Geometry?</h3>

This refers to the body of knowledge in mathematics that has to do with the various problems associated with the Circle.

In real-world scenarios, circle geometry is used in technologies involving:

  • Camera lenses
  • Circular Architectural structures
  • Steering Wheels
  • Buttons etc.

Learn more about Circle Geometry at:
brainly.com/question/24375372

3 0
2 years ago
Air flows through a 0.25-m-diameter duct. At the inlet the velocity is 300 m/s, and the stagnation temperature is 90°C. If the M
Naddika [18.5K]

Answer:

a. 318.2k

b. 45.2kj

Explanation:

Heat transfer rate to an object is equal to the thermal conductivity of the material the object is made from, multiplied by the surface area in contact, multiplied by the difference in temperature between the two objects, divided by the thickness of the material.

See attachment for detailed analysis

7 0
3 years ago
An 1,840 W toaster, a 1,420 W electric frying pan, and a 70 W lamp are plugged into the same outlet in a 15 A, 120 V circuit. (T
Viktor [21]

Answer:

A)

Current drawn by toaster = 15.33 A

Current drawn by electric frying pan = 11.83 A

Current drawn by lamp = 0.58 A

B)

The fuse will definitely blow up since the current drawn by three devices (27.74 A) is way higher than 15 A fuse rating.

Explanation:

There are three devices plugged into the same outlet.

Toaster = 1840 W

Electric frying pan = 1420 W

Lamp = 70 W

Since the three devices are connected in parallel therefore, the voltage across them will be same but the current drawn by each will be different.

A) What current is drawn by each device?

The current flowing through the device is given by

I = P/V

Where P is the power and V is the voltage.

Current drawn by toaster:

I = 1840/120

I = 15.33 A

Current drawn by electric frying pan:

I = 1420/120

I = 11.83 A

Current drawn by lamp:

I = 70/120

I = 0.58 A

B) Will this combination blow the 15-A fuse?

The total current drawn by all three devices is

Total current = 15.33 + 11.83 + 0.58

Total current = 27.74 A

Therefore, the fuse will definitely blow up since the current drawn by three devices (27.74 A) is way higher than 15 A fuse rating.

5 0
4 years ago
For this problem, you may not look at any other code or pseudo-code (even if it is on the internet), other than what is on our w
sergiy2304 [10]

Answer:

(a)

(i) pseudo code :-

current = i

// assuming parent of root is -1

while A[parent] < A[current] && parent != -1 do,

if A[parent] < A[current] // if current element is bigger than parent then shift it up

swap(A[current],A[parent])

current = parent

(ii) In heap we create a complete binary tree which has height of log(n). In shift up we will take maximum steps equal to the height of tree so number of comparison will be in term of O(log(n))

(b)

(i) There are two cases while comparing with grandparent. If grandparent is less than current node then surely parent node also will be less than current node so swap current node with parent and then swap parent node with grandparent.

If above condition is not true then we will check for parent node and if it is less than current node then swap these.

pseudo code :-

current = i

// assuming parent of root is -1

parent is parent node of current node

while A[parent] < A[current] && parent != -1 do,

if A[grandparent] < A[current] // if current element is bigger than parent then shift it up

swap(A[current],A[parent])

swap(A[grandparent],A[parent])

current = grandparent

else if A[parent] < A[current]

swap(A[parent],A[current])

current = parent

(ii) Here we are skipping the one level so max we can make our comparison half from last approach, that would be (height/2)

so order would be log(n)/2

(iii) C++ code :-

#include<bits/stdc++.h>

using namespace std;

// function to return index of parent node

int parent(int i)

{

if(i == 0)

return -1;

return (i-1)/2;

}

// function to return index of grandparent node

int grandparent(int i)

{

int p = parent(i);

if(p == -1)

return -1;

else

return parent(p);

}

void shift_up(int A[], int n, int ind)

{

int curr = ind-1; // because array is 0-indexed

while(parent(curr) != -1 && A[parent(curr)] < A[curr])

{

int g = grandparent(curr);

int p = parent(curr);

if(g != -1 && A[g] < A[curr])

{

swap(A[curr],A[p]);

swap(A[p],A[g]);

curr = g;

}

else if(A[p] < A[curr])

{

swap(A[p],A[curr]);

curr = p;

}

}

}

int main()

{

int n;

cout<<"enter the number of elements :-\n";

cin>>n;

int A[n];

cout<<"enter the elements of array :-\n";

for(int i=0;i<n;i++)

cin>>A[i];

int ind;

cout<<"enter the index value :- \n";

cin>>ind;

shift_up(A,n,ind);

cout<<"array after shift up :-\n";

for(int i=0;i<n;i++)

cout<<A[i]<<" ";

cout<<endl;

}

Explanation:

8 0
3 years ago
Other questions:
  • A groundwater contains the following cations (expressed as the cation):
    5·2 answers
  • Go online and search for information about companies that have been harmed or bankrupted by a disaster. Choose one such company
    11·1 answer
  • Convert mechanical energy into electric energy. What can he use?
    13·1 answer
  • There are two questions about SolidWorks.
    9·1 answer
  • What structure was created to help prevent shipwrecks?
    9·1 answer
  • Can someone please help me with this. Thank you. Ill mark you as brainly.
    11·1 answer
  • Diffrerentiate y=cos^{4} (3x+1)
    5·1 answer
  • Technician A says that the distributor cap provides a connection point between the rotor and each individual cylinder plug wire.
    10·1 answer
  • A thin 20-cm*20-cm flat plate is pulled at 1m/s horizontally through a 4-mm thick oil layer sandwiched between two stationary pl
    15·1 answer
  • How many shift pulses would be required to serially shift the contents of one five-stage register to another five-stage register
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!