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
ddd [48]
3 years ago
15

50POINTS

Engineering
2 answers:
maxonik [38]3 years ago
7 0

Answer:

Ensure that all material and energy inputs and outputs are as inherently safe and benign as possible. Minimize the depletion of natural resources. Prevent waste. Develop and apply engineering solutions while being cognizant of local geography, aspirations, and cultures.Green engineering is the design, commercialization, and use of processes and products that minimize pollution, promote sustainability, and protect human health without sacrificing economic viability and efficiency.The goal of environmental engineering is to ensure that societal development and the use of water, land and air resources are sustainable. This goal is achieved by managing these resources so that environmental pollution and degradation is minimized.

Explanation:i helped

VikaD [51]3 years ago
3 0

Explanation:

One possible reason for this query could be the amount of trees per say would have to be cut down to construct the green engineering facilities. Another thing could be distance from other facilities. For example you wouldn't want a green engineering facility next to a fossil fuel burning facility. (That would be pointless.) Before comensing the green engineering process, you would also like to ask local officers for any enviornmental information that could be used during the making of this, since there may be endangered animals or things that could be affected by the construction. You would also not like a location near a big town or city since the noise or the very mild pollution may bother the locals.

#learnwithbrainly

You might be interested in
The statement that is NOT true about the difference between laminar and turbulent boundary layers is:1.the Reynolds number for a
IgorLugansk [536]

Answer:

4. The velocity gradient at the wall is greater for a laminar boundary layer than a turbulent boundary layer.

Explanation:

This is false

6 0
4 years ago
The radial component of acceleration of a particle moving in a circular path is always:________ a. negative. b. directed towards
lesya [120]

Answer:

d. all of the above

Explanation:

There are two components of acceleration for a particle moving in a circular path, radial and tangential acceleration.

The radial acceleration is given by;

a_r = \frac{V^2}{R}

Where;

V is the velocity of the particle

R is the radius of the circular path

This radial acceleration is always directed towards the center of the path, perpendicular to the tangential acceleration and negative.

Therefore, from the given options in the question, all the options are correct.

d. all of the above

7 0
3 years ago
When hermetic refrigerant motor-compressors are designed to operate continuously at currents greater than 156 percent of the rat
ANEK [815]

The nameplate of a hermetic refrigerant motor-compressor that is designed to operate continuously at currents greater than 156% of the rated-load current is marked with branch-circuit selection current.

<h3>What is a hermetic refrigerant motor-compressor?</h3>

A hermetic refrigerant motor-compressor can be defined as a mechanical device that is designed and developed by combining a compressor and motor in a single outer-welded steel shell.

Basically, a hermetic refrigerant motor-compressor is used in the following areas:

  • Household refrigerators
  • Freezers
  • Heat pumps
  • Air coolers
  • Water cooling equipment.
  • Small refrigeration equipment.

According to HSE, the nameplate of a hermetic refrigerant motor-compressor that is designed to operate continuously at currents greater than 156% of the rated-load current is marked with branch-circuit selection current, so as to ensure safety for end users and technicians.

Read more on refrigerants here: brainly.com/question/2928084

6 0
3 years ago
Question 10 of 25
Nataliya [291]
Physical movement like running
4 0
3 years ago
Read 2 more answers
Amanda and Tyler opened a business that specializes in shipping liquids, such as milk, juice, and water, in cylindrical containe
USPshnik [31]

Answer:

circleType.h

#ifndef circleType_H

#define circleType_H

class circleType

{

public:

void print();

void setRadius(double r);

//Function to set the radius.

//Postcondition: if (r >= 0) radius = r;

// otherwise radius = 0;

double getRadius();

//Function to return the radius.

//Postcondition: The value of radius is returned.

double area();

//Function to return the area of a circle.

//Postcondition: Area is calculated and returned.

double circumference();

//Function to return the circumference of a circle.

//Postcondition: Circumference is calculated and returned.

circleType(double r = 0);

//Constructor with a default parameter.

//Radius is set according to the parameter.

//The default value of the radius is 0.0;

//Postcondition: radius = r;

private:

double radius;

};

#endif

circleTypeImpl.cpp

#include <iostream>

#include "circleType.h"

using namespace std;

void circleType::print()

{

cout << "Radius = " << radius

<< ", area = " << area()

<< ", circumference = " << circumference();

}

void circleType::setRadius(double r)

{

if (r >= 0)

radius = r;

else

radius = 0;

}

double circleType::getRadius()

{

return radius;

}

double circleType::area()

{

return 3.1416 * radius * radius;

}

double circleType::circumference()

{

return 2 * 3.1416 * radius;

}

circleType::circleType(double r)

{

setRadius(r);

}

cylinderType.h

#ifndef cylinderType_H

#define cylinderType_H

#include "circleType.h"

class cylinderType: public circleType

{

public:

void print();

void setHeight(double);

double getHeight();

double volume();

double area();

//returns surface area

cylinderType(double = 0, double = 0);

private:

double height;

};

#endif

cylinderTypeImpl.cpp

#include <iostream>

#include "circleType.h"

#include "cylinderType.h"

using namespace std;

cylinderType::cylinderType(double r, double h)

: circleType(r)

{

setHeight(h);

}

void cylinderType::print()

{

cout << "Radius = " << getRadius()

<< ", height = " << height

<< ", surface area = " << area()

<< ", volume = " << volume();

}

void cylinderType::setHeight(double h)

{

if (h >= 0)

height = h;

else

height = 0;

}

double cylinderType::getHeight()

{

return height;

}

double cylinderType::area()

{

return 2 * 3.1416 * getRadius() * (getRadius() + height);

}

double cylinderType::volume()

{

return 3.1416 * getRadius() * getRadius() * height;

}

main.cpp

#include <iostream>

#include <iomanip>

using namespace std;

#include "cylinderType.h"

int main()

{

double radius,height;

double shippingCostPerLi,paintCost,shippingCost=0.0;

 

cout << fixed << showpoint;

cout << setprecision(2);

cout<<"Enter the radius :";

cin>>radius;

 

cout<<"Enter the Height of the cylinder :";

cin>>height;

 

 

cout<<"Enter the shipping cost per liter :$";

cin>>shippingCostPerLi;

 

 

//Creating an instance of CylinderType by passing the radius and height as arguments

cylinderType ct(radius,height);

 

double surfaceArea=ct.area();

double vol=ct.volume();

 

 

shippingCost+=vol*28.32*shippingCostPerLi;

 

char ch;

 

cout<<"Do you want the paint the container (y/n)?";

cin>>ch;

if(ch=='y' || ch=='Y')

{

cout<<"Enter the paint cost per sq foot :$";

cin>>paintCost;    

shippingCost+=surfaceArea*paintCost;    

}    

cout<<"Total Shipping Cost :$"<<shippingCost<<endl;

 

return 0;

}

3 0
3 years ago
Other questions:
  • Design a stepped-impedance low-pass filter having a cutoff frequency of 3 GHz and a fifth-order 0.5 dB equal-ripple response. As
    9·1 answer
  • Three possible career opportunities in embedded systems engineering
    11·1 answer
  • Rosbel or Janette lol baakkaaa
    11·2 answers
  • Your friend has two substances A and B which are compressed liquid and superheated vapor respectively. Both are in rigid vessels
    15·1 answer
  • Materials to be used to build a watch tower​
    9·1 answer
  • Please look at the attachments and help me with these questions
    7·1 answer
  • Technician A says that to depressurize high-pressure components of the electronic brake control (EBC) system, research the proce
    13·1 answer
  • Which of the following describes a tropical grassland environment?
    6·2 answers
  • What happens if you leave your car on while pumping gas
    8·1 answer
  • which of the following is not a general education elective area? group of answer choices humanities/fine arts social/behavioral
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!