Tip 1 : Improve problem solving from Leetcode.
Tip 2 : Be consistent.
Tip 3 : Ask someone to take mock interview.
Tip 4 : Gradually increase the complexity of coding problems that you solve from Easy to Hard.
Tip 1 : Make everything clear and professional
Tip 2 : Include your projects with a brief description
Tip 3 : Prepare resume according to the job description
2 coding questions



Input: 'arr' = [1, 2, 7, -4, 3, 2, -10, 9, 1]
Output: 11
Explanation: The subarray yielding the maximum sum is [1, 2, 7, -4, 3, 2].

If element is not present, then return -1.
K'th largest and smallest element in the sorted array. You are given an array consisting of N non distinct positive integers and a number K, your task is to find the K'th largest and K'th smallest element in the array.
1) Kth largest and smallest element in an array is the K'th element of the array when sorted in increasing order. For example consider the array {2, 1, 5, 6, 3, 3, 8} and K=4, the sorted array will be {1, 2, 3, 3, 5, 6, 8}. But we will check the array {1, 2, 3, 5, 6, 8} as 3 is repeated twice and the 4th largest element will be 3 and 4th smallest will be 5.
2) All the elements of the array are not distinct.
Coding, Projects in detail



The Linked Lists, where a1, a2, c1, c2, c3 is the first linked list and b1, b2, b3, c1, c2, c3 is the second linked list, merging at node c1.

Managerial round
Cake cutting with only 3 cuts
About past projects that I have worked on
HR round
About my personal opinions and other personality related questions

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?