Tip 1 : Practice basic and some medium level DSA questions
Tip 2 : Should have good knowledge of your project.
Tip 3 : Practice aptitude, reasoning, and puzzle questions
Tip 1 : Only put those things of which you have a decent knowledge
Tip 2 : Should mention at least 2 good project
first part consist of mcq's which include aptitude, reasoning, sql, java, c and in second part there are two coding questions,each part consist of some specific time and you have to complete that given time.



Input: 'n' = 5, 'arr' = [1, 2, 3, 4, 5]
Output: 5
Explanation: From the array {1, 2, 3, 4, 5}, the largest element is 5.
I sorted the array in ascending order, hence the largest element will be at the last index of the array.
approach I used;-
Step1 - Sort the array in ascending order.
Step2 - Print the (size of the array -1)th index.



For finding Prime numbers b/w a and b i used iteration method by iterating through every number from a and b and checking for the number whether it is a prime number or not.
At first interviewer introduced himself the ask to introduce me after introduction he asked me about covid situation to make the enviourment friendly then he started technical round only one panel member is there first he asked me few questions related to computer programming ---
1. Why did i choose this programming language over other programming languages?
2. different oops concept
3. classes in java
after that he asked me about my project, technology used, why i choosed that technology at last he asked me a coding question of how to reverse a given string he only asked the way to solve it didn's say to code it.


‘S’ = “aabcd”, ‘M’ = 2, ‘A’ = [0, 1]
After 1st operation i.e, reversing from [0, 4], ‘S’ = “dcbaa”.
After 2nd operation i.e, reversing from [1, 3], ‘S’ = “dabca”.
Hence, the answer is “dabca”.
1. Take an empty stack
2. Iterate over the given string from start to end.
3. In each iteration, push the character at index i to the stack.
4. After the first loop is completed, set a while loop till the stack is non-empty.
5. Pop the character at the stack and start re-assigning the string.
1. Give your Introduction.
2. Why do you want to join this organization?
3. Are you willing to relocate?

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?