Answer:
Mechanical engineering is an engineering discipline that combines engineering physics and mathematics principles with materials science to design, analyze, manufacture, and maintain mechanical systems.
Engineering ethics is not without abstraction, but in contrast with computing, it is animated by a robust and active movement concerned with the seamless identification of ethics with practice.
<h3 /><h3>What is engineering?</h3>
This is a branch of science and technology concerned with the design, building, and use of engines, machines, and structures that uses scientific principles.
Comparing ethics in engineering and ethics in computing:
- Engineering ethics are a set of rules and guidelines. While computing ethics deals with procedures, values and practices.
- In engineering ethics, engineers must adhere to these rules as a moral obligation to their profession While in computing ethics, the ethics govern the process of consuming computer technology.
- Following these ethics for the two professions will NOT cause damage, but disobeying them causes damage.
Some practical examples in the computing field:
- Avoid using the computer to harm other people such as creating a bomb or destroying other people's work.
- Users also should not use a computer for stealing activities like breaking into a bank or company.
- Make sure a copy of the software had been paid for by the users before it is used.
Some practical examples in the engineering field:
- Integrity for oneself.
- Respect for one another.
- Pursuit of excellence and accountability.
Hence, Engineering ethics is the field of system of moral principles that apply to the practice of engineering and following them is important to the profession.
Read more about <em>engineering</em> here:
brainly.com/question/17169621
#SPJ1
Answer:
Given
inlet Pga =40kpa = 40000pa
Patm=1.01bar = 1.01 x 100000pa =101000pa
exit Pab= 6.5 (inlet Pab)
But generally, Pab = Patm + Pga
1. the absolute pressure of the gas at the inlet, inlet Pab?
inlet Pab = Patm + inlet Pga
= 101000pa + 40000pa = 141kpa
the absolute pressure of the gas at the inlet, inlet Pab = 141kpa
2. the gage pressure of the gas at the exit? exit Pga?
exit Pab = Patm + exit Pga
exit Pga = exit Pab - Patm
= (6.5 x 141kpa) - 101kpa
= 815.5kpa
the gage pressure of the gas at the exit exit Pga=815.5kpa
Answer:
Using python
num_boys = int(input("Enter number of boys :"))
num_girls = int(input("Enter number of girls :"))
budget = int(input("Enter the number of dollars spent per school year :"))
try:
dollarperstudent = budget/(num_boys+num_girls)
print("Dollar spent per student : "+str(dollarperstudent))#final result
except ZeroDivisionError:
print("unavailable")