Tip 1 : Be confident
Tip 2 : Prepare everything with example.
Tip 3 : Prepare as much Programming Questions as you can.
Tip 1 : Everything you mentioned in you resume , you should aware of that.
Tip 2 : Add certifications and training attend.
Tip 3 : Don't use false things.
25 mcq's are there + 2 coding questions.
C++ (10 Questions)
Core java (10 Questions)
SQL queries (5 Questions)
Number Of MCQs - 25



First sort the array and then try to compare the number with positive number.
Questions 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.
Tell me about yourself.
salary discussion
There are 3 switches in a room, where one of them is assigned for a bulb in the next room. You can’t see whether the bulb is on or off, until you leave the room. Find the minimum number of times you have to go into the room to identify which switch corresponds to the bulb in the other room.
The person has to initially turn on the first switch and keep it on for 2-3 minutes. Next, turn off the first switch and turn on the second one. Rush to the other room as soon as you turn on the second switch.
If the bulb is glowing, the second switch corresponds to the light bulb; however, if the bulb doesn’t glow, but touching it feels warm, the first switch is the one that turns the bulb on. If it’s neither lit, nor warm, then the third switch is the desired switch. So, a person must go only once to the other room to find out the accurate switch.

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?