Answer:
A) an instrumental style
Explanation:
Based on the information provided within the question it can be said that with Group A the professor seems to be using an instrumental style. This is a specific style of communication which is goal oriented and sender focused. This seems to be the style being used since the professor gets them to seek out and produce an even better project than the one they did last time in order to impress the professor (sender).
Answer:
The Family with the garage door
Explanation:
I could swear that that's the same question on my quiz. :o
It is the last one retention because writing it out will cause it to stick in your brain better
Answer:
<em>The function is written in C++</em>
void calc_discount(double amount,bool member)
{
double discount;
if(member)
{
discount = amount - 0.10 * amount - 0.05 * amount;
}
else
{
discount = amount - 0.05 * amount;
}
cout<<"Discount = "<<discount;
}
Explanation:
<em>I've included the full source code (including the main method) as an attachment where I use comments as explanations</em>