Answer:
The rate of energy absorbed per unit time is 3500W.
Explanation:
From the question, we were given the following parameters;
Plane, opaque, gray, diffuse surface
â = 0.7
Surface area, A = 0.5m²
Incoming radiant energy, G = 10000w/m²
T = 500°C
Rate of energy absorbed is âAG;
âAG = 0.7 × 0.5 × 10000
âAG = 3500W.
The energy absorbed is measured in watts and denoted by the symbol W.
Hi! Hope you're having a great day!
Answer:
rucks, buses, RVs, trolleys
Explanation:
What are some different types of vehicles that we share the road with?
Driving is a complex task, and for safe driving you need to know not just the rules of sharing the road with other cars, but with variety of other types of vehicles: trucks, buses, RVs, trolleys, motorcycles, bicycles and of course pedestrians.
Answer:
Statement 1: All balls hit the ground at the same time
Explanation:
When there is no resistance of air, the acceleration due to gravity experienced by all the bodies are same. So for falling bodies, neglecting the air resistance, the falling object will be weightless and therefore all the objects will hit the ground at the same time when there is nor air resistance and the objects are considered to be falling in vacuum.
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.