Tip 1 : Be enough confident, don't be nervous. Maintain atleast 2 projects in your resume.
Tip 2 : You should be able to answer each and every thing present in your resume. Don't lie in your resume.
Tip 3 : Prepare Data Structures and Algorithms well. They mostly check our Problem Solving ability to find the solutions for the real world problems
Tip 1 : Build your resume such that it grabs the eye of the interviewer
Tip 2 : metion your key skills and also maintain atleast 2 projects
There was 2 coding questions
Based on ds and algorithms



1. Every train will depart on the same day and the departure time will always be greater than the arrival time. For example, A train with arrival time 2240 and departure time 1930 is not possible.
2. Time will be given in 24H format and colons will be omitted for convenience. For example, 9:05AM will be given as "905", or 9:10PM will be given as "2110".
3. Also, there will be no leading zeroes in the given times. For example, 12:10AM will be given as “10” and not as “0010”.

1. A string ‘S’ is said to be ‘K’ periodic, if for each position ‘i’ in the string S[i] = S[i+K].
Consider string ‘S’,
if S = ”abcabc”, it is 3 periodic string.
if S= ”aaaaa”, it is 1 periodic string.
2. In one move, only one character of ‘S’ can be swapped with a character of ‘A’.
3. The characters in ‘A’ can be used more than once.
4. All characters of K-periodic string ‘S’ are elements of array ‘A’.
It was good round they asked me about all the ds and algo basics
With 2 problems by sharing the screeen






[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.
In this round, three questions were asked and all of them were based on DSA and a little bit about projects.




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?