Answer:
The solution and complete explanation for the above question and mentioned conditions is given below in the attached document.i hope my explanation will help you in understanding this particular question.
Explanation:
Answer:
A) Their creations change society.
Answer:
to be or not to be
Explanation:
Vivi is a drummer for a band. She burns 756756756 calories while drumming for 333 hours. She burns the same number of calories each hour.
Answer:
gauge pressure is 133 kPa
Explanation:
given data
initial temperature T1 = 27°C = 300 K
gauge pressure = 300 kPa = 300 × 10³ Pa
atmospheric pressure = 1 atm
final temperature T2 = 77°C = 350 K
to find out
final pressure
solution
we know that gauge pressure is = absolute pressure - atmospheric pressure so
P (gauge ) = 300 × 10³ Pa - 1 × Pa
P (gauge ) = 2 × Pa
so from idea gas equation
................1
so
P2 = 2.33 × Pa
so gauge pressure = absolute pressure - atmospheric pressure
gauge pressure = 2.33 × - 1.0 ×
gauge pressure = 1.33 × Pa
so gauge pressure is 133 kPa
Answer:
Explanation along with code and output results is provided below.
C++ Code:
#include <iostream>
using namespace std;
int main()
{
int year;
cout<<"Enter the car model year."<<endl;
cin>>year;
if (year<=1969)
{
cout<<"Few safety features."<<endl;
}
else if (year>=1970 && year<1989)
{
cout<<"Probably has seat belts."<<endl;
}
else if (year>=1990 && year<1999)
{
cout<<"Probably has antilock brakes."<<endl;
}
else if (year>=2000)
{
cout<<"Probably has airbags."<<endl;
}
return 0;
}
Explanation:
The problem was to print feature messages of a car given its model year.
If else conditions are being used incorporate the logic. The code has been tested with several inputs and got correct output results.
Output:
Enter the car model year.
1961
Few safety features.
Enter the car model year.
1975
Probably has seat belts.
Enter the car model year.
1994
Probably has antilock brakes.
Enter the car model year.
2005
Probably has airbags.