https://www.universalclass.com/articles/business/communication-studies/be-a-competent-communicator.htm

Researchers have broken down the characteristics of competent communicators into five (5) areas: self-awareness, adaptability, empathy, cognitive complexity, and ethics. We shall define and discuss each, in turn.

Self-awareness means being aware of your own communication behaviors. Part of this is self-monitoring, which means that you observe your own communication behaviors and ensure they are appropriate to the situation. As an example, if you are someone who tends to use foul language, you would self-monitor while you're in a place of religious worship -- such as a church, temple, or mosque -- and refrain from such language usage in this environment.

Adaptabilityis the ability to adapt your communication to the environment you're in. That is, you wouldn't communicate in the same way to your closest friends as you would to your co-workers. Rather, while you're at work, you would adapt your communication behaviors to the norms and standards of the communication environment at work, and when you're with your friends, you adapt to that social environment accordingly.

Empathy means that you communicate with another person while putting yourself in that person's shoes, so to speak. For example, if your friend has just announced he is getting a divorce, you would consider that friend's frame of mind and refrain from bringing up how great your own significant relationship is at the moment, aware that such statements will likely only serve to make your friend feel worse about his or her own challenging situation.

Cognitive complexityis the idea that another's communication behavior can have multiple sources. This means that when someone is sharp with you, it could be from something you've done, yes, and perhaps that person is reacting to you. However, it could also be a result of that person's physical well-being at the moment -- perhaps s/he has a headache or didn't get enough sleep the night before -- or something in that person's life that is weighing on him or her at the moment.

Ethics means to communicate in ways that are morally correct. That is, when someone is particularly vulnerable, we don't take advantage of that person's weakened state to get him or her to agree to something that s/he otherwise would not likely have done.

Those who are proficient in each of these five (5) areas of communication are considered competent communicators.

characteristics of competent communicators的更多相关文章

  1. The resource identified by this request is only capable of generating responses with characteristics

    [转]今天在调试springMVC的时候,在将一个对象返回为json串的时候,浏览器中出现异常: The resource identified by this request is only cap ...

  2. INSTRUCTION EXECUTION CHARACTERISTICS

    Characteristics of Some CISCs, RISCs, and Superscalar Processors One of the most visible forms of ev ...

  3. only for equality comparisons Hash Index Characteristics

    http://dev.mysql.com/doc/refman/5.7/en/index-btree-hash.html Hash Index Characteristics Hash indexes ...

  4. SpringMVC_The resource identified by this request is only capable of generating responses with characteristics

    今天在调试springMVC的时候,在将一个对象返回为json串的时候,浏览器中出现异常: The resource identified by this request is only capabl ...

  5. Learning Java characteristics (Java in a Nutshell 6th)

    Java characteristics: Java .class files are machine-independent, including the endianness. Java .cla ...

  6. Palindromic characteristics CodeForces - 835D (区间DP,预处理回文串问题)

    Palindromic characteristics of string s with length |s| is a sequence of |s|integers, where k-th num ...

  7. Codeforces Round #427 (Div. 2) Problem D Palindromic characteristics (Codeforces 835D) - 记忆化搜索

    Palindromic characteristics of string s with length |s| is a sequence of |s| integers, where k-th nu ...

  8. Receiver Operating Characteristics (ROC)

    The Receiver Operating Characteristics (ROC) of a classifier shows its performance as a trade off be ...

  9. 解决The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers.

    SpringMVC中当在浏览器中输入对应的MappingUrl时,报The resource identified by this request is only capable of generat ...

随机推荐

  1. linux获取外网ip

    引言:目前获取ip的方法中,ifconfig和ip获取函数得到的都是内网ip.有时候需要获取外网ip,目前通用的做法,是向外部服务器发送请求,解析外部服务器响应,从而得到的自己的外网ip.linux下 ...

  2. HNUSTOJ-1520 压缩编码

    1520: 压缩编码 时间限制: 1 Sec  内存限制: 2 MB提交: 107  解决: 54[提交][状态][讨论版] 题目描述 某工业监控设备不断发回采样数据.每个数据是一个整数(0到1000 ...

  3. checkbox的全选、全消的使用

    jquery的选择器的使用 //全选,全消 $("#check_all").click(function () { state = $(this).prop("check ...

  4. Enlarge GCD(素数筛)

    题意 删去最少的数,使gcd变大 题解 只要保留相同素数因子最多的数即可. 素数筛. C++代码 #include<bits/stdc++.h> using namespace std; ...

  5. IsNumeric 函数

    VB IsNumeric 判断数字函数功能详解: IsNumeric 函数 函数功能:     返回 Boolean 值,指出表达式的运算结果是否为数. 函数语法:     IsNumeric (ex ...

  6. IsDate(expression)函数

    IsDate 函数 返回 Boolean 值指明某表达式是否可以转换为日期. IsDate(expression) expression 参数可以是任意可被识别为日期和时间的日期表达式或字符串表达式. ...

  7. Codeforces Round #573 (Div. 2) D. Tokitsukaze, CSL and Stone Game (博弈,思维)

    D. Tokitsukaze, CSL and Stone Game time limit per test1 second memory limit per test256 megabytes in ...

  8. hdu 1506 单调栈

    #include <bits/stdc++.h> #define PI acos(-1.0) #define mem(a,b) memset((a),b,sizeof(a)) #defin ...

  9. RMQ 区间最大值最小值 最频繁次数

    区间的最大值和最小值 #include <cstdio> #include <cstring> #include <cmath> #include <iost ...

  10. 费用流+SPFA ||Luogu P3381【模板】最小费用最大流

    题面:[模板]最小费用最大流 代码: #include<cstdio> #include<cstring> #include<iostream> #include& ...