Tip 1 : Prepare for Aptitude problems, Standard DSA questions, Some output based problem based on java, C,C++
Tip 2 : Revise all concepts daily
Tip 3 : Work on soft skills that will help you represent your knowledge
Tip 1: Mention At least two Project(preferably Full Stack Application)
Tip 2: Only mention the skills on your resume for which you feel confident about it
this round consist of Two Coding Question and some of CS fundamental questions.



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.
I have given a simple Iterative solution.



1. The array consists of only 3 distinct integers 0, 1, 2.
2. The array is non-empty.
Firstly, I explained him this approach.
I Rrun a nested for loop to traverse the input array using two variables i and j, such that 0 ≤ i < n-1 and 0 ≤ j < n-i-1 and If arr[j] is greater than arr[j+1] then swap these adjacent elements, else move on. and returned the array. I told the interviewer time complexity of this approach is (n* n). asked to optimize but interview moved onto java & SQL interview questions
topic : OOPS, multithreading, inheritance, polymorphism.
This Round was consist of one Puzzle question and some HR round questions. Interview was scheduled in 7:00PM IST
interviewer asked me some specific HR questions
How do you measure forty-five minutes using two identical wires, each of which takes an hour to burn? you have matchsticks. The wires burn non-uniformly. So, for example, the two halves of wire might burn in 10 minutes and 50 minutes respectively
If we light a stick, it takes 60 minutes to burn completely. What if we light the stick from both sides? It will take exactly half the original time, i.e. 30 minutes to burn completely.
1. 0 minutes – Light stick 1 on both sides and stick 2 on one side.
2. 30 minutes – Stick 1 will be burnt out. Light the other end of stick 2.
3. 45 minutes – Stick 2 will be burnt out. Thus 45 minutes is completely measured.
why do you want to join this company?
where do you see in next five years?
What are your strengths and weaknesses?
Tell me something about Apisero Company

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