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:
true
Explanation:
A well designed product will increase in sells and in stock.
Answer:
Gross building area
Explanation:
The Gross building area refers to the entire area of a building covering all the floors. The measurement is expressed in square feet. The Gross building area also includes basements, penthouses, and mezzanines. It is calculated by estimating the exterior dimension of the building. Storage rooms, laundries, staircases are also a part of the gross building area.
The total number of trips that the vehicle has to make based on the given sequence of operation is 120 trips.
<em>"Your</em><em> </em><em>question is not complete, it seems to be missing the following information;"</em>
The sequence of operation is A - E - D - C - B - A - F
The given parameters;
- <em>number of pieces that will flow from the first machine A to machine F, = 2,000 pieces</em>
- <em>initial unit load specified in the first machine, L₁ = 50</em>
- <em>final unit load, L₂ = 100 </em>
- <em>the capacity of the vehicle = 1 unit load</em>
<em />
The given sequence of operation of the vehicle;
A - E - D - C - B - A - F
<em>the vehicle makes </em><em>6 trips</em><em> for </em><em>100</em><em> unit </em><em>loads</em>
The total number of trips that the vehicle has to make, in order to transport the 2000 pieces of the load given, is calculated as follows.
100 unit loads ----------------- 6 trips
2000 unit loads --------------- ?

Thus, the total number of trips that the vehicle has to make based on the given sequence of operation is 120 trips.
Learn more here:brainly.com/question/21468592