Tip 1 : cover all concepts to basic level first,rather than going deep in one concept
Tip 2 : practice everyday for DSA
Tip 3 : keep notes for web dev imp concepts because we will forget.
Tip 1 : be honest
Tip 2 : do not add too many projects, add 2 or 3 worth mentioning.
It was in in the evening at 5pm, it was simple with 20 mcqs on java,dbms,os.sql. And 2 coding questions.



1. All the elements are in the range 0 to N - 1.
2. The elements may not be in sorted order.
3. You can return the duplicate elements in any order.
4. If there are no duplicates present then return an empty array.
It was afternoon.2 interviewers are present. What are forms and how to create forms in HTML? What are Entities and Relationships? What is an Alias in SQL?



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.



getSize: Returns an integer. Gets the current size of the stack
isEmpty: Returns a boolean. Gets whether the stack is empty
push: Returns nothing. Accepts an integer. Puts that integer at the top of the stack
pop: Returns nothing. Removes the top element of the stack. It does nothing if the stack is empty.
getTop: Returns an integer. Gets the top element of the stack. Returns -1 if the stack is empty

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