Tip 1 : Participate in programming competitions and practice at least 100 questions.
Tip 2 : Get an internship experience or take part in hackathons.
Tip 3 : Be comfortable with the OOP concept and fundamental programming principles.
Tip 1 : Keep your resume concise.
Tip 2 : Try mentioning all your skills on the resume.
Tip 3 : Don't forget to add your best projects and certificates.
- Morning time
- Environment was good.
- No
- Interviewer was good



If the given array is: [0, 0, 1, 0, 1] The largest subarray would be: [0, 1, 0, 1] (last 4 elements) having length 4.
s1- An easy problem is solved by changing the counter to 1 every time 1 comes after 0 or vice versa.
s2- The maximum value is to be stored at the time of each swap.



Input: 'a' = [2, 4, 6] and 'b' = [1, 3, 5]
Output: 3.5
Explanation: The array after merging 'a' and 'b' will be { 1, 2, 3, 4, 5, 6 }. Here two medians are 3 and 4. So the median will be the average of 3 and 4, which is 3.5.
S1= The problem came with getting the test cases done within the time limit which was O(log(N1+N2)).
IS2= solved the problem by using Binary Search implementation.
- Morning time
- Environment was good.
- No
- Interviewer was good
Terrorism is un-doubtedly one of the most dangerous problem our country is facing. What do you think India can do to get rid by terrorism?
feel i was able to give optimized approaches. That's why i was selected.
- Morning time
- Environment was good.
- No
- Interviewer was good



Down: (row+1,col)
Right: (row, col+1)
Down right diagonal: (row+1, col+1)
s1- I had practiced enough of DP questions.
s2= so this one looked fairly easy. Since it was a standard DP question, the same approach worked here too.



Given 'NUM' : 1.75
Irreducible fraction can be represented as 7/4.
Note that 14/8 = 1.75 as well, but 14/8 is not an irreducible fraction.
In order to preserve precision, the real number will be given to you in the form of two strings : the integer part, and the fractional part.
The integer part will contain not more than 8 digits, whereas the fractional part will always contain 8 digits.
s1- I was unable to solve this question in given time.
s2- I thought of using decimal precision and other things but not able to solve this.

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: