Tip 1 : Start with Easy and Medium type questions of Data Structures.
Tip 2 : Do not recite question's solution, try to understand the logic behind it.
Tip 1 : Put Projects on your resume with having detailed knowledge.
Tip 2 : Do not put false information about experience and things which you do not know.
This round was happened virtually at 4 in the evening. The interviewer was very friendly and looking for the approach of solving the questions. Asked questions were mostly from my projects and medium DSA questions.



Can you solve each query in O(logN) ?
step1 : After listening the searching in sorted array. I knew, the best way to apply a binary search as it gives
(logn) worst time complexity.
step2 : After telling them about binary search, I asked for writing a code and I wrote a code in python with
handling the edge cases.
write a query to find out the 3rd highest salary from the table.
Tip 1 : we have to think according to real life situation like first think we will sort the table according to the salary in descending order.
Tip 2 : After sorting, we will apply Limit clause to get only 1 record.
Tip 3 : Define offset , to get 3 record.
what is difference between makemigrations and migrate command in django?
Tip 1: you should know about the technology and framework you are working upon.
Tip 2: Try to give answer with examples, so that interviewer could have idea that you have actually worked on
it.
This interview was held online at 3 pm virtually. Interviewer was particularly looking for candidates with having good knowledge of Python/Django. Interviewer asked multiple questions on my project and python also like what was your roles in the project and what functionality did you choose this approach to achieve desired output?



‘ARR1’ = [3 6 9 0 0]
‘ARR2’ = [4 10]
After merging the ‘ARR1’ and ‘ARR2’ in ‘ARR1’.
‘ARR1’ = [3 4 6 9 10]
Step 1 : Firstly, I told interviewer about the approach which putting elements of second array into the end of first array and then apply sorting. But, interviewer told that it would take large worst time complexity ((m+n)log(m+n)).
Step 2 : Then I decided to compare the first element to first element of second array and swap them if first array element is greater than first element of second array and if it is lesser, then we will move to second element of second array.
Explain ACID properties of DBMS?
Tip 1: Explain each point separately with example.
Tip 2: Answer only with confidence if you know it.
This interview was with HR manager of NoPaperForms solutions and she asked about general questions and discuss about salary expectations and salary offered.
Tell me something about yourself?
Tip 1: I would suggest to prepare this question's answer beforehand.
Tip 2: Be prepared with doing practice in front of mirror and be confident.
Why do you want to join this organization and how it will help in your career growth?
Tip 1: Research about the company before applying into the organisation.
Tip 2: Be ready with the questions you want to ask about the organisation.
How is your experience working in current organization?
Tip 1 : Tell them about the work you have done and achieved a great goals for the organisation.
Tip 2 : Tell them about the team work you have done, goals you have achieved and work helped in your career growth.
Tell me something that is not mentioned in your resume?
Tip 1: Try to tell them about the skills gained apart from your resume.

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