Tip 1 : First go through your own resume very well as most of the company first ask questions from one's resume. Prepare what to say if they ask you about the projects you mentioned in your resume that's why never fake your resume. Be confident with what you have
Tip 2 : Obviously if you are applying for software developer role you should have basic concepts of the programming languages you learned in your college days like C, C++, Java etc if you don't know a little too then I suggest you to learn some basics first in any particular language and then practice them in IDE. As now most of the interviews are virtual so it's good to practice writing code in IDE as they often can ask you to solve some basci questions like string reversal, check palindrome or not like that.
Tip 3 : You should have good communication skill. Good communication doesn't mean fluent english communication means interact with the receuiter in such a manner that he can understand the point you are trying to mark. Be confident, don't lie in any ways if you don't have correct answe for a question and you know that directly say NO you don't know this answer rather than replying with stupid answers and other side recruiter gets a little bit disappointed as you wasted some times of him for this kind of answer. If you know the answer instead of saying fluently try to speak the sentences with a little pause that makes recruiter understand that you really understand the topic you are talking about and that will be impressive.
Tip 1 : Don't fake your resume
Tip 2 : Try to do good projects and mention them in resume
Tip 3 : As a fresher I suggest to prepare a resume of maximum
2 pages.
In this round, there were 2 sections one for aptitude another for coding. The coding section consists of 2 questions and one has to attempt any one of them. And webcam will be active through all the assessment process.



If 'N' = 4. You need to return 1^2 + 2^2 + 3^2 + 4^2 = 30.
Step 1 : Set sum =0
Step 2 : Make a loop from i=0 to N
Step 3 : Sum = Sum + i²
Step 4 : return Sum
2 questions were asked in this section out of which we have to answer anyone



If 'N' = 4. You need to return 1^2 + 2^2 + 3^2 + 4^2 = 30.
Step 1 : Set sum =0
Step 2 : Make a loop from i=0 to N
Step 3 : Sum = Sum + i²
Step 4 : return Sum
It was a problem solving round and only one coding question was asked



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.

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