Tip 1 : Here I would like to advise practicing many questions on data structures, DBMS and algorithms as you can because it is the question practice that would help you in building your concepts strong. I practiced a lot of questions on Interview from all modules of data structures and algorithms because there you can find the recent interview questions that you should know. It is the main crux of any interview
Tip 2 : Go through Leetcode in details as it has a good variety of questions sorted on topic wise difficulty level where you can try to solve at least 40 questions for each data structure, DBMS and algorithm. Regularly participate in the contests happening normally on weekly basis there so that you could know about your weak areas to improve. This will boost your confidence.
Tip 3 : Also clear about some basic concepts of Operating systems and Databases along with coding , that would help in your interviews. One more thing is that do some good research about the company's goal and vision and be prepared to ask some company-related knowldege and queries that show your interest in the company. This shows your interest about the company
Tip 1 : Your Resume should consist of as many as good skills, projects, and achievements and award won, if any. Projects would play a crucial part in your interview and you should have at least one most relevant and good project that shows how strong your concepts are in development. The good project gives you an added advantage.
Tip 2 : Never fake on your resume and like If you have worked upon some technology for the project part only and don't know the proper depth you could write basics only in your resume. If an misleading information is provided by you than you are going to caught as you will not be able to explain if any question is asked around that.
Debugging: This section contained 7 debugging problems, which were having code snippets that have logical error that needs to be analysed and recified.
Reasoning Ability: This section was aving medium level verbal reasoning questions and few aptitude questions.
Coding: This section was having 2 coding problems to be resolved.


If the given matrix is:
[ [1, 2, 5],
[3, 4, 9],
[6, 7, 10]]
We have to find the position of 4. We will return {1,1} since A[1][1] = 4.



Try to solve this problem in O(N) time complexity and O(1) space complexity.
The interviewer was very friendly and started asking me questions by making me comfortable.



The sine wave for the matrix:-
1 2
3 4
will be [1, 3, 4, 2].



Given array numbers 12, 5, 34, the largest number you can form with them is 53412. There are other possible arrangements like 51234 or 34125, but they are both less than 53412.

As the final number formed after concatenation can be very large, print it as a string.
Explain ACID properties
1.What is the difference between static polymorphism and runtime polymorphism?
2. What is a copy constructor? Tell any one use of it.
3. Define inheritance.

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?