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
Sav [38]
3 years ago
13

Q1. In electronic circuits it is not unusual to encounter currents in the microampere range. Assume a 35 μA current, due to the

flow of electrons. What is the average number of electrons per second that flow past a fixed reference cross section that is perpendicular to the direction of flow? (5 Points)
Engineering
1 answer:
Anit [1.1K]3 years ago
7 0

Answer:

2.9*10^14 electrons

Explanation:

An Ampere is the flow of one Coulomb per second, so 35 μA = is 35*10^-6 C per second.

An electron has a charge of 1.6*10^-19 C.

35*10^-6 / 1.6*10^-19 = 2.9*10^14 electrons

So, with a current o 35 μA you have an aevrage of 2.9*10^14 electrons flowing past a fixed reference cross section perpendicular to the direction of flow.

You might be interested in
A 7-hp (shaft) pump is used to raise water to an elevation of 15 m. If the mechanical efficiency of the pump is 82 percent, dete
Natali [406]

The maximum volume flow rate of water is determined as 0.029 m³/s.

<h3>Power of the pump</h3>

The power of the pump is watt is calculated as follows;

1 hp = 745.69 W

7 hp = ?

= 7 x 745.69 W

= 5,219.83 W

<h3>Mass flow rate of water</h3>

η = mgh/P

mgh = ηP

m = ηP/gh

m = (0.82 x 5,219.83)/(9.8 x 15)

m = 29.12 kg/s

<h3>Maximum volume rate</h3>

V = m/ρ

where;

  • ρ is density of water = 1000 kg/m³

V = (29.12)/(1000)

V = 0.029 m³/s

Learn more about volume flow rate here: brainly.com/question/21630019

#SPJ12

5 0
2 years ago
If superheated water vapor at 30 MPa iscooled at ​constant pressure​, it will eventually become saturated vapor, and with suffic
nirvana33 [79]

Answer:

False.

Explanation:

False. The pressure is above pressure at critical point (22.064 MPa.), the limit where pressure can prevent boiling.

3 0
3 years ago
melinda is using a rectangular brass bar in a sculpture she is creating. the brass bar has a length that is 4 more than 3 times
lawyer [7]

Answer:

180 x 60 inches

Width = 60 inches

Length = 180 inches

Explanation:

Given

Let L = Length

W = Width

P = Perimeter

Length = 3 * Width

L = 3W

Perimeter of Brass = 480 inches

P = 480

Perimeter is given as 2(L + W);

So, 2 (L + W) = 480

L + W = 480/2

L + W = 240

Substitute 3W for L; so,

3W + W = 240

4W = 240

W = 240/4

W = 60 inches

L = 3W

L = 3 * 60

L = 180 inches

6 0
3 years ago
Read 2 more answers
8.19 - Airline Reservations System (Project Name: Airline) - A small airline has just purchased a computer for its new automated
e-lub [12.9K]

Answer:

The App is written in C++ language using dev C++.

Explanation:

/******************************************************************************

You can run this program in any C++ compiler like dev C++ or any online C++ compiler

*******************************************************************************/

#include <iostream>

using namespace std;

class bookingSeat// class for airline reservation system

{

  private:

   

   

  bool reserveSeat[10];// 10 seats (1-5) for first class and 6-10 for economy class

  int firstClassCounter=0;//count first class seat

  int economyClassCounter=5;//count economy class seat

  char seatPlacement;/* switch between economy and first clas seat----- a variable for making decision based on user input*/

  public:  

  void setFirstClassSeat()//

  {

      if(firstClassCounter<5)// first class seat should be in range of 1 to 5

      {

          reserveSeat[firstClassCounter]=1; /*set first class seat..... change index value to 1 meaning that it now it is reserved*/

          cout<<"Your First Class seat is booked and your seat no is "<<firstClassCounter+1; //display seat number reserved

          firstClassCounter++; //increament counter

      }

      else//in case seats are ful

      {

          cout<<"\nSeats are full";

          if(economyClassCounter==10 && firstClassCounter==5)

          {

              cout<<"\n Next flight leaves in 3 hours.";

          }

          else

          {

              cout<<"\nIt’s acceptable to be placed to you in the first-class section  y/n ";//take input from user

              cin>>seatPlacement;//user input

              if(seatPlacement=='y')//if customer want to reserve seat in first class

              {

                  setEconomyClassSeat();// then reserve first class seat

              }

              else

              {

                  cout<<"\n Next flight leaves in 3 hours.";

               }

               

          }

      }

       

  }

  void setEconomyClassSeat()//set economy class seat

  {

    if(economyClassCounter<10)//seat ranges between 6 and 10

      {

          reserveSeat[economyClassCounter]=1;// reserve economy class seat

          cout<<"Your Economy class seat is booked and your seat no is "<<economyClassCounter+1;//display reservation message about seat

          economyClassCounter++;//increament counter

      }

      else// if economy class seats are fulled

      {

          cout<<"\nSeats are full";

          if(economyClassCounter==10 && firstClassCounter==5)//check if all seats are booked in both classes

          {

              cout<<"\n Next flight leaves in 3 hours.";

          }

          else

          {

              cout<<"\nIt’s acceptable to be placed to you in the first-class section  y/n ";//take input from user

              cin>>seatPlacement;//user input

              if(seatPlacement=='y')//if customer want to reserve seat in first class

              {

                  setFirstClassSeat();// then reserve first class seat

              }

              else

              {

                  cout<<"\n Next flight leaves in 3 hours.";

               }

               

          }

      }

  }

   

   

};

int main()

{   int checkseat=10;// check seat

   int classType;//class type economy or first class

   bookingSeat bookseat;//object declaration of class bookingSeat

   while(checkseat<=10)//run the application until seats are fulled in both classes

   {

       cout<<"\nEnter 1 for First Class and 2 for Economy Class ";

       cin>>classType;//what user entered

       switch (classType)//decide which seat class to be reserved  

       {

           case 1://if user enter 1 then reserve first class seat

           bookseat.setFirstClassSeat();

           break;

           case 2://if user enter 2 then reserve the economy class seat

           bookseat.setEconomyClassSeat();

           

       }

       

   }

   

   return 0;

}

8 0
3 years ago
What is the gear ratio of the given train
Olin [163]

Answer:

1/4

Explanation:

.......................

7 0
3 years ago
Other questions:
  • Technician A says that a magnetic field can be created by current flow. Technician B says that current can be induced by moving
    5·1 answer
  • Sketch the velocity profile for laminar and turbulent flow.
    15·1 answer
  • Mobility refers to the ability to?
    12·1 answer
  • What is government role in the modern American version of capitalism
    11·1 answer
  • Three bars each made of different materials are connected together and placed between two walls when the temperature is 12 oC. D
    9·1 answer
  • Some_____
    10·1 answer
  • A parallel circuit has a resistance of 280 and an inductive reactance of 360 02. What's this circuit's impedance?
    6·1 answer
  • EverFi future smart pie chart
    11·1 answer
  • Ferroconcrete is reinforced concrete that combines concrete and ________. A. Lead c. Copper b. Iron d. Aluminum.
    6·1 answer
  • Read the passage.
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!