Tip 1 : As it was intern position, So focus more on basics & understanding of Data structures.
Tip 2 : Practicing Questions from GFG would help you a lot & Prepare few small projects so that you can discuss them.
Tip 3 : Do focus on Core subjects Most Important would be: Operating System, OOPS & Networking.
Tip 1 : Make it one page & Include all you have accomplished
Tip 2 : Add 2-3 projects, be it small as you should have few things to discuss
It was a 90 minute round, where in there were few MCQs based on core subjects & Aptitude. Post that there was 1 Coding question of Easy level. The platform was Elitmus for the test. It was quite easy.
1. If 'X' is not found in the array, return 0.
2. The given array is sorted in non-decreasing order.
It was quite simple, A simple for Loop worked for it. Just Loop the elements & check whether that is the number or not & then increase the count.
So the interviewer was quite friendly during the round.
Most of the questions were from OS, OOPS & DBMS.
All the questions were quite easy, its just you need to be good with basics & Apply them.
For coding the interviewer gave a basic questions just to check if I can think or not.
I did not revise Computer networks so I said the truth and then no questions from CN was asked.
Questions such as difference between Process & Thread. What is Deadlock etc
Tip 1 : Give a read from all the basic concepts of OS that would help you
Tip 2 : Try to revise them before interview
So In this I had 2 interviewers, First of all first interviewer asked set of questions & then the 2nd interviewer asked another set of questions. It was also based on fundamentals of OOPS, OS, DBMS & Data structures.
So in this the interviewer before hand asked me about my favorite topic in Data structures so questions were according to that only.
What are ACID properties, One of the query question involving Joins, One Structuring question that how will I arrange the data to get desired output, Difference between SQL & NoSQL Databases.
Tip 1 : Practice few SQL questions
Tip 2 : Do the theoretical concepts Such as Normalization, Joins etc
1. A word is a sequence of one or more lowercase characters.
2. Words are separated by a single whitespace character.
For the given string 'A' = “coding ninjas coding ninjas” and 'B' = “data structures and algorithms”, so both the word 'coding' and 'ninjas' are not present in string 'B' and occur two times each, but the word “coding” is lexicographically smaller than the word “ninjas”. So the answer is “coding”.
Firstly I gave the solution using two loops. The outer loop picks all elements one by one. The inner loop finds the frequency of the picked element and compares it with the maximum so far.
Then I Gave the solution using a frequency Array but it was not accepted.
Post that I used the concept of Hashing & used a Hashmap to store the Keys & Values in it. So that was accepted.
I was not said to type the code for the Final approach. Only the Approach was asked
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is 3 + 2 * 4 based on operator precedence?