Tip 1 : Practice Aptitude Questions from IndiaBix
Tip 2 : Continue practice on online coding platforms and do participate in coding challenges.
Tip 3 : Keep revising your Computer Science fundamentals(OS, DBMS, Software Engineering principles).
Tip 4 : Also brush-up your aptitude skills.
Tip 1 : Add only what you know properly. don't add extra stuff just to add weight to your resume.
Tip 2 : First page of the resume must in tabular form and it must give complete information about you in very simple manner.
Tip 3 : Use professional Keywords in your resume.
Tip 4 : Highlight your Skills and Achievements. Put only those skills in which you are good like any question can be asked on any particular skill. Like how you will do this in this.
Platform for this round is Amcat. The First round have coding questions , we can write programs in any language . It was easy round.
Anagrams are defined as words or names that can be formed by rearranging the letters of another word. Such as "spar" can be formed by rearranging letters of "rasp". Hence, "spar" and "rasp" are anagrams.
'triangle' and 'integral'
'listen' and 'silent'
Since it is a binary problem, there is no partial marking. Marks will only be awarded if you get all the test cases correct.
The binary number system requires 2 digits (0-1), the Ternary number system requires 3 digits (0-2), the Octal number system requires 8 digits (0-7), and the decimal number system requires 10 digits (0-9) to represent any numeric value.
This round was easy they basically ask about some important topics of computer science as well as related to our position for company.
What is need of Virtual Memory?
INPUT : ARR [ ] = [ 1 , 2 , 3 , 4 , 5 ] , N = 4
OUTPUT: ARR [ ] = [ 1 , 2 , 4, 5 ]
The above example contains an odd number of elements, hence the middle element is clearly the (N+1) / 2th element, which is removed from the stack in the output.
INPUT : ARR [ ] = [ 5, 6, 7, 8 ] , N = 3
OUTPUT: ARR [ ] = [ 5, 7, 8 ]
The above example contains an even number of elements, so out of the two middle elements, we consider the one which occurs first. Hence, the middle element would be ((N+1) / 2 - 1) element, which is 6 and is removed from the stack in the output.
It was in the morning . Its one to one conversation. Interviewer was good enough. He ask about me and what i know about their company. What were my objectives and many more.
What are the three things that are most important for you in a job?
What was the toughest decision you ever had to make?
Tip 1 : Be talkative with interviewer.
Tip 2 : Don't be panic and don't lie to him.
Tip 3 : You must me very conscious and have deep knowledge regarding your skills.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL keyword removes duplicate records from a result set?