Tip 1 : Be accurate in one language rather than doing more languages but not perfect in anyone
Tip 2 : Revise your concepts regularly and try to attempt 3-4 times a question which you cannot do in first time so that after that if u see question of that type u know how to approach
Tip 3 : Do practice of quality questions not only quantity.
Tip 1 : One page resume
Tip 2 : Only mentioned that projects and skills in which you are really good don't write anything just to fulfill the space
Online test of 90 minutes at 5:30 pm
You must know all the basic concepts of Oops,data structures and algorithms to solve them correctly
Online coding interview of 45 minutes at 6:10PM.
If a string has 'x' repeated 5 times, replace this "xxxxx" with "x5".
The string is compressed only when the repeated character count is more than 1.
Consecutive count of every character in the input string is less than or equal to 9. You are not required to print anything. It has already been taken care of. Just implement the given function and return the compressed string.
Tip 1 : Loop from 1st to last element and take count is one
Tip 2 : And store 1st alphabet in output array and go to next
Tip 3 : Increase the count if alphabet of that index is same as previous else first store the count as string in array and then insert new alphabet in output array and again go to next element and do the same
Queries on insert, selection and joins
Tip 1 : Practise queries of insert, select, update in table
Tip 2 : Practise all type of joins and their query structure
Tip 3 : Difference in drop and delete
HR round of 30 minutes at 6pm
1) Tell me about yourself
2) Strength, weakness, family background
3) Why did you choose this college?
4) Why do you want to join as Computer engineer?
5) Why do you want to be a part of our company?
Tip 1 : Be confident
Tip 2 : You must know everything about your resume
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which array operation has O(n) worst-case time complexity?