Answer:
The program to this question can be given as follows:
Program:
//header file
#include <iostream> //defining header file
using namespace std;
//main
int main() //defining main method
{
string name; //defining main method
cout<<"enter name: "; //print message
getline(cin,name); //using getline method
cout<<"The name you inserted is: "<<name; //print value
return 0;
}
Output:
Please Enter Name: Brenda Clinton
The name you inserted is: Brenda Clinton
Explanation:
Firstly the header file is included in the above C++ program code, in the next line the main method is defined, inside this method the string variable is defined which takes value from user-ends.
- In the above specifies the getline method, which can be referred to as a standard library feature for reading an input stream string or a line. It removes characters from the input stream and applies this to the string object until the character is delimited.
- After taking input the print method "cout" is used to print "name" variable value.
There is a paper clip on the bottom left on your screen. When answering a question click it to apply a picture. Have a wonderful day.
(Take*)
Answer:
The Last option: Dyadic Communication AND Interpersonal Communication
is the correct one.
Explanation:
Communication can be defined as the process in which one may convey his thoughts or inquires about things.
There are many types of communications as listed above.
- Intrapersonal Communication
- Interpersonal Communication
- Dyadic Communication
- Small Group Communication
- Public Communication
- Mass Communication
- Organizational Communication
- Intercultural Communication.
Under all these, Interpersonal communication and Dyadic communication are the ones that are between two people.
Dyadic communication is the one in which two people relate to exchange thoughts and ideas face-to-face. It is sometimes referred as dialogic relation.
Interpersonal relation can be between two or more than two persons that may know each other. It is clearly specified in this communication that who listener and speaker are.
<h3>I hope it will help you!</h3>