Tip 1 : Prepared well for how to approach the solution of problem.
Tip 2 : Start with bruit-force approach and gradually optimize further.
Tip 1 : Whatever you write in resume, make sure you are enough confident and ready to explain it in a detail.
Tip 2 : Keep your resume as simple as possible. Don't go with highly designed format.
It was in the evening 08:00 PM. Environment was quite good and no any additional disturbance was there. Internet connectivity was also decent and I was very confident about this round.






n = 4, list: 1 -> 0 -> 1 -> 0.
Now in this example, the value in the linked list is 1010, which is 10 in Decimal.
Hence the answer is 10.
SQL -
Query the Name of any student in STUDENTS who scored higher than Marks. Order your output by the last three charactersof each name. If two or more students both have names ending in the same last three characters (i.e.: Bobby, Robby, etc.), secondary sort them by ascending ID.
Only Ashley, Julia, and Belvet have Marks > . If you look at the last three characters of each of their names, there are no duplicates and ‘ley’ < ‘lia’ < ‘vet’.
SELECT NAME FROM STUDENTS WHERE MARKS > 75 ORDER BY RIGHT(NAME, 3), ID ASC;
SQL -
Given the CITY and COUNTRY tables, query the names of all the continents (COUNTRY.Continent) and their respective average city populations (CITY.Population) rounded down to the nearest integer.
Note: CITY.CountryCode and COUNTRY.Code are matching key columns.
SELECT Country.Continent, FLOOR(AVG(City.Population))
FROM Country, City
WHERE Country.Code = City.CountryCode
GROUP BY Country.Continent ;
There were two interviewer taking my interview.
- They have started with Introduction about me and my family.
- The interviewer reviewed my resume and asked me about my projects and OOPs questions.
- Interviewer simply give SQL query to write. It was easy.
- After they have asked question based on my resume and asked me all the project in very detail.
- One puzzle they given to me to resolve.
- Which tool do you use for version control.
- Some consecutive question on GitHub like what if two person is writing and commit the same file at the same time.



1. The given string will only contain 0 and 1.



If the bus route is [3, 6, 7], then it will travel in sequence
3 > 6 > 7 > 3 > 6 > 7….
Values of A[i] are distinct.
The first part loop on routes and record stop to routes mapping route.
The second part is general bfs. Take a stop from queue and find all connected route.
The hashset seen record all visited stops and we won't check a stop for twice.
We can also use a hashset to record all visited routes, or just clear a route after visit.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?