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
SashulF [63]
3 years ago
8

An elevation is.... * 10 points a. A detailed description of requirements, composition and materials for a proposed building. b.

A view of a building seen from one side, a flat representation of one façade. This is the most common view used to describe the external appearance of a building. c. The development of the last remaining lots in an existing developed area, the new development within an area already served by existing infrastructure and services, or the reuse of already developed, but vacant properties. d. The practice of creating structures and using processes that are environmentally responsible and resource-efficient throughout a building's life-cycle from siting to design, construction, operation, maintenance, renovation and deconstruction.
Engineering
1 answer:
Savatey [412]3 years ago
3 0

Answer:

b. A view of a building seen from one side, a flat representation of one façade. This is the most common view used to describe the external appearance of a building.

Explanation:

An elevation is a three-dimensional, orthographic, architectural projection that reveals just a side of the building. It is represented with diagrams and shadows are used to create the effect of a three-dimensional image.

It reveals the position of the building from ground-depth and only the outer parts of the structure are illustrated. Elevations, building plans, and section drawings are always drawn together by the architects.

You might be interested in
Glyphicons is mainly used for​
-Dominant- [34]

Glyphicons are icon fonts which you can use in your web projects. Glyphicons Halflings are not free and require licensing, however their creator has made them available for Bootstrap projects free of cost.

7 0
2 years ago
Twenty-five wooden beams were ordered or a construction project. The sample mean and he sample standard deviation were measured
aksik [14]

Answer:

Correct option: B. 90%

Explanation:

The confidence interval is given by:

CI = [\bar{x} - z\sigma_{\bar{x}} , \bar{x}+z\sigma_{\bar{x}} ]

If \bar{x} is 190, we can find the value of z\sigma_{\bar{x}}:

\bar{x} - z\sigma_{\bar{x}}  = 188.29

190 - z\sigma_{\bar{x}}  = 188.29

z\sigma_{\bar{x}}  = 1.71

Now we need to find the value of \sigma_{\bar{x}}:

\sigma_{\bar{x}} = s / \sqrt{n}

\sigma_{\bar{x}} = 5/ \sqrt{25}

\sigma_{\bar{x}} = 1

So the value of z is 1.71.

Looking at the z-table, the z value that gives a z-score of 1.71 is 0.0436

This value will occur in both sides of the normal curve, so the confidence level is:

CI = 1 - 2*0.0436 = 0.9128 = 91.28\%

The nearest CI in the options is 90%, so the correct option is B.

4 0
3 years ago
Air enters a turbine with a stagnation pressure of 900 kPa and a stagnation temperature of 658K, and it is expanded to a stagnat
bezimeni [28]

Answer:

12.332 KW

The positive sign indicates work done by the system ( Turbine )

Explanation:

Stagnation pressure( P1 ) = 900 kPa

Stagnation temperature ( T1 ) = 658K

Expanded stagnation pressure ( P2 ) = 100 kPa

Expansion process is  Isentropic, also assume steady state condition

mass flow rate ( m ) = 0.04 kg/s

<u>Calculate the Turbine power </u>

Assuming a steady state condition

( p1 / p2 )^(r-1/r)  = ( T1 / T2 )

= (900 / 100)^(1.4-1/1.4) = ( 658 / T2 )

=  ( 9 )^0.285 = 658 / T2

∴ T2 = 351.22 K

Finally Turbine Power / power developed can be calculated as

Wt = mCp ( T1 - T2 )

    = 0.04 * 1.005 ( 658 - 351.22 )

    = 12.332 KW

The positive sign indicates work done by the system ( Turbine )

6 0
2 years ago
What do you think of web 3.0? do you think it will be realized someday in the future?​
Elodia [21]

Answer:

is this a question for hoework

7 0
2 years ago
Write a C program that will update a bank balance. A user cannot withdraw an amount ofmoney that is more than the current balanc
GarryVolchara [31]

Answer:

Explanation:

Sample output:

BANK ACCOUT PROGRAM!

----------------------------------

Enter the old balance: 1234.50

Enter the transactions now.

Enter an F for the transaction type when you are finished.

Transaction Type (D=deposit, W=withdrawal, F=finished): D

Amount: 568.34

Transaction Type (D=deposit, W=withdrawal, F=finished): W

Amount: 25.68

Transaction Type (D=deposit, W=withdrawal, F=finished): W

Amount: 167.40

Transaction Type (D=deposit, W=withdrawal, F=finished): F

Your ending balance is $1609.76

Program is ending

Code to copy:

// include the necessary header files.

#include<stdio.h>

// Definition of the function

float withdraw(float account_balance, float withdraw_amount)

{

// Calculate the balace amount.

float balance_amount = account_balance - withdraw_amount;

// Check whether the withdraw amount

// is greater than 0 or not.

if (withdraw_amount > 0 && balance_amount >= 0)

{

// Assign value.

account_balance = balance_amount;

}

// return account_balance

return account_balance;

}

// Definition of the function deposit.

float deposit(float account_balance, float deposit_amount)

{

// Check whether the deposit amount is greater than zero

if (deposit_amount > 0)

{

// Update account balance.

account_balance = account_balance + deposit_amount;

}

// return account balance.

return account_balance;

}

int main()

{

// Declare the variables.

float account_balance;

float deposit_amount;

float withdrawl_amount;

char input;

// display the statement on console.

printf("BANK ACCOUT PROGRAM!\n");

printf("----------------------------------\n");

// prompt the user to enter the old balance.

printf("Enter the old balance: ");

// Input balance

scanf("%f", &account_balance);

// Display the statement on console.

printf("Enter the transactions now.\n");

printf("Enter an F for the transaction type when you are finished.\n");

// Start the do while loop

do

{

// prompt the user to enter transaction type.

printf("Transaction Type (D=deposit, W=withdrawal, F=finished): ");

// Input type.

scanf(" %c", &input);

// Check if the input is D

if (input == 'D')

{

// Prompt the user to input amount.

printf("Amount: ");

// input amount.

scanf("%f", &deposit_amount);

// Call to the function.

account_balance=deposit(account_balance,deposit_amount);

}

// Check if the input is W

if (input == 'W')

{

printf("Amount: ");

scanf("%f", &withdrawl_amount);

// Call to the function.

account_balance = withdraw(account_balance,withdrawl_amount);

}

// Check if the input is F

if (input == 'F')

{

// Dispplay the amount.

printf("Your ending balance is $%.2f\n", account_balance);

printf("Program is ending\n");

}

// End the while loop

} while(input != 'F');

return 0;

}

the picture uploaded below shows the program screenshot.

cheers, i hope this helps.

5 0
3 years ago
Other questions:
  • A hollow aluminum sphere, with an electrical heater in the center, is used in tests to determine the thermal conductivity of ins
    14·2 answers
  • Memory Question!
    7·1 answer
  • Describe a simple process
    11·1 answer
  • 2. A fluid at 14.7 psi (lb-f per square inch) with kinematic viscosity (????????) 1.8 x10-4 ft2/sec and density(????????) 0.076
    11·1 answer
  • Which of the following has nothing to do with insulating glass? Group of answer choices
    10·2 answers
  • Write analgorithm and a C code to calculate the sum and average value of an array12elements.For example: Array_Temperaure=[10, 1
    6·1 answer
  • WHAT IS MEANT BY BJT AND FUNCTION OF BJT
    8·1 answer
  • What is government role in the modern American version of capitalism
    11·1 answer
  • The reversible and adiabatic process of a substance in a compressor begins with enthalpy equal to 1,350 kJ/kg, and ends with ent
    15·1 answer
  • The ratio of the volume of charge admitted at n. T. P. To the swept volume of the piston is called.
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!