Answer:
the answer is a, b,d on edg.
Explanation:
The interactive model of communication states that the people and the environment for communication are constantly changing.
B. interactive
<u>Explanation:</u>
The world is a big place and you must have come across the infamous hearing, "Change is the only constant". Gradually, with the passage of time, the mindset of the people change over a certain topic for communication.
For instance, in old times, people did not prefer their children to have love marriages, in fact India has also seen honor killings to prevent love marriages. But now most portion of the society stands in favor of love marriages. People change, perspective change, and so does the perception and ideas.
Answer:
When the report is too long and complex. The executive summary provides a snapshot of what the report talks about at a high level. When the reader needs more details, they can go through the detailed report.
Explanation:
Answer:
void swapints(int *j,int *k)//Function definition.
{
*j=*j+*k-(*k=*j); //value swapping.
}
swapints(&j,&k);//call the function.
Explanation:
- The above function definition takes the address of j and k variables which is stored on the pointer variable j and k.
- Then the pointer variable uses the j and k value for the above expression, and the user does not need to return the value of j and k.
- But when the user prints the value of the j and k variable, then he gets the swapping value of the j and k variable.
- The user needs to know that the "int j" is a normal variable, but "int *j" is a pointer variable that is used to take the address of j variable.