Tip 1 : Practice all standard questions regarding every topic, it will ensure you are well versed with fundamentals
Tip 2 : Do read previous interview experience before going for interviews.
Tip 3 : Try to make your own notes for computer fundamentals, these notes can be referred as and when required.
Tip 1 : Try to make resume of 1 page. Do not overcrowd it with irrelevant information. As you are applying for technical roles so resume should reflect the same.
Tip 2 : Do not write something which you are doubtful of. You should be ready to take any question which can come out from your resume.
This round was coding round with coding question and some MCQs.



Input: arr = [2, 1, 5, 6, 2, 3], k = 2
Output: 11
Explanation:
First painter can paint boards 1 to 3 in 8 units of time and the second painter can paint boards 4-6 in 11 units of time. Thus both painters will paint all the boards in max(8,11) = 11 units of time. It can be shown that all the boards can't be painted in less than 11 units of time.
Using concept of binary search as we use in painter partition.
This round was primarily focused on problem solving and computer fundamentals. Interviewer asked questions on data structure and OOPS principles



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.

For solving this question there are multiple approaches. One needs to go through all different ways of doing it.
This round was also focused on data structure ,project discussion and comput



If the given string is 56789, then the next greater number is 56798. Note that although 56790 is also greater than the given number it contains 1 '0' which is not in the original number and also it does not contain the digit '8'.
The given string is non-empty.
If the answer does not exist, then return -1.
The given number does not contain any leading zeros.
1. Traverse array from last element till you find smaller digit than current digit.
2.Now search right side of smaller digit found to get to digit larger than current found smaller digit.
3. Swap 2 digits.
4.Sort all digits after to get answer.

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?