Upload Button Icon Add office photos

Filter interviews by

AppDynamics Interview Questions and Answers

Updated 11 Oct 2024

AppDynamics Interview Experiences

Popular Designations

3 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leetcode medium problem.

Round 2 - Coding Test 

Leetcode medium and test cases.

Round 3 - One-on-one 

(1 Question)

  • Q1. System design, design a distributed kv store
  • Ans. 

    Design a distributed key-value store system

    • Use consistent hashing to distribute data across nodes

    • Implement replication for fault tolerance

    • Use a gossip protocol for node communication

    • Consider data partitioning and sharding for scalability

    • Implement a distributed consensus algorithm like Raft or Paxos for consistency

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview, get your basics right.

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

An online test with 2 coding problems
1. DP medium
2. Tree medium

Round 2 - Coding Test 

In-person interview, asked 2 coding questions
1. easy question based on binary search. Write pseudo code on paper
2. medium question based on tree. Write pseudo code on paper

Round 3 - HR 

(2 Questions)

  • Q1. Asked about the projects mentioned in resume
  • Q2. What challenges did you overcome in your last internship
  • Ans. 

    I overcame challenges related to learning new technologies and working in a fast-paced environment.

    • Learning to use a new programming language and framework

    • Adapting to the fast-paced nature of the work environment

    • Troubleshooting and debugging complex issues

    • Collaborating with team members to meet project deadlines

  • Answered by AI

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

I applied via Company Website and was interviewed in Aug 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Three easy level leetcode questions

Round 2 - Technical 

(1 Question)

  • Q1. 2 leetcode easy dsa question
Round 3 - Technical 

(1 Question)

  • Q1. Projects and 2 leetcode easy level questions
Round 4 - Technical 

(1 Question)

  • Q1. Project and behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 4 rounds all in same day.
After all rounds hr told me that i am selected and that he will share offer letter soon(he also took my documents as well).
Few days after repeatedly ignoring my calls he tells me that they have hired an internal candidate.
Please don't interview for this company, they pay in pennies and the hr are very arrogant and rude.
Worst hr don't care about the interviewee at all, don't waste your time interviewing at this company.

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Interview questions from similar companies

Interview Preparation Tips

Round: Resume Shortlist
Experience: A telephonic of technical round basics about C concepts and Embedded C Concepts in order to call for next round .

I applied via Other and was interviewed in Nov 2017. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Brief Role on job and tools and technology I worked with day to day activity
  • Ans. 

    As a Senior Software Engineer, I worked with various tools and technologies to develop and maintain software applications.

    • Developed and maintained software applications using Java, Python, and C++ programming languages

    • Used Agile methodology for software development and collaborated with cross-functional teams

    • Worked with various tools such as Git, JIRA, Jenkins, and Docker for version control, issue tracking, continuous...

  • Answered by AI
  • Q2. In-depth technical interview which went around 40 min. since i had 8 years of experience
  • Q3. Fully technical
  • Q4. Salary discussion and Document verification.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Keywords that I put in of the technology, tools , experience.. (I guess )

General Tips: Just stay calm. Do not show fake experience, Speak genuinely, Answer to the point and explain if you have to add on more depending on your experience. Do not be over confident. Speak start to the eyes
Skills: Communication, Problem Solving, Analytical Skills, Leadership, Presentation Skills, Decision Making Skills
Duration: 1-3 Months

Interview Preparation Tips

Round: Technical Interview
Experience: Has a 1 hr interview. He asked the Qs on my experience, what I have put in my resume. Its good conversation with interviewer.

Round: HR Interview
Experience: In HR interview he asked about my salary and what he is going to offer me. I left for the day. There is no response for 5 days from the HR. After a week I got the call my HR and discussion was happened about the salary again and said to upload some documents. I did it. There is no response for 4 days again. I got call again after 4 days and this time she said there is no suitable position for my experience so she is going to reject my application. Its very painful to listen like this.

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Kony based

Interview Preparation Tips

Interview preparation tips for other job seekers - Its really nice being interviewed at LTI. The questions were asked completely based on my domain and it was pure real time scenario based if you are good with the technical stuff which you are performing every day you are good to clear this interview

I applied via Naukri.com and was interviewed before Jun 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Core java very basic
  • Q2. Collections, string, object class, == and equals, threads

Interview Preparation Tips

Interview preparation tips for other job seekers - HR Round is important. Negotiate to get variable salary monthly. Otherwise variable salary is gone. Join only if you want to go abroad and put your every efforts for that otherwise useless for the co in sometime. After join, Resource Managers sucks try hard to prepare for the client interview that matters the most.

I applied via Recruitment Consultant and was interviewed in Jul 2018. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is the biggest challenge you faced in developing azure solution?
  • Ans. 

    The biggest challenge in developing Azure solution was managing the complexity of the cloud environment.

    • Managing the complexity of the cloud environment

    • Ensuring scalability and reliability

    • Integrating with existing systems

    • Securing the solution

    • Optimizing cost

    • Example: Migrating a legacy application to Azure

  • Answered by AI
  • Q2. In azure data factory how would you implement the functionality of tumbling window without actually using that feature already available?
  • Ans. 

    Implementing tumbling window in Azure Data Factory without using the feature

    • Create a pipeline with a trigger that runs at the desired interval

    • Use a lookup activity to retrieve the data for the current window

    • Use a foreach activity to iterate over the retrieved data

    • Perform the required operations on the data within the foreach activity

    • Write the output to the desired destination

  • Answered by AI
  • Q3. What would be your suggestion for implementation in azure data factory v2?
  • Ans. 

    My suggestion for implementation in Azure Data Factory v2 is to use the Mapping Data Flow feature.

    • Utilize Mapping Data Flow for complex data transformations

    • Take advantage of the visual interface to design and debug data flows

    • Leverage the built-in data integration capabilities with other Azure services

    • Use data flow parameters and expressions for dynamic transformations

    • Monitor and optimize data flow performance using dat

  • Answered by AI
  • Q4. I was given a project scenario and was requested to choose from below cluster or cluster less , hive or u-sql?

Interview Preparation Tips

General Tips: Be pretty confident on the current project you are working on. It's ok that you do not know the complete technology but you should have the complete picture of stuff you are working on. Be clear as to why are using specific technology for your project and not the other one. For example, i worked on azure and drilled my way to understand the edge azure has over aws. I did good work onto why are we using hive language and azure data ware house for our project instead of using u-sql and azure SQL data base. Do not bluff, better be humble to accept that we are not fully aware of something and given a chance to work on, we will. And last thing, smile and appreciate the effort put in by interviewer.
Skills: Coding Skills, Datawarehousing, Azure data factory, Problem Solving, Analytical Skills
Duration: <1 week

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical question related to the application?

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be confident about your answers and don't lie on any terms.
Contribute & help others!
anonymous
You can choose to be anonymous

AppDynamics Interview FAQs

How many rounds are there in AppDynamics interview?
AppDynamics interview process usually has 3-4 rounds. The most common rounds in the AppDynamics interview process are Coding Test, Technical and One-on-one Round.
What are the top questions asked in AppDynamics interview?

Some of the top questions asked at the AppDynamics interview -

  1. System design, design a distributed kv st...read more
  2. Projects and 2 leetcode easy level questi...read more
  3. Project and behavioral questi...read more

Recently Viewed

INTERVIEWS

Affine

No Interviews

INTERVIEWS

Affine

No Interviews

INTERVIEWS

Pure Storage

No Interviews

INTERVIEWS

Backbase

No Interviews

INTERVIEWS

Essar Group

No Interviews

INTERVIEWS

Affine

No Interviews

INTERVIEWS

AppDynamics

No Interviews

INTERVIEWS

Affine

No Interviews

INTERVIEWS

Betsol

No Interviews

Tell us how to improve this page.

AppDynamics Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
View all

AppDynamics Reviews and Ratings

based on 26 reviews

4.2/5

Rating in categories

4.0

Skill development

4.5

Work-life balance

4.4

Salary

4.0

Job security

4.2

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 26 Reviews and Ratings
Software Engineer
38 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

SDE-2
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare AppDynamics with

Freshworks

3.5
Compare

Zoho

4.3
Compare

InMobi

3.5
Compare

TCS

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