Upload Button Icon Add office photos

AVL

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

AVL Software Developer Intern Interview Questions, Process, and Tips

Updated 16 Sep 2021

AVL Software Developer Intern Interview Experiences

1 interview found

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

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

  • Q1. 

    Longest Common Subsequence Problem Statement

    Given two strings, S and T with respective lengths M and N, your task is to determine the length of their longest common subsequence.

    A subsequence is a seque...

  • Ans. 

    The task is to find the length of the longest common subsequence between two given strings.

    • A subsequence is a string that can be derived from another string by deleting some or no characters without changing the order of the remaining characters.

    • We can solve this problem using dynamic programming.

    • Create a 2D array to store the lengths of the longest common subsequences for all possible prefixes of the two strings.

    • Itera...

  • Answered by AI
  • Q2. 

    Overlapping Intervals Problem Statement

    You are given the start and end times of 'N' intervals. Write a function to determine if any two intervals overlap.

    Note:

    If an interval ends at time T and anothe...

  • Ans. 

    The function checks if any two intervals overlap with each other.

    • Iterate through the intervals and compare the end time of one interval with the start time of the next interval.

    • If the end time is greater than or equal to the start time, the intervals overlap.

    • Return true if any overlapping intervals are found, otherwise return false.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Medium

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

  • Q1. 

    Alien Dictionary Problem Statement

    You are provided with a sorted dictionary (by lexical order) in an alien language. Your task is to determine the character order of the alien language from this dictiona...

  • Ans. 

    The task is to find the order of characters in an alien language given a sorted dictionary.

    • The order of characters can be determined by comparing adjacent words in the dictionary.

    • Create a graph where each character is a node and there is a directed edge from character A to character B if A comes before B in the alien language.

    • Perform a topological sort on the graph to get the order of characters.

  • Answered by AI
  • Q2. 

    String Transformation Problem

    Given a string (STR) of length N, you are tasked to create a new string through the following method:

    Select the smallest character from the first K characters of STR, remov...

  • Ans. 

    The task is to create a new string by repeatedly taking the smallest character from the first 'K' characters of the given string and appending it to the new string.

    • Iterate through the given string in chunks of size 'K'

    • Find the smallest character in each chunk and append it to the new string

    • If there are characters remaining in the string, sort them and append to the new string

    • Repeat the above steps until the original st

  • Answered by AI
Round 3 - Face to Face 

Round duration - 20 minutes
Round difficulty - Medium

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 .

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in GurgaonEligibility criteriaAbove 7 CGPAAvl india private limited interview preparation:Topics to prepare for the interview - Operating System, Networking, Database Management System, Data structures , Competitive programming mainly focused on dynamic programming and graphs algorithms.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

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 resume tips for other job seekers

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 .

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

Interview Questionnaire 

1 Question

  • Q1. A-Z in MySQL, programming languages(only concepts)

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Self introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - say individual ideas,plans, story's.say different opinions,speek confidentially, correctly answer Yes or no questions, correctly say interested and confidential job,

I applied via Campus Placement and was interviewed in Nov 2020. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are oops concept
  • Ans. 

    OOPs concepts are the fundamental principles of object-oriented programming.

    • Encapsulation - binding data and functions that manipulate the data

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on many forms

    • Abstraction - hiding implementation details and showing only functionality

  • Answered by AI
  • Q2. What is storage classes in c
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • There are four storage classes in C: auto, register, static, and extern.

    • Auto variables are local to a block and have automatic storage duration.

    • Register variables are stored in CPU registers for faster access.

    • Static variables have a lifetime throughout the program and are initialized only once.

    • Extern variables are declared outside any function and can be a

  • Answered by AI
  • Q3. Describe about your final year project and internship

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence,and positive and answer your question confidently.

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

1.It covers all aptitude topics, and English sentences
2.Essay writing
3.Coding

Round 2 - Technical 

(2 Questions)

  • Q1. In TR , languages which u mentioned in resume they will ask Basic programing Questions on Btech project They will say one idea , we need to tell the logic how can we develop (it may varies)
  • Q2. Testing questions Polymorphism, abstraction,constructors, SQL basics
Round 3 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. Tell me about yourself.
  • Q4. What are your strengths and weaknesses?
  • Q5. Knowledge about updated technologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume is important for your TR. Mention only languages u know well.
Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

REVIEWS

Honda

No Reviews

INTERVIEWS

AVL

No Interviews

SALARIES

Honda

JOBS

SML Isuzu

No Jobs

SALARIES

Honda

SALARIES

SML Isuzu

SALARIES

Honda

SALARIES

Honda

SALARIES

Virtusa Consulting Services

DESIGNATION

Tell us how to improve this page.

Assistant Engineer
57 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Engineer
53 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Senior Software Engineer
52 salaries
unlock blur

₹7.2 L/yr - ₹22 L/yr

Software Engineer
45 salaries
unlock blur

₹3.5 L/yr - ₹9.6 L/yr

Senior Engineer
41 salaries
unlock blur

₹5 L/yr - ₹13.6 L/yr

Explore more salaries
Compare AVL with

Bosch

4.2
Compare

TCS

3.7
Compare

Mahindra & Mahindra

4.1
Compare

Infosys

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview