Tip 1: Solve at least 100 medium- to hard-level DSA questions.
Tip 2: Have at least 2 FSD projects.
Tip 3: Include only those skills on your resume that you are confident about.
Tip 1: Mention the technical aspects of your projects.
Tip 2: Don’t include skills that you have very little knowledge of.
It was conducted in the morning in my college’s computer lab.



1) An element of the ‘COORDINATES’ array is a pair of ‘X' and ‘Y’ coordinates of a point, i.e., COORDINATES[i] = (Xi, Yi).
2) |DISTANCE| represents the absolute value of distance.
3) All points are considered to be connected if there is exactly one simple path between two points.
4) According to Wikipedia, a simple path is a path in a plane that does not have repeating points.
Step 1: For the maximum, there will be at least 1 house in each of the first m−1 colonies, and the remaining houses will be in the last colony to get the maximum result.
Step 2: For the minimum, I knew that I had to divide the houses in such a way that almost all colonies have an equal number of houses.



I applied DP.
It was an aptitude test conducted in the college computer lab.
Graphs were provided, and all questions were based on them. For example, a bar graph was given showing data for a city or company, and the questions were related to interpreting the graph.
In one case, the electricity consumption of a town over five years was given. There were five questions related to the graph, such as identifying the increase in electricity consumption in a particular year compared to another year.
Another question set included a stacked bar graph where each bar represented airline ticket sales, and each segment of the bar represented a specific year. There were five graphs for different airlines. The questions mainly focused on mathematical calculations, such as comparing the sales of a particular year or a combination of years across different airlines.
Overall, there were six sets, each containing five questions. All followed a similar pattern, with only the context changing. The questions were based on mathematical calculations such as finding averages, percentage increases, and other related computations.
Tip 1: Read the data and the questions carefully.
Tip 2: Time is a key factor here. Some calculations required precision up to two decimal places, so you need to be quick with calculations. Calculators were not allowed, and the options were very similar.
Tip 3: Skip lengthy questions by keeping the remaining time in mind.
One hard DSA question was asked.



• You can make ‘B’ from ‘S’ by removing some characters and rearranging some characters zero or more times.
• Length of ‘S’ must be as minimum as possible.
Testcases are generated such that a substring always exists and is unique.
A = ninjas, B = sin
All possible substrings with which 'B' can be created are
"ninjas", "injas".
Hence the substring with minimum length is "injas".
Use the sliding window technique to solve this question.



The given linked lists may or may not be null.
If the first list is: 1 -> 4 -> 5 -> NULL and the second list is: 2 -> 3 -> 5 -> NULL
The final list would be: 1 -> 2 -> 3 -> 4 -> 5 -> 5 -> NULL
Find the second-highest odd marks from a table containing the marks scored by all students.
Tip 1: Use OFFSET and LIMIT with a WHERE clause.



If the input string is "abbc", then all the possible palindromic substrings would be: ["a", "b", "b", c", "bb"] and hence, the output will be 5 since we have 5 substrings in total which form a palindrome.
A string is said to be a 'Palindrome' if it is read the same forwards and backwards.
For example, “abba” is a palindrome, but “abbc” is not.
A 'Substring' is a contiguous sequence of characters within a string.
For example, "a", "b", "c", "ab", "bc", "abc" are substrings of "abc".
Used the Sliding Window technique.
It was in afternoon on Zoom.
Why should we hire you?
Tip 1: I explained the skills I bring with me.
Who is your idol, and why?
Tip 1: Explained Elon Musk's mindset of never giving up.
Explain the most challenging aspect of your project.
Tip 1: Explained My project.
Have you ever managed a group of people?
Tip 1: Explained a time when I was the group admin in a hackathon.
How will you handle deadlines?
Tip 1: Gave a typical answer about work management.
Tell me about yourself.
Tip 1: Gave a brief introduction.
What do you know about Amadeus?
Tip 1: I researched the company and explained what I knew about it.

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?