Skip to main content

What Is Emotional Intelligence?




Conventional wisdom has it that there's a direct connection between our IQ and our ability to succeed in life. In school, we're ranked by our GPA. At certain points in grade school, students are given standardized tests that rank them against other students around the country. Schools are obsessed with how their students rank compared to others. A requirement for most colleges is a satisfactory score on the SAT or ACT exam. These tests are basic IQ tests, designed to gauge our math skills and reading comprehension.
But there have been many studies that show IQ only accounts for about 20% of success. The major determinants of success are social and emotional intelligence. Yet there's very little emphasis put on developing emotional intelligence. Only a handful of schools have any formal programs that address emotional intelligence.
We have an emotional mind and a rational mind. In large part, our emotional mind developed to help us survive. When man first wandered the earth, any time he encountered some new experience he needed to make instant decisions about whether the encounter involved something he could eat or something that might try to eat him. Relying on the rational mind, which works much slower than the emotional mind, might have meant the end of mankind. The emotional mind springs into action more quickly than the rational mind. But unless we learn to control the emotional mind, we will make lots of bad decisions and poor choices.

Top 5 Reasons EQ Determines Success in Life


Our emotional intelligence has such a large impact on our success in life, it's important that we fully develop our emotional skills. Here are the top five reasons why your emotional intelligence determines your success in life.
1. EQ has a greater impact on success than other factors.
It has been said that your IQ can land you a job, but your lack of EQ can get you fired. Your IQ only accounts for 20% of your success in life. Your emotional intelligence and social intelligence are much greater determinants of the success you will achieve in life.

2. The ability to delay gratification is a primary indicator of future success.
Delayed gratification is the top predictor of future success. People who are able to pay the price today and delay the rewards are much more likely to succeed in life. Unfortunately we have become a nation seeking instant gratification. This shows up in our everyday lives in the foods we choose to eat, the buy-now-pay-later way of life, our difficulty in adhering to an exercise regimen, and putting mindless entertainment ahead of self-development.
3. High EQ leads to healthy relationships with others.
Our emotional skills have a direct and important bearing on our relationships with others. We need to understand our feelings, where they come from, and how to properly express them. We will not maintain healthy relationships unless we can control our emotions, communicate our feelings in a constructive manner, and understand the feelings of others.

4. Emotional health impacts physical health.
There is a direct connection between our emotional health and our physical health. If our lives are filled with stress, our physical health suffers. It has been estimated that well over 80% of our health problems are stress-related. We experience stress primarily because we are not comfortable emotionally. We need to understand the link between our emotional health and our physical health.
5. Poor EQ is linked to crime and other unethical behaviors.
Unfortunately, there's a direct connection between poor emotional skills and the rising crime rate. Children who have poor emotional skills become social outcasts at a very young age. They might become the class bully because of a hot temper. They may have learned to react with fists rather than with reason. Poor social and emotional skills contribute to poor attention in class as well as feelings of frustration. Such students rapidly fall behind in school, and may tend to make friends with others in the same boat. The path to crime starts early in life. While there's no doubt that family and environment are strong contributors, the common thread is poor emotional and social skills.
This is one case where an ounce of prevention would certainly be worth a pound of cure. The cost of intervention when a child is in grade school is minor compared to the cost of jailing them in their teens and twenties.

How Do We Develop Emotional Intelligence?

We need to know our emotions. We need to develop self-awareness—the ability to recognize feelings as they happen.
We must learn how to manage our emotions. Unless we learn to manage our emotions we will constantly be battling feelings of gloom and distress.
We must learn to motivate ourselves, learn emotional self-control, and delay gratification.
If we are to succeed in life, we need to learn to recognize emotions in others. We need to develop empathy; we need to be attuned to what others want or need.
And we need to develop our emotional intelligence so we are capable of healthy relationships.

Comments

Popular posts from this blog

Momo suicide game

Microsoft clamps down on sick 'Momo suicide game' in 'Minecraft' Microsoft is clamping down on the sick “Momo suicide challenge,” which recently infiltrated the wildly popular online game “Minecraft.”The tech giant owns “Minecraft” developer Mojang. The vile “Momo suicide game” has been garnering attention after spreading on WhatsApp, prompting police warnings. "Momo" is a viral challenge that asks people to add a contact via WhatsApp - they are then   urged   to commit self-harm or suicide. The "game" has fueled comparisons to the sinister " Blue Whale challenge " that led to reports of suicides in Russia and the U.S, as well as the online fictional character of "Slender Man." In 2014 two 12-year-old girls in Wisconsin  attempted to kill   a classmate in an attempt to please the horror character. The Buenos Aires Times recently  reported  that police in Argentina are investigating whether “Momo” is linked to the suicide of a 12-y...

Spring Security with JWT for REST API

Spring is considered a trusted framework in the Java ecosystem and is widely used. It’s no longer valid to refer to Spring as a framework, as it’s more of an umbrella term that covers various frameworks. One of these frameworks is Spring Security , which is a powerful and customizable authentication and authorization framework. It is considered the de facto standard for securing Spring-based applications. Despite its popularity, I must admit that when it comes to single-page applications , it’s not simple and straightforward to configure. I suspect the reason is that it started more as an MVC application -oriented framework, where webpage rendering happens on the server-side and communication is session-based. If the back end is based on Java and Spring, it makes sense to use Spring Security for authentication/authorization and configure it for stateless communication. While there are a lot of articles explaining how this is done, for me, it was still frustrating to set it up for the f...

The Java 8 Stream API

1 Overview In this comprehensive tutorial, we'll go through the practical uses of Java 8 Streams from creation to parallel execution. To understand this material, readers need to have a basic knowledge of Java 8 (lambda expressions,   Optional,  method references) and of the Stream API. 2 Stream Creation There are many ways to create a stream instance of different sources. Once created, the instance  will not modify its source,  therefore allowing the creation of multiple instances from a single source. Empty Stream We should use the  empty()  method in case of the creation of an empty stream: Stream<String> streamEmpty = Stream.empty(); We often use the  empty()  method upon creation to avoid returning  null  for streams with no element: public Stream<String> streamOf (List<String> list) { return list == null || list.isEmpty() ? Stream.empty() : list.stream(); } 2.2. Stream of  Collection We can also creat...