Tip 1 : Improve Communication Skills
Tip 2 : Do Extra Subjects
Tip 3 : Prepare some Projects
Tip 1 : Do Mention coding profiles in resume
Tip 2 : Do add summary of Projects
2 Coding questions



Each pair should be sorted i.e the first value should be less than or equals to the second value.
Return the list of pairs sorted in non-decreasing order of their first value. In case if two pairs have the same first value, the pair with a smaller second value should come first.
This problem can be solved efficiently by using the technique of hashing. Use a hash_map to check for the current array value x(let), if there exists a value target_sum-x which on adding to the former gives target_sum.



An array c is a subarray of array d if c can be obtained from d by deletion of several elements from the beginning and several elements from the end.
For e.g.- The non-empty subarrays of an array [1,2,3] will be- [1],[2],[3],[1,2],[2,3],[1,2,3].
If arr = {-3,4,5}.
All the possible non-empty contiguous subarrays of “arr” are {-3}, {4}, {5}, {-3,4}, {4,5} and {-3,4,5}.
The product of these subarrays are -3, 4, 5, -12, 20 and -60 respectively.
The maximum product is 20. Hence, the answer is 20.
Can you solve this in linear time and constant space complexity?
1. If there are even number of negative numbers and no zeros, result is simply product of all
2. If there are odd number of negative numbers and no zeros, result is product of all except the negative integer with
the least absolute value.
3. If there are zeros, result is product of all except these zeros with one exceptional case. The exceptional case is when
there is one negative number and all other elements are 0. In this case, result is 0.
Few Aptitude questions were asked and few questions on Project were also asked
Two Dice Are Thrown Together Then The Probability That The Sum Of Numbers Appearing On Them Is A Prime Number Is?
When two dice are thrown, the total number of sample spaces is 36.
Favourable outcomes = {(1,1),(1,2),(1,4),(1,6),(2,3),(2,3),(2,5),(3,2),(3,4),(4,1),(4,3),(5,2),(5,6),(6,1),(6,5)}
Total number of favourable outcomes = 15
Hence, the probability of getting a sum of prime numbers = 15/36 = 5/12.
I was asked to explain my Project and what problems i faced while making that?
Tip 1 : Prepare a brief Summary of your Project
Tip 2 : Don't Copy paste code in your Project
Tip 3 : Prepare a Decent Project and not the ones which are readily available on Google

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: