Tip 1: Practice the weak concepts more
Tip 2: Identify patterns and practice questions of all different patterns
Tip 3: Know CS Fundamentals
Tip 1: Add impact in the form of numbers
Tip 2: Highlight your strong suites
Proctored coding test with 3 questions late at night. Movements were monitored.



A string ‘B’ is a substring of a string ‘A’ if ‘B’ that can be obtained by deletion of, several characters(possibly none) from the start of ‘A’ and several characters(possibly none) from the end of ‘A’.
Two strings ‘X’ and ‘Y’ are considered different if there is at least one index ‘i’ such that the character of ‘X’ at index ‘i’ is different from the character of ‘Y’ at index ‘i’(X[i]!=Y[i]).



If a lamp is present at index 'I', then it illuminates index 'I' - 1, 'I' and 'I' + 1.
If a lamp is present at index 0, then it illuminates only 0 and 1.
Given that the length of the string is greater than or equal to 2.
If a lamp is present at the last index, then it illuminates the last and the second last index, given that the length of the string is greater than or equal to 2.
The length of each string is guaranteed to be at least 1.


In the given graph, if we want to reach from node 1 to node 4 with ‘P’ = 10, then our answer is ‘Yes’ because there exists path 1 -> 3 -> 4, which takes 7 amount of petrol, which is less than the given value of ‘P’ so it is possible and hence, the answer is ‘Yes’.

Face-to-face screening rounds focused on data structures and algorithms along with computer science fundamentals.



Given two tables, one containing the details of students including student ID and another containing details of the results obtained by the students find the names of students who go to greater than 90%. This included a trick question as both the tables didn’t have a common column like student id. (Learn)
Video call Interview with two interviewers. Along with the hard, DS a problem computer science fundamentals related to scaling were asked.



'ARR' = [3, 4, -1, 1, 5] and 'K' = 3
Output = [4, 4, 5]
Since the maximum element of the first subarray of length three ([3, 4, -1]) is 4, the maximum element of the second subarray of length three ([4, -1, 1]) is also 4 and the maximum element of the last subarray of length three ([-1, 1, 5]) is 5, so you need to return [4, 4, 5].

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?