Tip 1: One Major Project and one minor project are fine.
Tip 2: Make sure you know all basic Data structures if not DP, Graphs.
Tip 1: Have a short and crisp explanation of your projects
Tip 2: Resume should be of max 1 page
There were 6 Sections in this Round. The total number of questions is 90 and the time allotted to complete the round is 90 minutes. This Round tested Student’s cognitive abilities and technical knowledge through multiple-choice questions.



If the string is “bca”, then its permutations in lexicographically increasing order are { “abc”, “acb”, “bac”, “bca”, “cab”, “cba” }.
Given string contains unique characters.
Create the function permute() and pass the input string, starting index, and ending index as parameters.
Using the parameters input string, 0 and size of string - 1, call this function
If L and R have the same value in this function, print the same string.
If not, execute a for loop from L to R and replace the current element with inputString[L].
Afterward, call the same method while increasing L's value by 1.
Then swap the previously swapped values once more to start the backtracking process.



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 conducted around 1.30 pm
The interviewer was very supportive and helped me wherever I got stuck



An m x n integer matrix matrix is presented to you with the following two characteristics:
Non-decreasing order is used to sort every row.
Each row's beginning integer is higher than the row's previous row's last integer.
Create two variables with values of i = 0 and j = n-1 for the row and column indexes using the given element, x.
Repeat this until i equals n.
The count of j is reduced after determining whether the current element exceeds x. omit the current column.
The count of i is increased after determining whether the current element is less than x. Don't include this row anymore.
To print the position and end, check to see if the element is equal.
It is not possible to print the Element.
Which was your least favorite subject in Engineering and how you managed to pass in that subject?
What are your Strengths and Weakness?
Where do you see yourself in 5yrs?
Tip 1:Do some research on the firm before the interview.
Tip 2:Read the job description thoroughly and comprehend each criterion, as well as how your abilities meet them all.
Tip 3:Be prepared to respond to any queries you anticipate being asked.

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: