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. 最小生成树: HDU1233还是畅通工程

    还是畅通工程 Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Sub ...

  2. 剑指offer-从尾到头打印链表-链表-python

    题目描述 输入一个链表,按链表从尾到头的顺序返回一个ArrayList. 把链表依次放入list里面,反向打印 # -*- coding:utf-8 -*- # class ListNode: # d ...

  3. python学习笔记(4)

    第六章 字符串操作 1.字符串处理 (1)字符串字 spam='Say hi to Bob\' s mother 面量 python中输入字符串:以单引号开始和结束 (2)双引号:字符串可以用双引号开 ...

  4. console 对象

    JavaScript 原生中默认是没有 Console 对象,这是宿主对象(也就是游览器)提供的内置对象. 用于访问调试控制台,在不同的浏览器里效果可能不同.Console 对象方法:

  5. empty()、isset()、is_null()的区别

    总结:1. 变量有二种状态: 已声明, 未声明2. 已声明的变量也有二种状态: 已赋值(初始化), 未赋值(未初始化)3. 变量可能会被赋值类型: null, 空值, 非空值 3.1: null值: ...

  6. java web请求过程

    小技巧: 1.浏览器缓存 Ctrl+F5组合键刷新页面,浏览器会直接向目标URL发送请求,而不会使用浏览器缓存,并会在HTTP请求header中增加下面的请求头来告诉服务器不使用服务器缓存 发现在re ...

  7. verilog版插值

      开发环境:IDE:LIBERO 9.0(ACTEL公司的)芯片:AFS600 (BGA256),是混合系列的FPGA仿真软件:modelsim atcel 6.5d综合软件:synplify pr ...

  8. CentOS7搭建FastDFS V5.11分布式文件系统及Java整合详细过程

    1.1 FastDFS的应用场景 FastDFS是为互联网应用量身定做的一套分布式文件存储系统,非常适合用来存储用户图片.视频.文档等文件.对于互联网应用,和其他分布式文件系统相比,优势非常明显.其中 ...

  9. python3-多重继承

    继承是面向对象编程的一个重要的方式,因为通过继承,子类就可以扩展父类的功能. 回忆一下Animal类层次的设计,假设我们要实现以下4种动物: Dog - 狗狗: Bat - 蝙蝠: Parrot - ...

  10. Linux shell 批量验证端口连通性

    工作中会遇到验证到某某服务器端口是否连通,如果IP或端口多时,用shell还是很省时省力的,看下面的脚本: #!/bin/bash # #database check #set -o nounset ...