Tip 1 : For web development, practice by implementing some small projects like calculator, Todo app, e-commerce website
Tip 2 : Try to understand the basics properly
Tip 1 : Mention only those programming languages or technologies you have actually worked on
Tip 2 : Mention the projects with functionalities & tech stack used
It was altogether 90 minutes round starting with MCQs for OOP, Pointers, Data structures & algorithms. 30 minutes for 20 MCQs. Next 60 minutes for the coding round. There were no restrictions for programming language. You can use any programming language you know. A use case was provided and you need to write code for it



You are given AIRPORTS = [1, 1, 1, 0, 1, 0], ‘K’ = 2 and ‘X’ = 4.
The answer will be 1. The plane makes its first stop at (2, 0) and then reaches the destination (4, 0) in the next fight. Hence the total number of stops is 1.
It was a technical round where some of the OOP concepts were asked. Few sorting code problems were given to solve. OOP questions with real-life examples were asked



a) Duplicate elements may be present.
b) If no such element is present return -1.
Input: Given a sequence of five numbers 2, 4, 5, 6, 8.
Output: 6
Explanation:
In the given sequence of numbers, number 8 is the largest element, followed by number 6 which is the second-largest element. Hence we return number 6 which is the second-largest element in the sequence.
Just basic HR questions. Why would you like to join our organization? Do you prefer relocation? etc

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?