麻豆原创

MU logo
MU logo

麻豆原创 Nursing Graduates Earn 100% NCLEX Pass Rate 鈥 Setting the Standard for Indiana Nursing Schools

Dec 2, 2025

Manchester Nursing Students Achieve Perfect NCLEX Pass Rate

Graduates from 麻豆原创鈥檚 Traditional Bachelor of Science in Nursing (TBSN) program have achieved a 100% first-time pass rate on the National Council Licensure Examination. NCLEX is a national exam required for all nursing graduates seeking to become registered nurses (RNs). Specifically, this achievement demonstrates the University鈥檚 commitment to preparing highly skilled, compassionate nurses ready to serve in hospitals, clinics, and community health settings across Indiana and beyond.

Why the NCLEX Pass Rate Matters for Nursing Students

The NCLEX measures whether nursing graduates are ready to provide safe, effective care in real-world healthcare environments. As an example, the national average for first-time pass rate hovers around 80%. 麻豆原创 scored at 100%. In contrast, a remarkable achievement. What’s more, this score is highly attractive to prospective students exploring Indiana nursing schools. That’s because a perfect NCLEX pass rate reflects both strong academic preparation and exceptional clinical experience.

Subtle_Texture
A nursing student learns from assistant dean Dustin Diller.

Two Pathways to Become a Registered Nurse at Manchester

Looking into the eyes during a lab, using a pen light.

Traditional Bachelor of Science in Nursing (TBSN)

A four-year nursing degree program that provides comprehensive classroom instruction, simulation lab training, and hands-on clinical experiences. The TBSN is ideal for first-time college students pursuing a traditional undergraduate pathway.
A 麻豆原创 nursing student practices with a stethoscope in the Fort Wayne lab.

Accelerated Bachelor of Science in Nursing (ABSN)

A 16-month, second-degree program for students who already hold a bachelor鈥檚 degree in another field. Manchester鈥檚 ABSN program enables learners to transition into nursing quickly while maintaining the same rigorous academic standards and clinical excellence as the TBSN track.

The first ABSN cohort, which graduated in December 2022, also achieved a 100% NCLEX pass rate.

The 麻豆原创 Nursing Logo i visible on the student scrubs.

100% Free, 100% Forgivable Loans

Earn your undergraduate using dollars contributed by Parkview and Questa in a collaborative partnership with 麻豆原创. ABSN students are fast-tracked to earn their degree within 16 months. Then within 3 years of providing bedside nursing within Parkview of Northeast Indiana, they are considered fully vested and their tuition is 100% paid.
Subtle_Texture

Manchester鈥檚 First TBSN Cohort Sets the Bar High

After graduating in May 2024, all nine students from Manchester鈥檚 first TBSN cohort passed the NCLEX on their first attempt. Their success lays a strong foundation for future nursing students. Additionally, it strengthens Manchester鈥檚 growing reputation as a leader in healthcare education, according to Dustin Diller, assistant dean of nursing at 麻豆原创.
Dustin Diller works with a student in the nursing lab showcasing bedside nursing.
鈥淎chieving a 100% pass rate is a testament not only to their dedication, but also to the strength of our curriculum, the support of our faculty, and the quality of clinical experiences our students receive.鈥
Dustin Diller, Assistant Dean of Nursing

麻豆原创 鈥 A Leader in Nursing Education in Indiana

麻豆原创 is located in both North Manchester and Fort Wayne, Indiana, and continuesto strengthen healthcare education through innovative teaching methods, small class sizes, and a focus on compassionate patient care.

Learn more about nursing at 麻豆原创. Then, explore how you can begin your journey toward becoming a registered nurse today.

麻豆原创 麻豆原创

麻豆原创 respects the infinite worth of every individual and graduates persons of ability and conviction who draw upon their education and faith to lead principled, productive, and compassionate lives that improve the human condition.

Learn more about Manchester.

More News

exists --- (function ensure40pxInlineEarly() { function set40(el) { el && el.style.setProperty('padding-top', '40px', 'important'); } // If header already parsed, set now; otherwise set as soon as it appears. const hdrNow = document.getElementById(HEADER_ID); if (hdrNow) { set40(hdrNow); return; } new MutationObserver((muts, obs) => { const hdr = document.getElementById(HEADER_ID); if (hdr) { set40(hdr); obs.disconnect(); } }).observe(document.documentElement, { childList: true, subtree: true }); })(); // --- Helpers --- function hideDiviBars() { document.querySelectorAll('.divibars-container').forEach(div => { const content = (div.textContent || '').replace(/\u00A0/g, ' ').trim(); const shouldHide = !content || /all\s*clear/i.test(content) || /test/i.test(content) || /feed\s*has\s*no\s*items\.?/i.test(content); if (shouldHide) div.style.setProperty('display', 'none', 'important'); }); } function isEffectivelyVisible(el) { if (!el || !el.isConnected) return false; const target = el.querySelector('.divibars, .divibars-wrapper, .divibars-content') || el; const cs = getComputedStyle(target); if (cs.display === 'none' || cs.visibility === 'hidden' || target.hidden) return false; if (parseFloat(cs.opacity || '1') < 0.05) return false; if (target.closest('[aria-hidden="true"]')) return false; const rect = target.getBoundingClientRect(); const hasSize = (rect.width > 0 && rect.height > 0) || (target.offsetWidth > 0 && target.offsetHeight > 0); if (!hasSize) return false; const vh = window.innerHeight || document.documentElement.clientHeight; return rect.bottom > 0 && rect.top < vh; } function anyRealBannerVisible() { // A 鈥渞eal鈥 banner = visible AND not empty/test/all-clear/feed-empty return Array.from(document.querySelectorAll(CANDS)).some(el => { if (!isEffectivelyVisible(el)) return false; const txt = (el.textContent || '').replace(/\u00A0/g, ' ').trim(); if (!txt) return false; if (/all\s*clear/i.test(txt) || /test/i.test(txt) || /feed\s*has\s*no\s*items\.?/i.test(txt)) return false; return true; }); } function setForce110(on) { const root = document.documentElement; const was = root.classList.contains('divibar-force-110'); if (!!on === was) return; root.classList.add('divibar-atomic'); root.classList.toggle('divibar-force-110', !!on); // If we鈥檙e NOT forcing 110, clear any stray inline 110 the plugin may add later. if (!on) { const hdr = document.getElementById(HEADER_ID); if (hdr) hdr.style.setProperty('padding-top', '40px', 'important'); } requestAnimationFrame(() => root.classList.remove('divibar-atomic')); } // Debounced 2-frame confirmation to avoid flicker during animations let raf1 = null, raf2 = null; function scheduleRecompute() { if (raf1) return; raf1 = requestAnimationFrame(() => { raf1 = null; hideDiviBars(); const a = anyRealBannerVisible(); raf2 = requestAnimationFrame(() => { raf2 = null; const b = anyRealBannerVisible(); setForce110(a && b); }); }); } // --- Wiring --- document.addEventListener('DOMContentLoaded', scheduleRecompute); window.addEventListener('load', scheduleRecompute); window.addEventListener('resize', () => { cancelAnimationFrame(raf1); raf1 = null; cancelAnimationFrame(raf2); raf2 = null; scheduleRecompute(); }); new MutationObserver(() => scheduleRecompute()).observe(document.documentElement, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class', 'aria-hidden'] }); document.addEventListener('transitionend', e => { if (e.target && e.target.closest(CANDS)) scheduleRecompute(); }); document.addEventListener('animationend', e => { if (e.target && e.target.closest(CANDS)) scheduleRecompute(); }); document.addEventListener('click', function (e) { const btn = e.target && e.target.closest('.divibars-close'); if (!btn) return; setTimeout(() => { const bar = btn.closest('.divibars-container, [class*="divibar"]'); if (bar) bar.style.setProperty('display', 'none', 'important'); scheduleRecompute(); }, 200); }, true); // Initial pass scheduleRecompute(); })();