Tip 1 : Start with any programing language basics and then learn data structures and keep continuous practice by doing atleast 8 different questions from each topic.
Tip 2 : Learn some development basics also learn SQL
Tip 3 : Create at least 2 project by yourself.
Tip 1 : Do at least two projects put them on resume and be thorough on them.
Tip 2 : Put those skills on resume which you really know
The interviewer asked me some aptitude questions along with English and Technical questions. Before finishing the round he asked me a coding question



Standard Problem
The interviewer asked me 1 coding questions and some managerial questions.



1) Saved the given value in a temporary variable.
2) Then reverse the number and store it in a variable rev.
3) At last simply just compare temporary variable with rev if equal then return true if not false.
It was scheduled at 11:00 am and the HR he asked me some situation based question and he asked a puzzle .
There are eight balls. Seven of them weigh the same but one of them has a different weight (heavier or lighter). How do you find the odd ball with two weighs?
It is possible. If we know the odd ball is heavier or lighter
Step 1 : Take any 6 balls and put 3 on left and 3 on right. If the odd ball is present then that ball can be predicted on which side it is present (As its weight differs from others that side will move up or down )
Step 2 : Take those 3 balls (where odd ball is present). Now put 1 ball on the left side and 1 on the right side. If the weight differs you can find out odd ball. If the weight of two balls is the same the one which is left is the odd ball.
Step 3 : If the step 1 result is equal then the remaining two balls are weighed and odd ball can be predicted easily.
So we need only 2 weighs either step 1 and step 2 or step 1 and step 3.

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?