Tip 1 : practice 250 questions atleast
Tip 2 : become comfortable in hands on coding
Tip 3 : work on aptitude
Tip 1 : Neat and Clean
Tip 2 : Single page
Tip 3 : Do not lie in resume as they will cross check.
What are the four pillers of OOPS?
What are virtual functions?
Note: Since the number of ways can be very large, return the answer modulo 1000000007.
N=3
We can climb one step at a time i.e. {(0, 1) ,(1, 2),(2,3)} or we can climb the first two-step and then one step i.e. {(0,2),(1, 3)} or we can climb first one step and then two step i.e. {(0,1), (1,3)}.
How to joins tables?
How to use order by and having clause?
1. The array follows 0-based indexing, so you need to return the 0-based index of the element.
2. Note that the element at the equilibrium index won’t be considered for either left sum or right sum.
3. If there are multiple indices which satisfy the given condition, then return the left-most index i.e if there are indices i,j,k…. which are equilibrium indices, return the minimum among them
4. If no such index is present in the array, return -1.
Tell me about yourself
Which technologies you have worked on?
Are you a team player?
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the output of print(type("Python"))?