Tip 1 : Practice previous year interview questions.
Tip 2 : They focus on OOPS concept so be clear in those.
Tip 3 : Should stand on your resume, whatever written there should be completely clear to you.
Tip 1 : Resume should be of one page with experience, projects, skills, education, certifications(not mandatory) columns in it.
Tip 2 : It is ok to have few things on resume but do not provide false information or points on which you cannot stand on if asked.
1. As soon as I fill the registration form the first step is to take short assessments on the Eduthrill platform.
2. One can take assessments any time according to their convenience there is no specific time for it.
3. One have to take atleast 20 assessments and have to score atleast 60% in them.
4. After 20 assessments one can take as many assessments as he/she wants to increase their score.
5. Each question has a specific time within which one has to answer it.(no negative marking)
6. One can take these 20 assessments in one go or according to their convenience.
This round contains only 1 coding question which you have to solve in the language selected by you at the time of registration.
(Note: One can have to attempt the question in C language is he/she had selected C++ language at the time of registration).




1. It is guaranteed that the given graph is DAG.
2. There will be no multiple edges and self-loops in the given DAG.
3. There can be multiple correct solutions, you can find any one of them.
4. Don’t print anything, just return an array representing the topological sort of the vertices of the given DAG.
This is a technical interview which was held on google meet. The interviewer helps me to be comfortable. He first asked me some basic questions on OOPS concepts like function overloading and overriding. Then he asked me to explain any of my project and also put some question around it. After that he asked me one DSA question and share a google docs on which I have to code it. Then we dry run the code and he was satisfied with the solution.



1. A subsequence is a sequence generated from a string after deleting some characters of string without changing the order of remaining string characters.
2. 'A' and 'B' will be non-empty strings.
This round is also a Technical Interview round. The main focus of interviewer was on OOPS concepts. Around 30mins he came up with OOPS questions only like abstract class, inheritance, interfaces, exception handling and alot of other topics. Then he asked some DBMS concepts like normalization and some SQL queries for which I gave him satisfactory answer. He also asked questions around Data structures like what are queues, stack, hashmap etc. In the end he asked one DSA question around Linked List.



The Linked Lists, where a1, a2, c1, c2, c3 is the first linked list and b1, b2, b3, c1, c2, c3 is the second linked list, merging at node c1.


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