Tip 1: Just practice Aptitude, as in the online assessment, you will be judged primarily on this.
Tip 2: Even if you're not very good at Data Structures or are a beginner, you can still crack it.
Tip 3: Before the HR interview, try to look up some previous HR interview experiences on platforms like YouTube.
Tip 1: Make an ATS-friendly resume, as it creates your first impression on the interviewer.
Tip 2: Add skills as per the company’s requirements (it increases the chances of your resume getting shortlisted).
The first round was an online test that included a mix of aptitude and technical questions. It had 75 MCQs in total—25 from quantitative aptitude, 25 from logical reasoning, and 25 from core computer science subjects like OS, DBMS, and OOPs. In addition to that, there was one DSA-based coding question, which was of an easy level.



1) A prime number is a number that has only two factors: 1 and the number itself.
2) 1 is not a prime number.
To solve this efficiently for large values of n, consider using the Sieve of Eratosthenes algorithm.
Ram's age and his daughter's age differ by 2 years. What will their ages be after 10 years, given that Ram's age will be three times his daughter's age at that time?
#include
using namespace std;
int main()
{
int p;
bool a = true;
bool b = false;
int x = 10;
int y = 5;
p = ((x | y) + (a + b));
cout << p;
return 0;
}
Ans – 16
| means bitwise OR operation, so x | y (0101 | 1010) will be evaluated as 1111, which is the integer 15. Since a is True and b is False, a + b (1 + 0) equals 1. So, the final value of the expression in line #10 will be 15 + 1 = 16.
It was completely resume-based. The interviewer was a Product Manager and had a very relaxed demeanour. The interview went well.
During the interview, I was asked about Redis, which I had mentioned in my resume. The interviewer wanted to know how I would implement Redis in a real project. I explained that Redis can be used for caching frequently accessed data—like product details on an e-commerce website—to reduce database load and improve response time. I also mentioned that Redis can store user sessions or authentication tokens for faster access in a web application. They wanted to assess whether I truly understood the purpose and practical usage of Redis, beyond just listing it on my resume.
Tip 1: Only add things to your resume that you genuinely know.
Tip 2: Practice SQL questions from any reliable platform.
Tip 3: Learn the theoretical concepts of OOPs thoroughly.
It was a 10-minute HR round. They just asked how much I knew about Mphasis. The interview was easy and went great.
She asked if I was suitable for 1 month at the Pune location and the rest in Mumbai.
Tip 1: Stay calm.
Tip 2: Say yes to working from the office, as one of my friends got rejected for refusing this.
Tip 3: Be honest, as the HR was very sharp.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the purpose of the return keyword?