I think the answer is C but I could be wrong
Communication comes in lots of types, therefore, it also has lots of goals and purposes. One of the purpose of communication is to satisfy instrument goals. Instrument goals here refers to the goal that focuses on convincing others to act in an appropriate way. This is most applicable in situations when someone had to deal with others.
Answer:
Examples of infrastructure include transportation systems, communication networks, sewage, water, and electric systems. Projects related to infrastructure improvements may be funded publicly, privately, or through public-private partnerships.
Answer:
interface GUIComponent{
public void open();
public boolean close();
public void resize(int width, int height);
public void move(int x, int y);
}
Explanation: