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
Oksanka [162]
3 years ago
14

13- Convert the following numbers to the indicated bases. List all intermediate steps.

Engineering
1 answer:
nikklg [1K]3 years ago
6 0

Answer:

Following are the conversion to this question:

Explanation:

In point (a):

\to \frac{36459080}{8} = 4557385   + \ \ \ \ \ \ \ \ \ \frac{0}{8}\\\\\to \frac{4557385}{8} = 569673   + \ \ \ \ \ \ \ \ \ \frac{1}{8}\\\\\to \frac{569673}{8} = 71209+ \ \ \ \ \ \ \ \ \ \frac{1}{8}\\\\\to \frac{71209}{8}=8901+\ \ \ \ \ \ \ \ \ \ \ \frac{1}{8}\\\\\to \frac{8901}{8}=1112+ \ \ \ \ \ \ \ \ \  \ \ \ \frac{5}{8}\\\\\to \frac{1112}{8}=139+ \ \ \ \ \ \ \ \ \ \ \frac{0}{8}\\\\\to \frac{139}{8}=17+ \ \ \ \ \ \ \ \ \ \ \frac{3}{8}\\\\\to \frac{17}{8}=2+ \ \ \ \ \ \ \ \ \ \ \ \ \frac{1}{8}\\\\

\to \frac{2}{8}=0+ \ \ \ \ \ \ \ \ \ \frac{2}{8}\\\\ \bold{(36459080)_{10}=(213051110)_8}

In point (b):

\to \frac{20960032010}{16} = 13100020+ \ \ \ \ \ \ \ \ \ \frac{0}{16}\\\\\to \frac{13100020}{16} = 818751+ \ \ \ \ \ \ \ \ \ \frac{4}{16}\\\\\to \frac{818751}{16} = 51171+ \ \ \ \ \ \ \ \ \ \frac{15}{16}\\\\\to \frac{51171}{16}=3198+\ \ \ \ \ \ \ \ \ \ \ \frac{3}{16}\\\\\to \frac{3198}{16}=199+ \ \ \ \ \ \ \ \ \  \ \ \ \frac{14}{1}\\\\\to \frac{199}{16}=12+ \ \ \ \ \ \ \ \ \ \ \frac{7}{16}\\\\\to \frac{12}{16}=0+ \ \ \ \ \ \ \ \ \ \ \frac{12}{16}\\\\ \bold{(20960032010)_{10}=(C7E3F40)_{16}}

In point (c):

\to (2423233303003040)_s=(88757078520)_{10}\\\\\to \frac{88757078520}{25}= 3550283140+ \ \ \ \ \ \ \ \ \ \frac{20}{25}\\\\ \to \frac{3550283140}{25}= 142011325+ \ \ \ \ \ \ \ \ \ \frac{15}{25}\\\\\to \frac{142011325}{25}= 5680453+ \ \ \ \ \ \ \ \ \ \frac{0}{25}\\\\\to \frac{5680453}{25}= 227218+ \ \ \ \ \ \ \ \ \ \frac{3}{25}\\\\\to \frac{227218}{25}= 9088+ \ \ \ \ \ \ \ \ \ \frac{18}{25}\\\\\to \frac{9088}{25}= 363+ \ \ \ \ \ \ \ \ \ \frac{13}{25}\\\\

\to \frac{363}{25}= 14+ \ \ \ \ \ \ \ \ \ \frac{13}{25}\\\\\to \frac{14}{25}= 0+ \ \ \ \ \ \ \ \ \ \frac{14}{25}\\\\\bold{(2423233303003040)_s=(EDDI30FK)_{25}}

Symbols of Base 25 are as follows:

0, 1, 2, 3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,I,J,K,L,M,N, \ and \ O

You might be interested in
A 150 MVA, 24 kV, 123% three-phase synchronous generator supplies a large network. The network voltage is 27 kV. The phase angle
Aleks04 [339]

Answer:

the generator induced voltage is 60.59 kV

Explanation:

Given:

S = 150 MVA

Vline = 24 kV = 24000 V

X_{s} =1.23(\frac{V_{line}^{2}  }{s} )=1.23\frac{24000^{2} }{1500} =4723.2 ohms

the network voltage phase is

V_{phase} =\frac{V_{nline} }{\sqrt{3} } =\frac{27}{\sqrt{3} } =15.58kV

the power transmitted is equal to:

|E|=\frac{P*X_{s} }{3*|V_{phase}|sinO } ;if-O=60\\|E|=\frac{300*4.723}{3*15.58*sin60} =34.98kV

the line induced voltage is

|E_{line} |=\sqrt{3} *|E|=\sqrt{3} *34.98=60.59kV

7 0
3 years ago
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
2 years ago
Two vehicles arrive at an uncontrolled intersection from different streets at the same time 1.The driver on the right must yield
ss7ja [257]
3. Both vehicles must stop
4 0
3 years ago
What is the net force acting on a car cruising at a constant velocity of 70 km/h (a) on a level road and (b) on an uphill road?
ElenaW [278]

Answer:

a) zero b) zero

Explanation:

Newton's first law tells us that a body remains at rest or in uniform rectilinear motion, if a net force is not applied on it, that is, if there are no applied forces or If the sum of forces acting is zero. In this case there is a body that moves with uniform rectilinear motion which implies that there is no net force.

4 0
2 years ago
Common car loan duration
chubhunter [2.5K]

Answer:

In 2019, the average term length was 69 months for new cars and 65 months for used vehicles. Most car loans are available in 12 month increments, lasting between two and eight years. The most common loan terms are 24, 36, 48, 60, 72, and 84 months, according to Autotrader

Explanation:

4 0
3 years ago
Other questions:
  • A liquid-liquid extraction process consists of two units, a mixer and a separator. One inlet stream to the mixer consists of two
    7·1 answer
  • R 134a enters a air to fluid heat exchanger at 700 kPa and 50 oC. Air is circulated into the heat exchanger to cool the R134a to
    6·1 answer
  • A capillary tube is immersed vertically in a water container. Knowing that water starts to evaporate when the pressure drops bel
    11·1 answer
  • The heat input to an Otto cycle is 1000kJ/kg. The compression ratio is 8 and the pressure and temperature at the beginning of th
    8·1 answer
  • A simple Rankine cycle coal-fired power plant has given states identified in the following table. The power plant produces 2.1 b
    9·1 answer
  • Realize the function f(a, b, c, d, e) = Σ m(6, 7, 9, 11, 12, 13, 16, 17, 18, 20, 21, 23, 25, 28)using a 16-to-1 MUX with control
    13·1 answer
  • Cual es la definición de la distribución de las instalaciones?
    13·2 answers
  • It is better to know or not to know?​
    6·2 answers
  • A tool used to put a concave edge on a plane iron is
    6·1 answer
  • Rivet gauge, or transverse pitch is the distance between the Group of answer choices heads of rivets in the same row. centers of
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!