Tip 1 : Practice the codes
Tip 2 : Daily learning
Tip 3 : Make project based on your prepared languages
Tip 1 : Short and sorted
Tip 2 : Write your languages knowledge and projects
Written test which includes 1 Java code and some MySQL queries. I only remember the Java question.



‘S’ = “aabcd”, ‘M’ = 2, ‘A’ = [0, 1]
After 1st operation i.e, reversing from [0, 4], ‘S’ = “dcbaa”.
After 2nd operation i.e, reversing from [1, 3], ‘S’ = “dabca”.
Hence, the answer is “dabca”.
Technician round. There was only one coding question in this round.



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.
First I understand the problem
After that I write on paper
After I run and compile on editor
Are you okay with this location?
Will you be ready to relocate in future?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?