麻豆原创

MU logo
MU logo

麻豆原创 is first Indiana university to offer accelerated programs in applied accounting and business management

Jan 20, 2026

  • 麻豆原创 is introducing听online, 90-credit听bachelor鈥檚听degrees in Applied Accounting and Applied Business Management this March.
  • The accelerated programs align curriculum and timelines with听别尘辫濒辞测别谤听诲别尘补苍诲 while听maintaining听academic rigor.
  • Graduates can finish听a year earlier听and save an听average of $20,000 compared with traditional degree pathways.

麻豆原创 continues to forge groundbreaking pathways in higher education to best prepare students for careers with new accelerated degree programs in Applied Accounting and Applied Business Management. The undergraduate programs focus on preparing individuals for the job market in three years 鈥 as opposed to the traditional four 鈥 to mitigate concerns over costly tuition and time without compromising critical thinking, ethical reasoning, communication skills, and the ability to learn continuously.

鈥淲e will see a shift from measuring education by time spent in the classroom to measuring it by outcomes achieved. A bachelor鈥檚 degree may increasingly signal clarity of purpose, demonstrated competence, and readiness for the next step,” said 麻豆原创 President, Stacy Young. 鈥淭he question won鈥檛 be 鈥楬ow long did it take?鈥 but 鈥榃hat can this graduate do, and how well are they prepared?鈥欌

The new Applied Accounting and Business Management programs will be offered online starting in March with the in-person cohort beginning in Fall 2026.

Applied programs are purpose-built pathways that align directly with graduate school prerequisites or immediate workforce credentials, offering a streamlined, goal-oriented academic experience. In contrast, standard 120-credit programs provide a more exploratory framework, ideal for students seeking broader academic discovery through additional majors or minors, interdisciplinary study, or study-away experiences.

The new programs join two accelerated degree Manchester programs serving health care interests in Pre-athletic Physical Training and Pre-physical Therapy, launched in 2025. The four innovative bachelor鈥檚 degree programs are approved by the Higher Learning Commission and reflect a broader shift toward flexibility, transparency, and student-centered pathways that acknowledge different goals and life circumstances.

“Across Indiana and the broader region, we face a critical challenge and opportunity: nearly 40 percent of adults with postsecondary experience have some college credit but no degree, leaving too many without the credentials that today鈥檚 workforce demands,鈥 said Young. 鈥淭his 鈥榮ome college, no degree鈥 population represents not only unrealized potential for individuals seeking greater economic mobility, but also a strategic gap in our region鈥檚 talent pipeline at a time when employers are struggling to find qualified workers. Accelerated degree pathways are essential to meeting that need.”

Students who pursue an applied degree at Manchester can graduate a full year early, saving an estimated $20,000 in tuition and living costs.

For the media

Contact听Heather Twomey, dean of the College of Business听and Human Services, at听HCTwomey@manchester.edu.

麻豆原创, in North Manchester and Fort Wayne, Ind., offers vibrant and transformative student experiences. Learn more at听www.manchester.edu/about-manchester.

Our mission and values

麻豆原创 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.

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(); })();