Answer:
32 horsepower will be equal to 17600 ft-lb/sec
Explanation:
We have given 1 horsepower = 550 ft-lb/sec
We have to convert 32 horsepower into ft-lb/sec
As we know that 1 horsepower is equal to 550 ft-lb/sec
So for converting horsepower to ft-lb/sec we have multiply with 550
We have given 32 horse power
So 
So 32 horsepower will be equal to 17600 ft-lb/sec
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main ()
{
// Variable declaration
string name;
int numQuestions;
int numCorrect;
double percentage;
//Prompt to enter student's first and last name
cout<<"Enter student's first and last name";
cin>>name; // this line accepts input for variable name
cout<<"Number of question on test"; //Prompt to enter number of questions on test
cin>> numQuestions; //This line accepts Input for Variable numQuestions
cout<<"Number of answers student got correct: "; // Prompt to enter number of correct answers
cin>>numCorrect; //Enter number of correct answers
percentage = numCorrect * 100 / numQuestions; // calculate percentage
cout<<name<<" "<<percentage<<"%"; // print
return 0;
}
Explanation:
The code above calculates the percentage of a student's score in a certain test.
The code is extracted from the Question and completed after extraction.
It's written in C++ programming language
Answer:
See explaination
Explanation:
We are going to define Pressure drop as the difference in total pressure between two points of a fluid carrying network. A pressure drop usually occurs when frictional forces, caused by the resistance to flow, act on a fluid as it flows through the tube.
See attachment for the step by step solution of the given problem.
Answer:
Larger
Explanation:
When a vehicle is accelerated, the weight of the vehicle and the driver is transferred to the front of the rear of the car.
This transferred weight is nothing but the additional weight that presses the car's suspension in the downward direction thereby affecting tire contact patch in the rear due to which the rear tires loses adhesion.