Answer:
Cause and effect
Explanation:
In this text, the most suitable structure is a cause and effect structure. The text explains why the prices of economy cars rose substantially in the United States during the mid-1980s. The initial cause was import quotas, which led to the effect of the Japanese sending mostly luxury cars to America. This pattern is reproduced through the passage, allowing us to understand the connection between different sentences within a paragraph.
Answer:
The sentence excerpted from the e-mail uses passive voice.
Given the purpose of your message, this voice is appropriate.
Explanation:
Because the objective is to remedy the situation a passive voice is great because it emphasizes the action and the object instead of the subject.
We want to emphasize the document and the incorrect information, not our colleague.
I’m just here for points because I have test and I need them lol
Answer:
Waterfall model
Explanation:
The waterfall model is amenable to the projects. It focused on the data structure. The software architecture and detail about the procedure. It will interfere with the procedure. It interfaces with the characterization of the objects. The waterfall model is the first model that is introduced first. This model also called a linear sequential life cycle model.
The waterfall model is very easy to use. This is the earliest approach of the SDLC.
There are different phase of the waterfall:
- Requirement analysis
- System Design
- Implementation
- Testing
- Deployment
- Maintenance
-
Answer:
#include <iostream>//including iostream library to use functions such as cout and cin
using namespace std;
int main() {
int userInput = 0;
do
{
cout << "Enter a number < 100: " ;
cin >> userInput;
if (userInput < 100)//condition if number is less than 100
{
cout << "Your number < 100 is: " << userInput << endl;
}
} while (userInput > 100);//do while loop condition
return 0;
}
Explanation:
A do-while loop executes regardless in the first iteration. Once it has run through the first iteration, it checks if the condition is being met. If, the condition is TRUE, the loop begins the second iteration. If FALSE, the loop exits. In this case, the condition is the userInput. after the first iteration, lets say the userInput is 120, the condition userInput > 100 is true.Therefore, the loop will run again until eventually the number is less than hundred, lets say 25. In that case the condition would be 25 > 100, which would be false, so the loops will break.