Tip 1 : Always practice what you studied
Tip 2 : You should prepare a major project
Tip 3 : Do prepare for simple coding questions always
Tip 1 : Always mention one major project, more are plus point
Tip 2 : structure it well, do not make more than 2 pages if it is big but one page is always preferable
Tip 3 : always mention what you actually know , do not false things
It was a mcq round based on computer fundamentals, aptitude, reasoning and english
This round was simple so anyone having basic knowledge of quants can solve that question
In this round firstly interviewer asked me some basic questions of programming languages and data structures
Then she gave me one linked list question to solve in front of her and wrote the code for that



Assuming the linked list is 3 -> 2 -> 3 -> 4 -> 2 -> 3 -> NULL.
Number ‘2’ and ‘3’ occurs more than once. Hence we remove the duplicates and keep only their first occurrence. So, our list becomes : 3 -> 2 -> 4 -> NULL.
This round was a kind of managerial round



1. You can return the list of values in any order. For example, if a valid triplet is {1, 2, -3}, then {2, -3, 1}, {-3, 2, 1} etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
I used two loops to find three numbers in array using set()
It was a simple discussion round
They asked some questions from my projects

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: