Skip to main content

Non-Verbal Communication


Article No: 4
  • If the listener keeps on listening to you with continuous eye contact, you may take it as a sign of perfect attention and full acceptance, but to someone else it could be a sign of the listeners’ helplessness.

  • The dress or language used will reveal the communicator’s status or education.

  • The most expressive part of our body is our face. Our face reflects our thoughts and feelings.

  • While communicating remember the popular saying, face reflects the mind; eyes reveal the heart.

  • Your facial expressions and eye movements should be natural not to be a artificial.

  • The most positive impression is made by a smiling face.

  • By practicing positive body language, one can gradually develop positive feelings.

  • Make conscious efforts to create a positive image by positive body movements and gestures.

  • Learn to look confident, assertive and positive.

  • Positive gestures are body signals which make you look relaxed, confident, and polite.

  • Don’t keep your full hands in your pockets because it shows the nervousness.

  • Walk with your head upright. Hands should swing freely on your sides. Eyes should look straight in front. Steps should be well measured and steady.

  • Keep books one side while walking.

  • When you are talking on phone and any one comes than show one finger politely.

  • Don’t show your negative gestures.

  • Signs of nervousness:
    -
    hands in pockets
    -covering your mouth with your hand
    -biting nails
    -drumming fingers
    -tapping your foot
    -crossing arms or legs
    -sitting on the edge of the chair
    -rocking our legs
    -looking at the ceiling
    -speaking too fast
    -setting the hair with hands
    -clicking pens
    -blinking a lot
    -starting to smoke
    -frequently sipping/drinking water
    -playing with jewelry

  • Gestures showing Aggressiveness:
    -pointing at someone
    -showing a fist
    -folding both arms

  • Gestures showing rudeness:
    -shake hands too hard
    -give a limp hand shake
    -stand too close
    -whisper at a social gathering
    -yawn
    -smirk
    -look at your watch frequently or during the conversation

  • Gestures showing self-importance:
    -eyes closed while talking.
    -head bent backwards while talking
    -looking at the tip of the nose while talking
    -pursed mouth
    -steeping the fingers
    don’t show this all while you are discussing.

  • Gestures showing lack of good sense:
    -
    banging the table instead of laughing at a joke
    -chewing pens
    -don’t show air actions like asking for “t”.
    -waving hands while talking
    -wringing hands
    -touching nose time and again

  • An executive’s position of power is generally seen from the size of his office-room, the kind of furnishing of the room, the height of his/her chair, the size of the office table.

  • The floor carpet tells us the status of the executive we are going to meet.

  • Look impressive, not gorgeous. Never be over-dressed for the occasion. Do not go for high fashion and trendy designs and styles f suiting. Your clothes should not distract attention from what you talk.

  • Wear neither too loose nor tight clothes. Select your choice according the nature of your job.

  • Never try a new set of clothes for any occasion immediately.

  • Your shoes should be formal and in keeping with the color of the suit.

  • Business bag or briefcase or portfolio which you carry also indicates your status as a professionals.

  • You should keep some proper space while you are talking.

  • If you understand this all above skills than you can identify any other person.

  • Do not allow your nervousness to be leaked out.

  • Do not sit at the edge of the seat.

  • Maintain eye contact with your audience.

  • Smile genuinely to reflect your feelings of delight.

  • Silence is communicative, but it may say different things to peoples of different culture.

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...