Skip to main content

What does a leader need more of, IQ or EQ?


What does a leader need more of, IQ or EQ?
When making their mark on the business world, many leaders reveal their secret: a high IQ burnished with a great education. What these folks may not appreciate or fully understand is that most successful professionals thrive in their respective fields due to their EQ -- not IQ.
EQ (or emotional intelligence) is the heightened awareness of others' emotions, including your own. This vital trait goes beyond leaders trying to gauge an employee's mood -- it allows leaders to carefully examine business situations and approach them appropriately. Assessing the emotional element of a situation, whether positive or negative, will help you keep employees engaged and enable you to better understand their mindset and behavior.
It is also a powerful tool that pushes leaders to get things done. Over the years, I have seen the positive effects of EQ when working alongside leaders in companies large and small. Their ability to read employees' emotional state, reactions, and stress levels helps these men and women manage their teams with a strategy and approach that is both thoughtful and compassionate, but also direct and with trackable outcomes.
From my experience, I want to share a few valuable traits that leaders with high EQs have, in addition to some actionable tactics to help you lead with more emotional intelligence.

1. Reading employees' emotional strengths and weaknesses.

The value of having a high IQ has greatly diminished as a result of unlimited real time information available on the internet. However, you cannot find your employees' emotional strengths and weaknesses via a quick Google search. Emotional insights are not something that the internet readily provides.
The next time you and your team have an informal or strategic meeting, carefully analyze who interacts with others and who stays quiet. Who takes initiative and who must be directed? Yes, some people are naturally shyer than others, but often those employees who are disconnected have a dissatisfaction with their job and could be on their way out. Some proactively consider the needs of their clients or go above and beyond what is minimally required. Others do the bare minimum, demonstrating zero drive. Having the skill to be able to identify this activity only strengthens a leader's perspective, not to mention helping them to individually coach employees needing help, or ultimately weeding out those silently dissenting employees.

2. Knowing your own emotional strengths and weaknesses.

When advising Peter, the CEO of a large international company in Phoenix, I observed him interacting with his employees in a group meeting. While he thought the meeting was casual and comfortable, it was anything but. His approach was so aggressive, critical, and intimidating that his employees hardly spoke, and when they did, they only talked about what they thought "the boss wanted to hear." After quite a bit of this, I couldn't take it anymore and introduced myself, told them I was working with Peter and we were here in this meeting to learn more about their views and opinions about how things were going in the company. I asked them to go around the room, say their name, what job they had and to offer two examples of what was working and two examples of things not working. Within a few minutes, we had an extremely interesting, thoughtful and engaging conversation -- and Pete and I learned a lot. On the way back to his office, Pete asked me "how did you do this" to which I answered, "you were there in the room with me." Clearly, Pete was not comfortable in this type of situation where he did not need to be the CEO, but rather as someone who could provoke a conversation, listen and engage.
On a regular basis, it is critical for leaders to carefully analyze their behavior and understand how they are viewed by employees. From this analysis, look closely at what you do well and where you need to improve. This objective assessment of your own EQ will enable you as a leader to tap into known strengths and unearth hidden weaknesses for further development.

3. Socialization.

The ability to interact with others is essential to the long term success of your company. No wonder why there are so few introverts who run Fortune 500 companies -- leaders need to be able to effectively communicate, collaborate, and step out of their emotional comfort zone.
I recently discovered a perfect example of EQ in an unlikely spot. We have a new mail delivery person in my apartment building in NYC who decided to send an introductory letter to all the tenants in the building. Notice how he focuses on relationships and communication with those on his new route.
To All Tenants of xxxx:
My name is Anthony and I will be your new letter carrier. Some of you have seen me on the route before. With time, I will get to know each and every one of you. If you have any questions or concerns, please feel free to leave a note in your mailbox and I will try as best as best as I can to address them.
Thank you
Your letter carrier, Anthony
No letter carrier does this and I am still in awe of him for taking the initiative. As you can see from Anthony's letter, he is appealing to the emotional aspects of the constituents of his new route. Why? He is clearly taking his job seriously and wants his customers to feel comfortable and supported. If the leaders of the US Postal Service took a lesson from Anthony, they would be in much better shape. If Anthony the letter carrier can exhibit EQ, so can you. As a leader, you need to step out of your office and have real, human, conversations with your team. By understanding their morale and engagement in their work, you are able to not only motivate them but improve overall performance.

Takeaway

In order to be a leader, you must utilize both your intelligence (IQ) and your emotional intelligence (EQ). With your emotional intelligence -- really focus on being ultra-perceptive of situations, employees' attitudes, and their own approach to interaction. By keeping these three concepts in mind every day in the trenches, your reward is an unobstructed perspective of your company that can lead to productivity, strength, and longevity.

Comments

Popular posts from this blog

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

Java Functional Interfaces

  The term   Java functional interface   was introduced in Java 8. A   functional interface   in Java is an interface that contains only a single abstract (unimplemented) method. A functional interface can contain default and static methods which do have an implementation, in addition to the single unimplemented method. Here is a Java functional interface example: public interface MyFunctionalInterface { public void execute(); } The above counts as a functional interface in Java because it only contains a single method, and that method has no implementation. Normally a Java interface does not contain implementations of the methods it declares, but it can contain implementations in default methods, or in static methods. Below is another example of a Java functional interface, with implementations of some of the methods: public interface MyFunctionalInterface2{ public void execute(); public default void print(String text) { System.out.println(t...

Java Logger

In Java, logging is an important feature that helps developers to trace out the errors. Java is the programming language that comes with the logging approach. It provides a Logging API that was introduced in Java 1.4 version. It provides the ability to capture the log file. In this section, we are going to deep dive into the Java Logger API. Also, we will cover logging level, components, Logging handlers or appenders, logging formatters or layouts, Java Logger class, What is logging in Java? In Java, Logging is an API that provides the ability to trace out the errors of the applications. When an application generates the logging call, the Logger records the event in the LogRecord. After that, it sends to the corresponding handlers or appenders. Before sending it to the console or file, the appenders format that log record by using the formatter or layouts. Need for Logging It provides the complete tracing information of the application. It records the critical failure if any occur in ...