Skip to main content

Oral Communication

Article No: 2


  • The study of human behavior shows that 70 percent of our walking life is spent communicating. Out of the total time spent on communicating, normally, 45 percent relates to listening, 30 percent to speaking, 16 percent to reading, and 9 percent to writing. Thus 75 percent of our time, we spend on listening and speaking.

  • One must know the skills of oral communication:-
    -to help problem solving.
    -to resolve conflict (struggle, fighting).
    -to influence people to work together.
    -to develop listening skills.
    -to make a proposal.
    These skills will develop necessary tact to work effectively for mutual satisfaction in the above situation.

  • Broadly speaking, one has to know when to talk, and when not to talk but listen; how to talk, that is the tone, to be able to interpret the listener’s facial expressions, physical gestures and movements.

  • The purpose of effective talking is to be heard and understood by he listener.

  • Our language should have the ease of commonly used words and short and simple sentences.

  • A speaker has to be very careful about his words and the manner of speaking.

  • Sometimes oral communication is more important than the words.

  • Research has established that an individual speaks nearly 125 words a minute and the brain of listener process nearly 4-5 times more rapidly.

  • In simple terms, the communicator should follow the following for effective oral communication:-
    -7 c’s of communication.
    -consider the objective.
    -think about the interest level of the receiver.
    -be sincere.
    -use simple language, familiar words.
    -be brief and precise(exact).
    -avoid lack of detail.
    -give full facts.
    -use polite words and tone.
    -cut out insulting message.
    -say something interesting and pleasing to the recipient.
    -allow time to respond.

  • If the speaker is greatly trusted and held in high esteem as an honest person, his statements are readily taken as true.

  • A lack of confidence or a sense of superiority may prevent proper oral interaction between persons.

  • Some persons believe that they know everything in a field or a subject. Their mind refuse to receive things from other sources.

  • Instead of straight talk, one speaks in an oblique manner that could be almost like telling a lie.

  • The lack of knowledge and practice of spoken English would act as a barrier to oral communication.

  • The success of meetings, discussions, lecturing or oral presentations depends on our picking up the verbal cues and clues.

  • For a fuller understanding of words, we should look for the meaning hidden behind the utterance.

  • In oral communication, the most important skill is to impress upon the other person that you are genuinely interested in him/her and his/her statements. Your body language should show your real interest in him/her.

  • Before you express your opinion or give your response to other’s opinion, you should be able to recognize, analyze, and evaluate what the person had said.

  • Understand the true meaning of the words spoken by the other person.

  • Characteristics of good listeners:
    -Do not interrupt
    -remain patient
    -make eye contact
    -show interest
    -look attentive
    -concentrate
    -ask open questions

  • Try to encourage the other person by your body language and expression.

  • Agenda items create the necessary framework for holding discussions in a guided sequence.

Negative thinking results from negative attitude or negative perception, which, at times, is part of a person’s personality.
eg:- “it is useless” , ”it is impossible” , “it is too difficult”.

Made and Compiled By: Chaudhary Amit V.

Comments

Popular posts from this blog

Characteristics of a Good Programming Language

Till now there are many high level languages which are very popular, and there are others, which could not become so popular in-spite of being very powerful. There might be many reasons for the success of a language, but one obvious reason is the characteristics of the language. Several characteristics believed to be important with respect to making a programming language good are briefly discussed below. Simplicity A good programming language must be simple and easy to learn and use. For example, BASIC is liked by many programmers only because of its simplicity. Thus, a good programming language should provide a programmer with a clear, simple and unified set of concepts which can be easily grasped. It is also easy to develop and implement a compiler or an interpreter for a programming language that is simple. However, the power needed for the language should not be sacrificed for simplicity. The overall simplicity of a programming language strongly affects the readability of the pr...

Angular 4 and Firebase Authentication: Email/Password

In our  previous  article we saw how to create authentication module using Google identity provider. Now we will see how to implement Email and Password authentication using Firebase. We will use Bootstrap form to create intuitive user interface for sign-up and login using Email and Password. Step 1: Create signUp component. ng generate component signUp Step 2: Create custom form in sign-up.component.html file. The result of above code: Step 3: Add two functions for creating the user and login using Email and Password in src/app/providers/AFAuth.ts file. Step 4: Call createUserWithEmailAndPassword function in service from sign-up.component.ts. Step 5: Update routing configuration in app.module.ts  to include signUp component. Step 6: Update Login form to have Bootstrap form. The result of the above code. Step 7: Enable Email/Password component in Firebas...

Angular 4 and Firebase Authentication: Setup

If you have come to this article, it means you are keen to learn new technology and that too Firebase. I love Firebase because it provides all basic but important features of any web application. Take for example, authentication, which is cumbersome and risky if not implemented with utmost care. And when we have the integration of Angular and Firebase, it becomes a lot easier for a developer to build such crucial modules in less time with minimal efforts. In this article we will create a simple Angular application using Firebase. I am going ahead with the understanding that you know the benefits of Firebase and have little knowledge about it. There are plenty of posts out on the web if you are behind. Step 1: Install Angular CLI (if not installed). npm install -g angular-cli Step 2: Create new Angular 4 project. By default now angular CLI will create Angular 4 project so you need not fret. ng new firebase-authentication Step 3: Check whether the ne...