Tip 1 : First clear programming fundamentals
Tip 2 : Then practice coding questions
Tip 3 : Now you can go with Data Structures and Algorithms
Tip 4 : You can prepare SQL daily 1-2 hr
Tip 1 : Only Mention technologies you have worked on.
Tip 2 : Highlight quick learner, hard working personality in resume
Total time -2.45hr
45 mins was for coding round, in which we have to find errors in 7 codes.
The codes where pre written based on some problem, we just have to spot errors and make the code work correctly.
In the first 2hr we have numerical ability questions, mostly based on work and time, ages and profit and loss.
25 questions based on English grammar and sentences
Timing - 1hr
Environment- Skype
Interviewer- with 10-25 year experience
A palindrome is a word, number, phrase, or other sequences of characters which read the same backwards and forwards.
If the input string happens to be, "malayalam" then as we see that this word can be read the same as forward and backwards, it is said to be a valid palindrome.
The expected output for this example will print, 'true'.
F(n) = F(n - 1) + F(n - 2),
Where, F(1) = 1, F(2) = 1
"Indexing is start from 1"
Input: 6
Output: 8
Explanation: The number is ‘6’ so we have to find the “6th” Fibonacci number.
So by using the given formula of the Fibonacci series, we get the series:
[ 1, 1, 2, 3, 5, 8, 13, 21]
So the “6th” element is “8” hence we get the output.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which is a DDL command in SQL?