Tip 1: Each day pick any topic for aptitude and do at least 50 questions.
Tip 2: Be confident in the interview. If you are not familiar with something they asked, say that you are not sure about it but, according to you, the answer might be this. Do not be overconfident and just say wrong answers.
Tip 3: Do at least 2 projects.
Tip 1 : Do mention 2 of your projects.
Tip 2 : Also mention one programming language.
Tip 3 : Mention your achievements and internship experience
There were 2 sections of the test.
The timings of the test are usually in the morning only.
In the first section, there were generally MCQ-based questions, and then there was a coding round.



We have an array ARR = {1, 2, 3, 4, 5, 6} and M = 3 , considering 0
based indexing so the subarray {5, 6} will be reversed and our
output array will be {1, 2, 3, 4, 6, 5}.



1. A word is a sequence of one or more lowercase characters.
2. Words are separated by a single whitespace character.
For the given string 'A' = “coding ninjas coding ninjas” and 'B' = “data structures and algorithms”, so both the word 'coding' and 'ninjas' are not present in string 'B' and occur two times each, but the word “coding” is lexicographically smaller than the word “ninjas”. So the answer is “coding”.
It was an interview round. My interview was in the morning. The interviewer was a good person, not very strict.






String 'S' is NOT case sensitive.
Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.
It was an HR round. Here, I was asked basic HR questions
Introduce yourself.
Why do you want to join us?
Who is your role model?
Tip 1 : Be Confident
Tip 2 : Show what you really are
Tip 3 : Be honest

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?