Skip to main content

TOP 10 IIM Programs for Part time & Merit + Scholarships


Eligibility for Part-Time MBA Programs


Most of the top IIMs offering part-time MBA programs accept CAT scores as a key part of their admission criteria. However, some programs also consider scores from GMAT, GRE, or the institute's own entrance exam. Here̢۪s an overview:

1. Eligibility Criteria:
   - Work Experience: Generally, candidates need to have a minimum of 3-5 years of work experience to be eligible for part-time programs.
   - CAT/GMAT/GRE Scores: Many programs require a valid CAT score, while others accept GMAT or GRE.
   - Bachelor’s Degree: A minimum of 50% marks in the undergraduate degree is usually required. There are relaxed criteria (45%) for SC/ST/PwD candidates.

Free Merit-Based Scholarships
While part-time programs at IIMs do not typically offer full merit-based scholarships, there are financial aid and fee concessions available, including:

1. Merit-Based Scholarships:
   - IIMs usually have scholarships for full-time programs but less frequently for part-time programs.
   - A few IIMs offer scholarships for high CAT/GMAT/GRE scorers, outstanding work achievements, or diversity criteria.

2. Need-Based Financial Aid:
   - Some IIMs, such as IIM Bangalore and IIM Calcutta, have provisions for need-based financial assistance, even for part-time programs, based on family income and financial background.

3. Corporate Sponsorships:
   - Many working professionals pursue part-time MBA programs with corporate sponsorship, where the employer covers part or all of the fees.

4. Fee Installment Options:
   - IIMs provide the option to pay tuition fees in installments, making it more manageable for working professionals.

The availability of scholarships and financial aid varies widely across IIMs, with each institute having its own policies.

---

Top 10 IIMs Offering Part-Time MBA Programs

1. IIM Bangalore
   - Program: Post Graduate Programme in Enterprise Management (PGPEM)
   - Format: Weekend classes for working professionals.
   - Duration: 2 years.

2. IIM Ahmedabad
   - Program: ePost Graduate Programme in Management (ePGP)
   - Format: Online sessions with periodic in-campus modules.
   - Duration: 2 years.

3. IIM Calcutta
   - Programs: LEAD, Executive Program in Business Management (EPBM), and Executive Program in Global Business Management (EPGBM).
   - Format: Hybrid, with a mix of online and in-person classes.
   - Duration: 1-2 years depending on the program.

4. IIM Lucknow
   - Programs: Certificate Programme in Business Analytics (CPBAE), General Management Programme for Executives (GMPE).
   - Format: Online with in-person sessions.
   - Duration: 1 year.

5. IIM Kozhikode
   - Program: Executive Post Graduate Programme (ePGP)
   - Format: Online classes with campus immersion modules.
   - Duration: 2 years.

6. IIM Indore
   - Program: General Management Programme for Executives (GMPE)
   - Format: In-person classes.
   - Duration: 1 year.

7. IIM Tiruchirappalli
   - Program: Post Graduate Program in Business Management (PGPBM)
   - Format: Weekend classes.
   - Duration: 2 years.

8. IIM Rohtak
   - Program: Executive Post Graduate Diploma in Management (EPGDM)
   - Format: Hybrid, with a mix of online and offline sessions.
   - Duration: 2 years.

9. IIM Raipur
   - Program: Executive Fellow Programme in Management (EFPM)
   - Format: Blended learning approach.
   - Duration: 2 years.

10. IIM Kashipur
    - Program: Executive Post Graduate Programme in Management (EPGPM)
    - Format: Weekend classes.
    - Duration: 2 years.

Comments

Popular posts from this blog

"How to maintain or retain tabs in same tab after button click events or postback?" using JQuery in ASP.NET C#

In this post I'll share an details about " How to maintain or retain tabs in same tab after button click events or postback? " Step 1: you need to download Jquery and JQueryUI Javascript libraries from this site http://jqueryui.com/ Step 2: As usually you can create ASP.NET website from Visual Studio IDE and add Jquery and JqueryUI plugins in the header section of aspx page. Step 3: Add HiddenField control inside aspx page which is very useful to retain tab in same page Step 4: Use the HiddenField ID in Jquery code to indicate that CurrentTab Index Step 5: In code Behind, using Enumerations concept give the tab index values as user defined variable  Step 6: Use the Enum values in every Button click events on different tabs to check that tab could be retained in the same tab Further, Here I'll give the code details and snap shot pictures, 1. Default.aspx: Design Page First Second Third ...

Guidewire Related Interview Question and answers part 1

common Guidewire questions and answers 20 Guidewire BC Q&A Top 100 Guidewire Interview FAQ Guidewire Claimcenter 20 Interview Questions Guidewire Rating concepts

Login and Registration forms in C# windows application with Back end Microsoft SQL Server for data access

In this article, I'm gonna share about how to make login and register form with MS SQL database; 1. Flow Chart Logic 2. Normal Features 3. Form Designs Login Form Design Sign in Form Design Password Retrieve Form 4. Database Design and SQL queries and Stored Procedure Create new Database as "schooldata" create table registerdata (  ID int identity,  Username nvarchar(100),  Password nvarchar(100),  Fullname  nvarchar(100),  MobileNO nvarchar(100),  EmailID nvarchar(100)  ) select * from registerdata create procedure regis (  @Username as nvarchar(100),  @Password as nvarchar(100),  @Fullname as nvarchar(100),  @MobileNO as nvarchar(100),  @EmailID as nvarchar(100)  ) as begin insert into registerdata (Username, Password, Fullname, MobileNO,EmailID) values (@Username, @Password, @Fullname, @MobileNO, @EmailID) ...