Debater
MBTI name | ENTP | Extroverted Intuitive Thinking Perceiving
Socionics name | ILE | Intuitive Logical Extrovert

Personality overview
This person is an innovator with a sharp mind – creativity driven by curiosity and a desire for the new with careful logical analysis. They’re not just a dreamer with ideas; they’re a genius who explores the world with curiosity, invents new approaches, and makes sure everything makes sense. Their strength lies in the ability to think “differently”, while still seeing the bigger picture and using reason. They enjoy debating with others to test their arguments – that’s why they’re often called a debater.
<div style="width:100%;height:500px;" data-fillout-id="rwiDTxNYXTus" data-fillout-embed-type="standard" data-fillout-inherit-parameters data-fillout-dynamic-resize></div><script src="https://server.fillout.com/embed/v1/"></script>
„Logic will get you from A to B. Imagination will take you everywhere.“– Albert Einstein
Functions – Why this personality the way it is?
paragraph
| 🤩 Important functions | 😴 Unimportant functions | |
| 🔋 Strongest | 💡Ne Opportunity intuition | 🕯️ Ni Temporal intuition |
| 🔋 Strong | 📖 Ti Analytical thinking | 🛠️ Te Practical thinking |
| 🪫 Weak | 🏃➡️ Se Force sensing | 🧘 Si Comfort sensing |
| 🪫 Weakest | 😌 Fi Emotional feeling | 😍 Fe Relational feeling |
| 🤩 Important functions | 😴 Unimportant functions | |
| 🔋 Strongest | 💡Ne Opportunity intuition | 🕯️ Ni Temporal intuition |
| 🔋 Strong | 📖 Ti Analytical thinking | 🛠️ Te Practical thinking |
| 🪫 Weak | 🏃➡️ Se Force sensing | 🧘 Si Comfort sensing |
| 🪫 Weakest | 😌 Fi Emotional feeling | 😍 Fe Relational feeling |
paragraph
The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
Strengths & Weaknesses
As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!
Relationships
Career
Famous people
import React, { useState } from "react";
import { Button } from "@/components/ui/button";
import { Card, CardContent } from "@/components/ui/card";
const questions = [
{ id: 1, text: "I often take the lead in starting conversations, even with people I’ve just met.", trait: "Initiating" },
{ id: 2, text: "In group settings, I usually wait for others to approach me first.", trait: "Receiving" },
{ id: 3, text: "I find it easy to show my emotions and thoughts openly.", trait: "Expressive" },
{ id: 4, text: "People often tell me I’m hard to read or emotionally reserved.", trait: "Contained" },
{ id: 5, text: "I enjoy being part of large social gatherings with many people.", trait: "Gregarious" },
{ id: 6, text: "I prefer deep one-on-one conversations over group interactions.", trait: "Intimate" },
{ id: 7, text: "I feel restless when I’m not actively doing something.", trait: "Active" },
{ id: 8, text: "I often take time to think things through before acting.", trait: "Reflective" },
{ id: 9, text: "I get excited easily and tend to show it visibly.", trait: "Enthusiastic" },
{ id: 10, text: "I am generally calm and reserved, even in exciting situations.", trait: "Quiet" },
];
const traitPairs = {
Initiating: "Receiving",
Expressive: "Contained",
Gregarious: "Intimate",
Active: "Reflective",
Enthusiastic: "Quiet",
};
export default function PersonalityQuiz() {
const [answers, setAnswers] = useState({});
const [results, setResults] = useState(null);
const handleAnswer = (id, value) => {
setAnswers({ ...answers, [id]: value });
};
const calculateResults = () => {
const traitScores = {};
questions.forEach(({ id, trait }) => {
const answer = answers[id];
if (answer === "agree") {
traitScores[trait] = (traitScores[trait] || 0) + 1;
}
});
const output = Object.entries(traitPairs).map(([traitA, traitB]) => {
const scoreA = traitScores[traitA] || 0;
const scoreB = traitScores[traitB] || 0;
const leaning = scoreA > scoreB ? traitA : scoreB > scoreA ? traitB : "Balanced";
return { facet: `${traitA} vs. ${traitB}`, leaning };
});
setResults(output);
};
return (
<div className="p-6 max-w-3xl mx-auto space-y-6">
<h1 className="text-3xl font-bold text-center">Personality Questionnaire</h1>
{questions.map((q) => (
<Card key={q.id} className="p-4">
<CardContent>
<p className="mb-4">{q.text}</p>
<div className="flex gap-4">
<Button
variant={answers[q.id] === "agree" ? "default" : "outline"}
onClick={() => handleAnswer(q.id, "agree")}
>
Agree
</Button>
<Button
variant={answers[q.id] === "disagree" ? "default" : "outline"}
onClick={() => handleAnswer(q.id, "disagree")}
>
Disagree
</Button>
</div>
</CardContent>
</Card>
))}
<div className="text-center">
<Button onClick={calculateResults} className="mt-6">
Submit
</Button>
</div>
{results && (
<div className="mt-8">
<h2 className="text-2xl font-semibold mb-4">Your Results</h2>
<ul className="space-y-2">
{results.map((res, index) => (
<li key={index} className="border rounded p-3">
<strong>{res.facet}:</strong> {res.leaning}
</li>
))}
</ul>
</div>
)}
</div>
);
}
