Tip 1: Take all the rounds seriously and give your best in each of them.
Tip 2: There is a very small gap between the cutoffs of GenC, GenC Next, and GenC Pro.
Tip 1: Keep impactful projects in your resume that clearly showcase your skills.
Tip 2: Include an achievements section to highlight your key accomplishments.
It had AI-based tasks related to Reading, Listening, Speaking, and Grammar.
For example, the AI bot would speak, and we had to repeat it in our own voice.
There were fill-in-the-blank questions where we had to complete and speak full sentences.
There were also jumbled words where we had to form a sentence and speak it in our own voice.
An AI chatbot guided us through the tasks.
We were also asked to speak about a topic for one minute.
It was in afternoon, camera was on.
It was help on AON platform, had one quant round and 4 gamified rounds.
Gamified rounds were about
1. Identifying pattern
2. Logical Ability
3. Encode Decode
4. Mirror Images
The test was scheduled at 10 AM, and the camera was on throughout.
It included sections on coding, SQL, and web development.
There were two coding questions, two SQL questions, and one web development task.
One SQL query tested concepts like JOIN, GROUP BY, COUNT DISTINCT, and CONCAT, all within a single question.



I used HashSet for this.
Loop from lowest even number and check if present in the HashSet, if not return and break.
Input: ‘N’ = 5, ‘NUMS’ = {1, 2, 3, 5, 2}.
Output: 6.

The indices of the chosen elements are [0, 2, 4], hence sum = 1 + 3 + 2 = 6.
Note: Some of the invalid ways to choose the elements are:
Choose the elements with indices (0, 4), it is invalid because, among the pair of indices (1, 2) none of them were chosen.
Choose the elements with indices (0, 2), it is invalid because, among the pair of indices (3, 4) none of them were chosen.
Choose the elements with indices (1, 2), it is invalid because, among the pair of indices (0, 4) none of them were chosen.
Easy loop arr[i]+ arr[i+1] and check if it is odd.
Find artist_id where group_name = 'ECSTASY'.
Create a search bar that shows a list of suggestions as the user types. The suggestions should match the input text and update dynamically.
I built a search bar that shows suggestions as the user types. It filters items from a list and highlights the matching text. I also added support for arrow keys and clicking to select a suggestion. The dropdown hides when nothing is typed or when the user clicks outside.
The interview round consisted mainly of questions from the resume and DSA.
One DSA problem was asked to be coded live on an inbuilt compiler.
Questions were asked about the tech stack mentioned in the resume (Next.js).
Some questions around AI were also asked.



Input: ‘n’ = 5
Output: 0 1 1 2 3
Explanation: First 5 Fibonacci numbers are: 0, 1, 1, 2, and 3.
You don't need to print anything. Just implement the given function.
f(n)= f(n-1)+ f(n-2)
i used this formula for calculating nth number and then further printed using a for loop.
Later optimized it without using recursion.
Explain the four pillars of OOPS. (Learn)
Explain access modifiers in Java. (Learn)

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which data structure is used to implement a DFS?