u/Accomplished-Net4808

▲ 3 r/u_Accomplished-Net4808+2 crossposts

99.6X %ile in Quants (CAT/XAT) & 97.6 %ile XAT overall with 1 month of self-study. DMs open for free guidance! 📚

Hey folks,

If you are prepping for CAT or XAT and feeling overwhelmed by the sheer amount of paid courses out there, take a breath. You don't necessarily need them.

I managed to score a 97.6 percentile overall in
XAT, along with 99.6x in Quants (CAT & XAT) and 97 in DILR (CAT). I achieved this with strictly 1 month of prep, zero coaching, and zero paid materials. All I used were 3 books and YouTube concept videos.

I'd love to connect with aspirants and solve your doubts regarding anything from building a study schedule to navigating college admissions.

Drop a comment or slide into my DMs if you need help, resources, or just want to discuss strategy!

reddit.com
u/Accomplished-Net4808 — 3 days ago
▲ 0 r/MbaCet

Want to calculate your score easily just got to objection tacker in CET dashboard from desktop -> go to inspect -> go to console and then paste this code given below and hit enter it will calculate your score in an instant:

let correct = 0;

let wrong = 0;

let unattempted = 0;

const tables = document.querySelectorAll('table.table-responsive.table-bordered.center');

tables.forEach(table => {

const correctSpan = table.querySelector('tr td:nth-child(1) span');

const candidateSpan = table.querySelector('tr td:nth-child(2) span');

if (correctSpan && candidateSpan) {

const correctAns = correctSpan.innerText.trim();

const candidateAns = candidateSpan.innerText.trim();

if (candidateAns === "" || candidateAns === "--") {

unattempted++;

} else if (correctAns === candidateAns) {

correct++;

} else {

wrong++;

}

}

});

console.log(`🎉 YOUR EXACT SCORE: ${correct}`);

console.log(`📊Breakdown -> Correct: ${correct} | Wrong: ${wrong} | Unattempted: ${unattempted}`);

reddit.com
u/Accomplished-Net4808 — 20 days ago