Tip 1 : Have a good command on OOPS
Tip 2 : Practice the DOM Manipulation in JavaScript
Tip 3 : Do at least 3 projects using JavaScript
Tip 4 : Good Communication skills
Tip 1 : Projects are must in your resume
Tip 2 : Be honest
This round tested the ability to develop logic for the problems and provide the optimal solution. I was also asked to code the optimal solution. Interview was scheduled in evening. The environment was very comfortable. The interviewer was kind and humble.
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'.
This round was based on OOPS and Data Structures in JavaScript. It was held in evening. The environment was comfortable but I was quite tensed. The interviewer was strict.
Explain Object Oriented Programming and it's types in JavaScript.
Explain DOM and it's properties in JavaScript.
1. A magic index in an array A[0 ... N - 1] is defined to be an index i such that A[i] = i.
2. The elements in the array can be negative.
3. The elements in the array can be repeated multiple times.
4. There can be more than one magic index in an array.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Suppose list1 is [2, 133, 12, 12], what is max(list1) in Python?