Tip 1 : Solve and answer the questions with a calm mind.
Tip 2 : You should know each and every word of your Resume.
Tip 3 : Have confidence in yourself
Tip 4 : Prepare yourself for the question "Tell me about yourself"
Tip 1 : Follow chronological resume format
Tip 2 : Include only the most relevant information and put the most important information first
Tip 3 : Description of your project should be short and sweet.
Coding Round consists of 3 questions and time given to solve those questions was 6 hours. It give a 24 hour window in that we can give our test anytime. The questions are basically from arrays, Mathematical , Dynamic Programming
If there are multiple answers, find the smallest one. For example, if N = 35, both 30 and 40 are nearest to N, since 30 is smaller, the expected answer will be 30.
Minimum operations to make ‘STR’ ‘0010’ beautiful is ‘1’. In one operation, we can convert ‘0’ at index ‘0’ (0-based indexing) to ‘1’. The ‘STR’ now becomes ‘1010’ which is a beautiful string.
First of all interviewer asked very famous question of Interview i.e.
"Tell me about yourself"
I have given proper answer of this question including my achievements , internships and education.
The interviewer was very friendly . He kept motivating me till end of interview. He took me to the right approach in many questions.
If all characters of one string are printed and some characters of other string are remaining, then you have to print the remaining characters of the other string at the end of the resulting string.
Can you solve the problem in O(N) time complexity and O(1) space complexity?
A = “abc” B = “fdh” then answer will be afbdch.
Have you worked on Linux OS?
Tell me some commands in Linux. Which commands are used to create a file and write in it?
If we want to print top 10 lines from a file which command will we use?
If we want to print last 10 line of file which command will we use?
Which command is used to get ip address of pc? .
What is the difference between physical address and logical address?
If we are given a file with 1000 lines and we want to print lines from 600-700 which command will we use?
What is Process and process scheduling?
What is deadlock?
What are necessary conditions for deadlock?
Tip 1 : I generally prefer last minute notes from geeks for geek for quick revision . It covers most of the topics.
Tip 2 : Refer generally asked questions in interviews for particular subject.
Tip 3 : Make notes for the main subject topics for last revision.
What is Inheritance and types of Inheritance. along with example of inheritance.
What are access specifier in OOPS?
What is default access specifier of class?
What is the difference between class and structure?
What is garbage collection?
Different storage mediums in C++.
What is copy constructor?
Tip 1 : Go through the main features of OOPS Encapsulation , Inheritance etc
Tip 2 : Practice examples of each feature
Tip 3 : Read E Balaguruswamy for better understanding of OOPs
This was Technical + HR both round. I were asked technical as well as HR related Questions
Again the interviewer was very friendly . He treated me very well and help me out in many questions.
I got a great experience from this interview. Overall It was a good learning for me.
If we toss 1 coin three times one by one then what will the probability of getting heads all the time.
Tip 1 : Do practice these some generally asked Mathematics concepts
Tip 2 : Keep revising things.
Consider the array {2,1,5,6,3,8} and 'K' = 3, the sorted array will be {8, 6, 5, 3, 2, 1}, and the 3rd largest element will be 5.
1) Kth largest element in an array is the kth element of the array when sorted in non-increasing order.
2) All the elements of the array are pairwise distinct.
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?