Be confident
Prepare everything with example.
Prepare as much Programming Questions as you can on leetcode.
Everything you mentioned in you resume , you should aware of that.
Add certifications and training attend
don't use false things
25 mcq's are there + 2 coding questions.
C++ (10 Questions)
Core Java (10 Questions)
SQL queries (5 Questions)



first sort the array and then try to compare the number with positive number



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
question based on core java and advanced java , coding problems , puzzle , Sql queries , data structures
A birthday cake has to be equally divided into 8 equal pieces in exactly 3 cuts. Determine the way to make this division possible.
This puzzle is not really difficult to solve if you really put your mind to work. The approach entails slicing the cake horizontally down the centre, followed by making another division vertically through the centre. The two divisions made across horizontal and vertical directions will give you 4 equal pieces of the cake.
In the final step, simply stack the 4 pieces one above the other, and then make the third division, splitting the stack into half. This gives you the 8 equal pieces of cake, along with answer to your puzzle.



Input arrays/lists can contain duplicate elements.
The intersection elements printed would be in the order they appear in the first array/list(ARR1)
Tell me about yourself.
Salary discussion.

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?