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.
When a program lets the user know that an invalid choice has been made, this is known as a error message.
E-mail passwords should be easy for you to remember, but not easy for someone else to figure out.
This statement <span>regarding e-mails is true.</span><span>
</span>
Answer:
Hi,
Correct answer option is (D) Multiple boot
Explanation:
In multiple boot installation, more than one operating system can be installed on a single computer and a user can freely select the operating system to boot when starting up. Multiple boot allows us to retain the previous operating system and also the applications/software that cannot run in the first installed operating system.
Best wishes!