Tip 1 : Practice basic level codes in C and C++.Having knowledge in angular or react is highly recommended for a front end developer and dotnet or react for a backend developer.
Tip 2 : In case of aptitude, try to solve as many questions as possible and take sample tests and evaluate yourself on where to improve.
Tip 3 : Continuous preparation is the must needed one to clear any sort of interview process. Communication is most noted and plays a vital role .
Tip 1 : Mention only what you know clearly. Do not exaggerate and mention so many skills which you are not clear about.
Tip 2 : Be crisp and clear. Make a simple neat resume with a limit of 1 -2 pages holding only necessary technical information about your skillset, educational background and add-ons.
It was completely coding, aptitude and technical part where questions were categorised into 3 parts.30 minutes for each section.



Pattern for ‘N’ = 5:

‘N’ is always odd.
Step 1 : Understand the requirement and do a rough calculation on how to calculate the structure of pyramid.
Step 2 : Declare a variable where we are going to store the result .
Step 3 : Assign 3 variables i, j, k to introduce in the for loop and do iteration based on each array elements.
Step 4 : Once proper iteration is fine based on the logic we manually tried out, try to get it back on the screen. If you are not getting proper response, console.log the output and check where it is going wrong and try to correct it.
Step 5 : At least if you can display 50% of the expected structure , it would be great. So it is better that we always give it a try


The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.
Step 1 : Traverse the array from start to end.
Step 2 : For every element, traverse the array from start to that index and find the maximum height (a) and traverse the array from the current index to end, and find the maximum height (b).
Step 3 : The amount of water that will be stored in this column is min(a,b) – array[i], add this value to the total amount of water stored
Step 4 : Print the total amount of water stored.
It was a basic level round where they tested the language and the communication skills. It was a general topic and the most noted ones were who is initiating the discussion first or how good we are in communicating in front of audience.
What are the pros and cons of “Sudden huge increase in usage of Internet and technology”
Tip 1 : Wait for your turn to speak
Tip 2 : Be clear while speaking so that you are audible to everyone
Tip 3 : Take care of the ascent too, it should not be so much confusing to hear for the listeners
It was immediately after GD. And questions were raised from whatever we have mentioned in the resume. Some basic level and programming level questions were asked and it was to test whether we know the particular concept or not. In case of programming, they will give us a requirement and we will have to write the corresponding code for that particular question and explain it back to them with proper code .
Explain the difference between DBMS and relational DBMS
Tip 1 : Explain what is a database
Tip 2 : Give a short description on Database Management System with an example
Tip 3 : Give the description about Relational DBMS with an example and then explain what is the advantage of one over the other.




Step 1 : Figure out the logic for the particular pattern.
Step 2 : Declare necessary variable for storing the value and for iteration
Step 3 : With proper iteration and logic, try to display the same structure in the output.
It was a assignment round. Basically, it was to test our communication skills.
It was a skill test which was for testing verbal, hearing and speaking skill of a candidate. It had 4 rounds - Listening, Reading, Hearing and Verbal testing.
Tip 1 : Listen properly and answer the questions abruptly.
Tip 2 : While speaking, be clear that you are properly audible and use proper word frames in proper ascent.
Tip 3 : Be bold to speak out
Tip 4 : Write your content with proper grammar and verbal communication ways which makes it clear and easier to understand for the one who is evaluating
Based on all 4 rounds and it's scores, the HR round was basically to ensure if I was really interested to join the organisation with the specific package details and related information.
Tip 1 : Be bold and clear
Tip 2 : Tell them how passionate you are to justify that you will work for what you are paid for.

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