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

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 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)

Interview questions from similar companies

I applied via Monster and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. About MVC and .NET framework
  • Q2. Questions on Rest API, Core services and WCF

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to be strong in basic .NET framework

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

Interview Questionnaire 

1 Question

  • Q1. All technical questions related to angular CSS HTML js

Interview Preparation Tips

Interview preparation tips for other job seekers - If are good at your technical it's easy to clear

I applied via Company Website and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Coding Test 

Java assesment.

Round 3 - HR 

(1 Question)

  • Q1. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to start your career. Even if project managers or people wont support you, you will have teams and they will surely assist you with learning and progressing further.

Great to be part of Wipro!!

I applied via Walk-in and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Main focous on java and selenium.if you have devops knowledge then good to have..
  • Q2. Framework design,oops concept, challange you face,roles and responsibilities,agile concept etc...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, focous on core Java,do good practice to identify elements, analyse the things before you respond,be more practical,raise the concern once you stuck,try to find the solution from your end before you ask for Help,...

I applied via Naukri.com and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They asked me to build a shopping cart web application using vanilla js and gave two days time , that was the only round they had!

Interview Preparation Tips

Interview preparation tips for other job seekers - I built the app according to wireframe and they evaluated it and selected me directly!

Interview Questionnaire 

2 Questions

  • Q1. What is the difference between arraylist and linked list What are different types of annotations used in spring boot What is lambda expression?
  • Ans. 

    ArrayList and LinkedList are both data structures used to store and manipulate collections of objects in Java.

    • ArrayList is implemented as a resizable array, while LinkedList is implemented as a doubly linked list.

    • ArrayList provides constant time access to elements using their index, while LinkedList provides constant time insertion and deletion of elements.

    • Spring Boot annotations include @Controller, @Service, @Reposit...

  • Answered by AI
  • Q2. What is the difference between truncate and delete in mySQL How to truncate a table in MySQL Methodology used in your project like agile etc
  • Ans. 

    Truncate removes all data from a table while delete removes specific rows.

    • Truncate is faster than delete as it doesn't log individual row deletions

    • Truncate resets auto-increment values while delete doesn't

    • To truncate a table in MySQL, use the TRUNCATE TABLE statement

    • Methodology used in my project was Agile

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the basics. That part should be strong. You should have knowledge about the methodologies and tools used in your company.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hosting in javascript? Difference between let and var?
  • Ans. 

    let vs var in JavaScript and hosting

    • let has block scope while var has function scope

    • let cannot be redeclared in the same scope while var can

    • Hosting is the process of moving a website or application to a server

    • JavaScript can be hosted on various platforms such as AWS, Heroku, and Firebase

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong on basics of what ever technology you work.

Skills evaluated in this interview

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

AppDynamics

No Interviews

INTERVIEWS

Affine

No Interviews

INTERVIEWS

Betsol

No Interviews

INTERVIEWS

Betsol

No Interviews

INTERVIEWS

Workday

No Interviews

INTERVIEWS

Betsol

No Interviews

INTERVIEWS

Arup

No Interviews

INTERVIEWS

Essar Group

No Interviews

INTERVIEWS

Essar Group

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