Answer:
Liza is making a presentation on the sales revenue of her surfboard company’s most popular surfboard models. She wants to emphasize the model names as they appear one by one on the presentation slide. She also wants to depict the sales data for each model. "Goal seek" options can she use to achieve these goals.
c. would be the best answer.
Answer:
This program is executed in Dev C++ using C++ as a programming language.
Explanation:
#include<iostream>
using namespace std;
int main()
{
int carModelNo;
cout<<"Enter Car Model Number ";
cin>>carModelNo;
EnterAgain:
if(carModelNo==1969)
{
cout<<"Few safety features.";
}
else if(carModelNo==1979)
{
cout<<"Probably has seat belts.";
}
else if(carModelNo==1999)
{
cout<<"Probably has antilock brakes.";
}
else if(carModelNo==2000)
{
cout<<"Probably has airbags.";
}
else
{
"Car Model Information Currently not Available";
cout<<"Please enter the car model such as 1969, 1979, 1999, or 2000 ";
cin>>carModelNo;
goto EnterAgain;
}
return 0;
}
Answer:
negotiation
Explanation:
In the allocation of scarce resources involving two or more parties, there must be some level of dialogue and considerations when allocating such resources. The process of dialogue in order to reach a compromise in the allocation is known as negotiation. It involves skills and abilities such as persuasion, communication, cooperating, and strategizing.