Avl india private limited interview experience Real time questions & tips from candidates to crack your interview

SDE - Intern

Avl india private limited
upvote
share-icon
3 rounds | 6 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 months
Topics: Operating System, Networking, Database Management System, Data structures , Competitive programming mainly focused on dynamic programming and graphs algorithms.
Tip
Tip

Tip 1 : I went through all the concepts taught by Coding Ninjas in my course. Apart from that, I practiced 600+ coding interview questions from different coding platforms. 
Tip 2 : Though Data Structure is the base for any tech interview, one must know some other subjects as well like Operating System, Networking, and Database Management System for which I took help from Coding Ninja’s notes and from GeeksforGeeks. Along with this stuff, I also read about puzzles on GeeksForGeeks. Overall, Coding Ninjas & Geeks For Geeks have a big hand in making me crack this interview. Just work hard and practice more and more questions based on Data Structures from coding platforms like Codezen etc. 
Tip 3 : Do prepare for previous interview experiences of company in which you are applying and also pay more focus to data structures related questions. 
Tip 4 : Also prepare for aptitude as well, as many companies ask aptitude questions as part of interview process.

Application process
Where: Campus
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

Tip 1 : Mention things that you are confident of. 
Tip 2 : Don’t try to write extra skills which you are not sure about as most of the questions are asked after seeing the skills mentioned in your resume.
Tip 3 : Keep your resume up to date and mention three or four good level projects which will give a good impression to the interviewer .

Interview rounds

01
Round
Easy
Online Coding Interview
Duration120 minutes
Interview date2 Nov 2020
Coding problem2

There was only one round and it was MCQ + Coding round. Coding Questions were pretty fair and have an appropriate level.

1. Longest Common Subsequence

Moderate
39m average time
0/80
Asked in companies
Tata Consultancy Services (TCS)CognizantCisco

Given two strings, 'S' and 'T' with lengths 'M' and 'N', find the length of the 'Longest Common Subsequence'.

For a string 'str'(per se) of length K, the subsequences are the strings containing characters in the same relative order as they are present in 'str,' but not necessarily contiguous. Subsequences contain all the strings of length varying from 0 to K.

Example :
Subsequences of string "abc" are:  ""(empty string), a, b, c, ab, bc, ac, abc.
Try solving now

2. Overlapping Intervals

Easy
24m average time
0/40
Asked in companies
SiemensFreshworksSAP Labs

You have been given the start and end times of 'N' intervals. Write a function to check if any two intervals overlap with each other.

Note :
If an interval ends at time T and another interval starts at the same time, they are not considered overlapping intervals.
Try solving now
02
Round
Medium
Video Call
Duration40 minutes
Interview date4 Nov 2020
Coding problem3

In this round interviewer gave me three coding questions that I solved properly.

1. Alien dictionary

Hard
46m average time
50% success
0/120
Asked in companies
GoogleInfo Edge India (Naukri.com)Facebook

You have been given a sorted (lexical order) dictionary of an alien language.


Write a function that returns the order of characters as a string in the alien language. This dictionary will be given to you as an array of strings called 'dictionary', of size 'N'.


Example :
If the dictionary consists of the following words:-
["caa", "aaa", "aab"], and 'K' is 3.

Then, the order of the alphabet is -
['c', 'a', 'b']
Note:
If the language consists of four letters, the four letters should be the starting four letters of the English language. 

However, their order might differ in the alien language.
Try solving now

2. String Transformation

Moderate
23m average time
0/80
Asked in companies
SprinklrWalmartAccenture

Given a string (STR) of length N, you have to create a new string by performing the following operation:

Take the smallest character from the first 'K' characters of STR, remove it from STR and append it to the new string.

You have to perform this operation until STR is empty.

 Note:
The input string(STR) will not contain any spaces.

Assume that all characters in STR are lower case letters.

If characters less than 'K' remain, then append them in a sorted way to the new string.
Example:
Let the input string be "edcba" with K = 4.

Let the new string to be formed is initially empty, newString = "".
The first set of 4 characters are, ('e', 'd', 'c', 'b')
Out of these 4 characters, the smallest one is 'b' and hence we add it to the newString and it becomes, 
newString = "b"

The next set of 4 characters are, ('e', 'd', 'c', 'a')
Out of these 4 characters, the smallest one is 'a' and hence we add it to the newString and it becomes, 
newString = "ba"

Now we are left with "edc" and since we can't get a window of size 4, we sort them in the increasing order and append them to the newString.

Hence, newString thus formed will be "bacde".
Try solving now

3. Aptitude Question

Consider a pipe of length L. The pipe has N water droplets at N different positions within it. Each water droplet is moving towards the end of the pipe(x=L) at different rates.

When a water droplet mixes with another water droplet, it assumes the speed of the water droplet it is mixing with. Determine the no of droplets that come out of the end of the pipe.

03
Round
Medium
Face to Face
Duration20 minutes
Interview date9 Nov 2020
Coding problem1

The interviewer was very kind and humble, so he made me comfortable all the time during the interview. In this round, he asked me simple basic questions related to my important subjects of my course and he also ask few questions on the basis of my resume .

1. Technical Questions

Discussion on project.

What is black box and white box testing?
Bubble sort ?
Linear sorting ?

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is the output of print(type("Python"))?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
3005 views
0 comments
0 upvotes
Software Engineer
4 rounds | 4 problems
Interviewed by Avl india private limited
625 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
2112 views
0 comments
0 upvotes
company logo
System Engineer
2 rounds | 2 problems
Interviewed by Tata Consultancy Services (TCS)
1886 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - Intern
3 rounds | 6 problems
Interviewed by Amazon
14509 views
4 comments
0 upvotes
company logo
SDE - Intern
4 rounds | 7 problems
Interviewed by Microsoft
13991 views
1 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 4 problems
Interviewed by Amazon
9605 views
2 comments
0 upvotes