Tip 1 : Competitive coding atleast in 1 or more language should be mastered.
Tip 2 : Detailed knowledge of Major Project
Tip 3 : Clear knowledge of Theoritical questions from each topic is necessary for interview
Tip 1: Technical skills and internship experience count a lot
Tip 2: Atleast 1 project should be mentioned in the resume
The test was held in an afternoon
The environment was proctored
There were 72 questions in total
10 for English
50 for Apti
6 for coding
6 for gaming



A binary string is a string in which all characters are either ‘1’ or ‘0’.



The alphabets 'a', 'e', 'i', 'o', and 'u' are vowels, while all the remaining alphabets are consonants.
Step1:- I first traversed through sentence
Step2:- If character is not a,e,i,o,u r store character in new string else ignore.



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.
Step1:- First we have to get the length of input string.
Step2:- Then I did the following while low index ‘l’ is smaller than high index ‘h’ where l is initialised to 0 and high to n-1
If str[l] is not same as str[h], then return false.
Increment l and decrement h, i.e., do l++ and h–.
Step3:- If all character match, return true.
It was a gaming round
Random puzzle games were given which we had to solve with concentration
Tip 1: Reading the game question carefully
Tip 2: Working on it with concentration
Tip 3: Taking care of time
Questions were asked based on major Project as mentioned earlier from ML . 1 coding question was asked
Tip 1: Answering the questions based on the logic used in Project
Tip 2: Trying to answer maximum no. Of question with confidence
Tip 3: Elaborating answers for every question

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?