Tip 1 : Solve basic DSA problems daily on online platforms.
Tip 2 : Practice at least 300 Questions.
Tip 3 : Do AI-ML based projects.
Tip 1: Do not put false things on resume.
Tip 2: Add achievements and experiences into your resume.
90 MCQ questions in 90 minutes, covering mathematical aptitude, logical reasoning, and verbal aptitude at an easy to medium level.
In this round I was asked to solve two coding questions of easy to medium level based on mathematical logic & DSA.



Given string s contains only lowercase letters of size n. Print its all unique permutations in sorted order.
ex: s = "aba"
output = "aab", "aba", "baa"
Generate all permutations of input string using recursive function & stored it into a vector perm;
Then sort the 'perm' & remove the duplicate strings from perm.
After that return or print the strings in perm.



Given integer array A of size n, then perform following operations :
if A[i] = A[j] , then delete A[i] & A[j] from array. And insert 0 in array.
Find the minimum possible length of A after performing this operation several (possibly, zero) times.
I used a map to store the frequency of A[i].
Initialize a variable, count = 0;
After that apply a loop through out the map & do following:
1) if freq[A[i]] if odd then increment cnt by 1
2) Also I used two bool variable for isZeroPresent & isRepeated.
After loop, Return cnt + (isZeroPresent | isRepeated);
This round included a communication assessment, which was divided into different sections focusing on reading, listening, writing, and grammatical skills in English.
I was asked 5 MCQs on grammar, 5 fill in the blank type questions, 5 questions in listening & speaking section, an audio of nearly 1 min was played & I had to answer questions based on it then in the last section I had to speak on any 2 topics (among 5 topics) for minimum 2 minutes.
The panel of three persons asked questions based on OS, DBMS, OOPS, project discussion, and some HR questions related to family background, hobbies, goals, and achievements.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: