Tip 1: Prepare for data structure coding questions.
Tip 2: Read the multiple-choice questions (MCQs) available on the internet for online assessments.
Tip 3: Focus on improving your communication skills.
Tip 1: Mention communication skills on your resume.
Tip 2: Write about projects that you can explain in an interview.
The candidates were given three days to complete the test in this round. They can complete the test anytime between those three days. There were 45 multiple-choice questions to be attempted in the 90 minutes.
Two trains for Mumbai leave Delhi at 6 am and 6.45 am and travel at 100 kmph and 136 kmph respectively. How many kilometres from Delhi will the two trains be together:
Tip 1: Practice aptitude questions. It will help in solving questions faster.
Tip 2: Read the question carefully
The present ages of Sameer and Anand are in the ratio of 5: 4 respectively. Three years hence, the ratio of their ages will become 11: 9 respectively. What is Anand's present age in years?
Tip 1: Practice aptitude questions. It will help in solving questions faster.
Tip 2: Read the question carefully.
A hall is 15 m long and 12 m broad. If the sum of the areas of the floor and the ceiling is equal to the sum of the areas of the four walls, the volume of the hall is:
Tip 1: Practice aptitude questions. It will help in solving questions faster.
Tip 2: Read the question carefully
In a box, there are 8 red, 7 blue and 6 green balls. One ball is picked up randomly. What is the probability that it is neither red nor green?
Tip 1: Practice aptitude questions. It will help in solving questions faster.
Tip 2: Read the question carefully
In SQL, which command(s) is(are) used to change a table's storage characteristics?
Tip 1: Study the SQL MCQs available on the net.
Tip 2: Read the question carefully.
What is the output of the SQL statement?
SELECT ROUND(45.926, -1) FROM DUAL;
Tip 1: Study the SQL MCQs available on the net
Tip 2: Read the question carefully
Solution -
Will round the number 45.926 to the nearest multiple of 10 because of the "-1" as the second argument to the ROUND function. Specifically, it will round to the nearest tens place.
So, the result of rounding 45.926 to the nearest tens place is 50.
Which of the following SQL commands can be used to add data to a database table?
Tip 1: Study the SQL MCQs available on the net
Tip 2: Read the question carefully
Which of the following features is required to be supported by the programming language to become a pure object-oriented programming language?
Tip 1: Prepare data structures in detail
Tip 2: Read the question carefully
For inserting a new line in a C++ program, which one of the following statements can be used?
Tip 1: Prepare data structures in detail
Tip 2: Read the question carefully
If the size of the stack is 10 and we try to add the 11th element in the stack then the condition is known as?
Tip 1: Prepare data structures in detail
Tip 2: Read the question carefully
This round was conducted on Myanatomy, and it had medium-level coding questions. It was 60 minutes long test.



A mapping from Digits to Letters (just like in Nokia 1100) is shown below. Note that 1 does not map to any letter.

Step 1: Define a mapping of digits to letters, just like on a telephone keypad.
Step 2: Initialize an empty list to store the results.
Step 3: Define a recursive function, and generate combinations, that take the following parameters:
Digits: The remaining digits to process.combination: The current combination of letters.Inside the generate Combinations function:
-> Check if there are no more digits remaining (len(digits) == 0). If true, add the combination to the results list and return.
-> Get the letters corresponding to the first digit in the digits string.
Could you go through each letter and recursively call to generate Combinations with the remaining digits and the updated combination?
Step 5: Call the generateCombinations function initially with the input digits and an empty string as the initial combination.
Step 6: Return the list of results.



1. There might be duplicates present in the array.
2. The order of the permutations in the output does not matter.
3. Do not use any kind of in-built library functions to find the answer.
This round was conducted on the Myanatomy platform. It was 30 minutes long. The interviewer was good and made me comfortable.
What is an index in SQL? What are the different types of indexes available? (Learn)
Tip 1: Explain the databases in detail.
Tip 2: Answer confidently.
It was conducted on the Myanatomy platform. It was just conducted to check the communication skills and if the candidate can relocate to the base location.
Give your introduction. Explain any major project you have done.
Tip 1: Explain the project which you can explain well
Tip 2: Answer confidently
Are you comfortable with relocation?
Tip 1: Better to answer yes to this question.
Tip 2: Hear the question carefully.
Do you have any plans for a Master's degree?
Tip 1: Don't hide anything, speak the truth.
Tip 2: Answer confidently.

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