Tip 1 : Analyze question carefully
Tip 2 : Once question is attempted it wouldn't be accessed again.
Tip 3 : it would be easy to cross if you do carefully
Tip 1 : List all the projects
Tip 2 : Do not list anything that is fake.
Timing: Day time
Environment: easy to grasp
Interviewer: polite
Combination of english ,gaming ,mental ability and analytical reasoning.
Number Of MCQs - 90



If two or more such subarrays exist, return any subarray.
Tip 1 : You don't need to read input or print anything. The task is to complete the function subarraySum() which takes arr, N and S as input parameters and returns an arraylist containing the starting and ending positions of the first such occurring subarray from the left where sum equals to S.
Tip 2 : The two indexes in the array should be according to 1-based indexing
Tip 3 : If no such subarray is found, return an array consisting only one element that is -1.
Very easy.



Tip 1 : You don't need to read input or print anything.
Tip 2 : Your task is to complete function minJumps() which takes the array arr and it's size N as input parameters and returns the minimum number of jumps. If not possible return -1.
Tip 3 : Can be done in O(N) time complexity

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?