Tip 1 : Give Quality of questions of questions more importance over the quantity of questions
Tip 2 : Have in-depth understanding about the projects you put on your resume
Tip 3 : Do not ignore topics like OOPS, Computer Networks and Operating systems
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.
Online Assesment



The idea of Kadane’s algorithm is to maintain a variable max_ending_here that stores the maximum sum contiguous subarray ending at current index and a variable max_so_far stores the maximum sum of contiguous subarray found so far, Everytime there is a positive-sum value in max_ending_here compare it with max_so_far and update max_so_far if it is greater than max_so_far.
This was the first technical round
In a one day international cricket match, considering no extras(no wides, no ‘no’ balls, etc.) and no overthrows.
What is the maximum number of runs that a batsman can score in an ideal case ?



1. If ‘k’ is not present in the array, then the first and the last occurrence will be -1.
2. 'arr' may contain duplicate elements.
Input: 'arr' = [0,1,1,5] , 'k' = 1
Output: 1 2
Explanation:
If 'arr' = [0, 1, 1, 5] and 'k' = 1, then the first and last occurrence of 1 will be 1(0 - indexed) and 2.
The problem can be simply broken down as two binary searches for the begining and end of the range, respectively
Case Study Round
What would you advise large retails stores losing money due to online shopping sites like amazon?
Slight technical as well resume related discussion with various managers
Explain one real life application of machine learning.
What is random forest?
Random forests or random decision forests is an ensemble learning method for classification, regression and other tasks that operates by constructing a multitude of decision trees at training time.
What is variance?
The term "variance" refers to the degree of change that may be expected in the estimation of the target function as a result of using multiple sets of training data. The disparity between the values that were predicted and the values that were actually observed is referred to as bias
Tell me about yourself.
What are your hobbies that are not mentioned in the resume?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the purpose of the return keyword?