Tip 1 : Be consistent
Tip 2 : See archives of the company before you go for the interview
Tip 3 : Always try to take the pressure in a positive way and try to build yourself. Maybe after getting one opportunity don't stop f practice in the same way after selection because who knows what might come after it .
Tip 4 : Whenever you feel low talk to your parents and your best buddies and cheer yourself because durign this time you might see a lot of failures but after the failures there is somewhere success waiting for you.
Tip 1 : If you are adding any links like Leetcode or Codechef try to show your consistency there.
Tip 2 : Write only those things in which you are better because they will ask questions on the topics mentioned in your resume.
It was totally aptitude based.




You are a given the matrix -:
‘mat’ = [[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]
Here the Zig-Zag order of the given matrix is [1, 2, 4, 7, 5, 3, 6, 8, 9]. Hence the answer is [1, 2, 4, 7, 5, 3, 6, 8, 9].
Use even diagonals differently and odd diagonals differently



Input String: "aaaa"
Expected Output: "a"
Input String: "aabbbcc"
Expected Output: "abc"
Use a counter like if it is equal to next character increase the count by 2 else 1 and in lst check if the loop is equal to size of the string then concatenate the last character else don't.
They asked mostly on my resume projects and some internships that I have done.
Sql advantages over NoSQL.

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?