Answer:
Overall project duration
Explanation:
Scheduling can best be defined as the process used to determine a overall project duration.
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:
Diesel cycle:
All diesel engine works on diesel cycle.It have four processes .These four processes are as follows
1-2.Reversible adiabatic compression
2-3.Heat addition at constant pressure
3-4.Reversible adiabatic expansion
4-1.Heat addition at constant volume
When air inters in the piston cylinder after that it compresses and gets heated due to compression after that heat addition take place at constant pressure after that power is produces when piston moves to bottom dead center.
From the diagram of P-v And T-s we can understand so easily.
Answer:
Cloud computing services are going to be very important to supporting Ashville's mobile app since it has different uses. These applications uses include; data storage, as well as helping to provide network to any business data related work. This will improve the city of Ashville's mobile app operations considerably.
The benefits of using cloud computing are; it allows a business managers to be more concerned with running the business themselves rather than maintaining the data center. The use of cloud computing allows a company's IT administrators to focus on managing the company's operations, thereby allowing performance to be enhanced of the business enterprise.
A commercial company is able to create new technologies more rapidly with the use of cloud computing. Furthermore, the enterprise will be able to automate its activities using cloud computing. Cloud computing is also very important as it is more affordable and thus promotes the company's growth in the market. Cloud computing is also enhancing the global presence of the Ashville mobile app. The drawbacks of using cloud computing include the following; due to using the cloud infrastructure, the company's performance may be unreliable. People believe that cloud computing is not reliable and that cloud computing may not be secure at last and can't always be right for all workloads.
Explanation: