Answer:
#include <iostream>
using namespace std;
void PrintPopcornTime(int bagOunces) {
if(bagOunces < 2)
cout << "Too small" << endl;
else if(bagOunces > 10)
cout << "Too large" << endl;
else
cout << 6 * bagOunces <<" seconds" << endl;
}
int main()
{
int userOunces;
cin >> userOunces;
PrintPopcornTime(userOunces);
return 0;
}
Explanation:
Inside the function PrintPopcornTime, check the parameter bagOunces using if structure. Depending on the value of bagOunces, print the required information.
Inside the main, ask the user for the userOunces. Call the PrintPopcornTime function with the userOunces.
A high deductible plan if that person blames you for it and said that it was on purpose
Answer:
This question is incomplete, this is the complete question;
Jacob's client is the faculty of a local college. He is using the SWOT method to structure his analysis. The letter "S" in SWOT stands for "strengths." What would be an example of a strength that would contribute to an effective analysis?
A. A photo of the faculty in bathing suits.
B. A list of internal operational problems.
C. A record of faculty involvement in community organizations.
D. A convenience poll.
Answer:
C. A record of faculty involvement in community organizations.
Explanation:
The SWOT analysis is a tactical planning technique which is used to assist a person or an organization in identifying strengths, weaknesses, opportunities, and threats related to identifying competition or prospective competition or for project planning purposes.
The analyses can be applied to a whole company or an organization, or utilized in individual projects within a lone department.
the S letter in SWOT stands for strength and one of its example is the record of faculty involvement in community organizations which is being utilized in this scenario.
Explanation:
ICT Practical Work
3rd Stage
In this next process, carry out an analysis of where the information travels. For which we must have read and understood the functions of the nodes.
An English executive wishes to send a letter to an Argentine colleague to organize a commercial operation.
Write a draft in English.
The secretary translates it into Spanish.
Envelopes it properly to send the letter by air.
Label it.
He takes it to the mail where it is bagged, after sorting, with other envelopes, for different destinations, in the city of Bs. As. According to the transport possibilities, they decide if it will be sent on a direct flight, or with a stopover in Rió De Janeiro.
The post office of Bs. As. Verifies the state of the envelope, because if it is damaged; You can return it to the sender or (if the destination is legible) deliver it with a warning note regarding the condition of the envelope.
The Argentine executive receives the letter and, despite agreeing with the conditions of the transaction, detects a spelling error, corrects it, and responds to his colleague.
At what point in this process, would you locate each of the following node functions? : Interface, transmission, error detection, format conversion,
Answer:
Hi also thank you for the points very much appreciated.