| Step | MS & Direct PhD Admissions | PhD Admissions | Status |
| Submission of online application (at the IITM research portal) |
Anytime
Admissions Mode.(*) |
Open (*) | |
| Announcement of Shortlist (for interview) |
Shortlists for MS (HTRA/NHTRA), Direct PhD (HTRA), PhD (HTRA/NHTRA) |
Interview Dates 24th Nov Forenoon: MS written test 24th Nov Afternoon: Direct PhD interviews 25th Nov: MS interviews (Continue on 26th Nov forenoon, if required) 26th Nov Forenoon: PhD written test 26th Nov Afternoon: PhD interviews 27th Nov: PhD Interviews 28th Nov Forenoon: Interviews for External/Part-Time/Project |
|
| Final Interview |
24/11/25 and 25/11/25 | MS (HTRA) candidates to be considered for Round 2
interviews. 26/11/25 and 27/11/25 | PhD (HTRA) candidates to be considered for Round 2 interviews. |
26th Nov Afternoon: PhD interviews 27th Nov: PhD Interviews |
|
Recommended
candidates
|
Candidate List | ||
| Category | IIT (No GATE) | Non-IIT with valid GATE / UGC-NET | |||
|---|---|---|---|---|---|
| UG Marks | UG Marks | GATE | UGC-NET (CS) | UGC-NET (Math) | |
| General | 75 | 70 | 600 | 200 | 140 |
| OBC-NCL / EWS | 75 | 63 | 540 | 180 | 126 |
| SC / ST / PwD | 75 | 56 | 300 | 100 | 70 |
| Category | Marks | GATE | UGC-NET (CS) | UGC-NET (Math) |
|---|---|---|---|---|
| General | 67 | 600 | 200 | 140 |
| OBC/EWS | 60.3 | 540 | 180 | 126 |
| SC/ST/PwD | 53.6 | 300 | 100 | 70 |
| Category | CFTI (No GATE) | Non-CFTI UG | GATE |
|---|---|---|---|
| General | 75 | 70 | 600 |
| OBC/EWS | 75 | 70 | 540 |
| SC/ST/PwD | 75 | 70 | 300 |
The written test will cover core areas of Computer Science and Engineering, including C
programming, digital logic, discrete mathematics, data structures, algorithms, computer organization
/ architecture, theory of computation, operating systems, database management systems, compiler
design, computer networks, In addition, there will be analytical thinking questions. The details of
the interview procedure for:
MS,
PhD,
Direct PhD and
Ext/PT/Project
admissions are now updated.
Queries related to MS and PhD admissions may be sent to admissions@cse.iitm.ac.in
Several students ask us how to prepare for the MS/Ph.D. interviews and what we are looking for. We are testing for the depth of your grasp on Computer Science concepts and generally ask reasoning rather than information based questions. Below are some resources that should help you prepare.
Here are some sample questions we have asked students in the past. Please do not email us for solutions.
void transfer(account *a, account *b)
{
if (a->money > 0)
{
a->money--;
b->money++;
}
}
The transaction could be initiated by users through an ATM machine that would invoke this function at a central server. When there was only one ATM machine, things were working fine. However, when multiple ATM machines were installed and users could simultaneously invoke the transfer() function, problems started happening due to software concurrency issues.
Below are some resources that may be helpful for you to prepare. Again, we make up our own questions so these are just for you to get some practice in solving problems.
Here are some interesting and fun links that talk about experiences of Ph.D. students from around the world.