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
vovangra [49]
3 years ago
6

William, a project manager, needs to prepare the budget for a new software development project. To do so, he takes inputs from o

ther managers who have worked orn similar projects in the past. After estimating the overall project cost, he gives the estimates to his team members so that they car split up the cost of each individual task involved in producing the required deliverable. In this scenario, William is using:______.
a. top-down budgeting

b. bittom-up budgeting

c. agile project budgeting

d. dynamic matrix budgeting
Engineering
1 answer:
fgiga [73]3 years ago
6 0

Answer:

The correct option is A

Explanation:

Top down budgeting is a type of budget in which the senior management prepares a high level budget for the company. The senior management then allocates the amounts for the individual departments, which then use this number in preparing their own budget.

You might be interested in
What are the success factors for mechanical engineering?
Eva8 [605]

Answer:

-effective technical skills.

-the ability to work under pressure.

-problem-solving skills.

-creativity.

-interpersonal skills.

-verbal and written communication skills.

-commercial awareness.

-teamworking skills.

Explanation:

is this what ur looking for? if so there ya go lol

7 0
2 years ago
Read 2 more answers
Ignoring any losses, estimate how much energy (in units of Btu) is required to raise the temperature of water in a 90-gallon hot
Rudik [331]

Answer:

Q=36444.11 Btu

Explanation:

Given that

Initial temperature = 60° F

Final temperature = 110° F

Specific heat of water = 0.999 Btu/lbm.R

Volume of water = 90 gallon

Mass = Volume x density

1\ gallon = 0.13ft^3

Mass ,m= 90 x 0.13 x 62.36 lbm

m=729.62 lbm

We know that sensible heat given as

Q= m Cp ΔT

Now by putting the values

Q= 729.62 x 0.999 x (110-60) Btu

Q=36444.11 Btu

5 0
3 years ago
g For this project you are required to perform Matrix operations (Addition, Subtraction and Multiplication). For each of the ope
Kruka [31]

Answer:

C++ code is explained below

Explanation:

#include<iostream>

using namespace std;

//Function Declarations

void add();

void sub();

void mul();

//Main Code Displays Menu And Take User Input

int main()

{

  int choice;

  cout << "\nMenu";

  cout << "\nChoice 1:addition";

  cout << "\nChoice 2:subtraction";

  cout << "\nChoice 3:multiplication";

  cout << "\nChoice 0:exit";

 

  cout << "\n\nEnter your choice: ";

 

  cin >> choice;

 

  cout << "\n";

 

  switch(choice)

  {

      case 1: add();

              break;

             

      case 2: sub();

              break;

             

      case 3: mul();

              break;

     

      case 0: cout << "Exited";

              exit(1);

     

      default: cout << "Invalid";      

  }

  main();  

}

//Addition Of Matrix

void add()

{

  int rows1,cols1,i,j,rows2,cols2;

 

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  //Taking First Matrix

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  //Printing 1st Matrix

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

  //Taking Second Matrix

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  //Displaying second Matrix

  cout << "\n";

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

  //Displaying Sum of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      cout << "\n";

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]+m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void sub()

{

  int rows1,cols1,i,j,k,rows2,cols2;

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

  cout << "\n";

  //Displaying Subtraction of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]-m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void mul()

{

  int rows1,cols1,i,j,k,rows2,cols2,mul[10][10];

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  cout << "\n";

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  cout << "\n";

  //Displaying Matrix 2

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

     

  if(cols1!=rows2)

      cout << "operation is not supported";

  else

  {

      //Initializing results as 0

      for(i = 0; i < rows1; ++i)

  for(j = 0; j < cols2; ++j)

  mul[i][j]=0;

// Multiplying matrix m1 and m2 and storing in array mul.

  for(i = 0; i < rows1; i++)

  for(j = 0; j < cols2; j++)

  for(k = 0; k < cols1; k++)

  mul[i][j] += m1[i][k] * m2[k][j];

// Displaying the result.

  cout << "\n";

  for(i = 0; i < rows1; ++i)

      for(j = 0; j < cols2; ++j)

      {

      cout << " " << mul[i][j];

      if(j == cols2-1)

      cout << endl;

      }

      }  

  main();

 }

5 0
3 years ago
Design a 7.5-V zener regulator circuit using a 7.5-V zener specified at 10mA. The zener has an incremental resistance of rZ = 30
hram777 [196]

Answer:

The answer is given in the explanation.

Explanation:

The circuit is as indicated in the attached figure.

From the analytical description the zener voltage is given as

V_z=V_z_o+I_zr_z

Here

Vzo is the voltage at which the slope of 1/rz intersects the voltage axis it is equal to knee voltage.

The equivalent model is shown in the attached figure.

From the above equation, Vzo is calculated as

V_z_o=V_z-I_zr_z

Here Vz is given as 7.5 V

Iz is given as 10 mA

rz is given as 30 Ω

Thus the Vzo is given as

V_z_o=V_z-I_zr_z\\V_z_o=7.4-30*10*10^{-3}\\V_z_o=7.5-0.3\\V_z_o=7.2 V

The value of I_L is given as 5 mA

Now the expression of current is as

I=I_z+I_L\\I=10mA+5mA\\I=15 mA

Now the resistance is calculated as

R=\dfrac{V-Vo}{I}\\R=\dfrac{10-7.2}{15*10^{-3}}\\R=186.66

So the value of resistance is 186.66 Ω.

Considering the supply voltage is increased by 10%

V is 10-10%*10=10+1=11 so the

R=\dfrac{V-Vo}{I}\\186.66=\dfrac{11-V_o}{15*10^{-3}}\\V_o=8.2 V

Considering the supply voltage is decreased by 10%

V is 10-10%*10=10-1=9 so the

R=\dfrac{V-Vo}{I}\\186.66=\dfrac{9-V_o}{15*10^{-3}}\\V_o=6.2 V

Now if the supply voltage is 10% high and the value of Load is removed i.e I=Iz only which is 10mA

so

R=\dfrac{V-Vo}{I'}\\186.66=\dfrac{11-V_o}{10*10^{-3}}\\V_o=9.13 V

Now the largest load current thus that the supply voltage is 10% low and the current of zener is knee current thus

V_z_o=V_z-I_zr_z\\V_z_o=7.5-30*0.5*10^{-3}\\V_z_o=7.5-0.015\\V_z_o=7.485 V

R=\dfrac{V-Vo}{I'}\\186.66=\dfrac{9-7.485}{I}\\I=10.71 mA

The load voltage is 7.485 V

8 0
3 years ago
Problem 34.3 The elevation of the end of the steel beam supported by a concrete floor is adjusted by means of the steel wedges E
Natasha2012 [34]

The image is missing, so i have attached it.

Answer:

A) P = 65.11 KN

B) Q = 30 KN

Explanation:

We are given;

The end reaction of the beam; F = 100KN

Coefficient of static friction between two steel surfaces;μ_ss = 0.3

Coefficient of static friction between steel and concrete;μ_sc = 0.6

So, F1 = μ_ss•F =0.3 x 100 = 30 KN

F2 = μ_ss•N_EF = 0.3N_EF

From the screen shot, we see that the angle is 12°

Sum of forces in the Y-direction gives;

F2•sin12 - N_EF•cos12 + 100 = 0

Rearranging gives;

N_EF•cos12 - F2•sin12 = 100

Let's put 0.3N_EF for F2 to give;

N_EF•cos12 - 0.3N_EF•sin12 = 100

Thus;

N_EF(0.9158) - 0.1247 = 100

N_EF(0.9781) = 100 + 0.1247

N_EF = 100.1247/0.9158

N_EF = 109.33 KN

Thus, F2 = 0.3N_EF = 0.3 x 109.33 = 32.8 KN

Wedge will move if;

P = (F1 + F2cos12 + N_EFsin12)

Thus;

P = 10 + (32.8 x 0.9781) + (109.33 x 0.2079)

P ≥ 65.11 KN

B) For static equilibrium, Q = F1

Thus, Q = 30 KN

3 0
3 years ago
Other questions:
  • Twenty-five wooden beams were ordered or a construction project. The sample mean and he sample standard deviation were measured
    6·1 answer
  • The flowchart below shows the design steps required to build a working model.
    6·1 answer
  • 5.5 A scraper with a 275 hp diesel engine will be used to excavate and haul earth for a highway project. An evaluation of the jo
    10·1 answer
  • Which of the following drivers has the right-of-way?
    9·1 answer
  • What is the relationship between orifice diameter and pipe diameter​
    15·1 answer
  • Chemical materials that are transported are called..
    8·1 answer
  • if you had 100 B size sheets and you cut them into A size sheets, how many sheets of A size paper would you have
    14·1 answer
  • In a wire, when elongation is 4 cm energy stored is E. if it is stretched by 4 cm, then what amount of elastic potential energy
    15·2 answers
  • Engineering problems and it solutions it machine design​
    5·1 answer
  • How does error detection take place
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!