Summary
I interviewed at Airtel Payment Bank for a Software Engineer (Java) role in September 2023. Unfortunately, the experience was quite negative due to the interviewer's unprofessional conduct, and I was ultimately rejected.
Full Experience
I had an interview for a Software Engineer (Java) role at Airtel Payment Bank in September 2023. My interview was conducted by a person named Kajal, who displayed a rather unaccommodating attitude throughout the process. She asked me a single question, and I proceeded to explain my solution and successfully ran the code. While I was in the process of typing, she twice asked if I wanted a different question, to which I replied that I was comfortable with the current one as I knew the solution. When I executed my code, I initially used my own test cases. This led to her raising her voice, questioning why I used my test cases instead of hers. I then offered to run her test cases, but she abruptly declared the interview was over, stating there was no need. I was subsequently rejected, and I honestly don't understand the reason behind it. I felt the overall experience was poor and perhaps she was hesitant to have talented individuals as colleagues.
Interview Questions (1)
Given an Object of a Student class which has three attributes: ID, NAME, and CLASS. The task is to return all student objects that share the same NAME and ID combination.
Example:
Input: (1, abc, A), (2,abc, B), (1, abc, C)
Output: (1, abc, A), (1,abc, C)