Tip 1 : Practice as much as you can on codestudio.
Tip 2 : Be well versed with your projects and internship experience.
Tip 3 : Try to develop a habit on coding on paper.
Tip 1 : Be well versed with your projects.
Tip 2 : Be very confident about the things you have written on resume.
It was a proctored round of 120 minutes, with 1 hour dedicated to various types of questions ranging from OOPS, CLOUD, DSA, PROBLEM SOLVING, and OS. Every round was time-bound. The coding round comprised 2 questions.






'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].



Input: ‘N’= 25, ‘s’ =”Take u forward is Awesome”
Output: 10 11 4
In this program, we will take a string and a character as input, and it will count the occurrence of the given character. This program also counts spaces.



If a string has 'x' repeated 5 times, replace this "xxxxx" with "x5".
The string is compressed only when the repeated character count is more than 1.
The consecutive count of every character in the input string is less than or equal to 9.
The round was conducted right after the technical round. The HR round is not at all difficult. They mainly wanted to check your articulation and enunciation skills.



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.
Tip 1 : Be very confident
Tip 2 : Don't try to outwit the HR by appearing very frank or over smart.
Tip 3 : Have good command over your communication.
What is your vision?
What change you wish to bring to the company?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?