Open In App

Appdynamics On Campus Internship Interview Experience

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report


Coding Round
There were 9 MCQs and 3 Coding Problems in Coding Round. Most of the MCQs were on basic Data Structures, Algorithms and 2 MCQs were on DBMS.
Coding Problems :

Question-1:https://www.geeksforgeeks.org/count-pairs-difference-equal-k/Question 1
Question 2: You are given an array of n integers. You can perform the following operation k times.
a[i] = ceil(a[i]/2)
You can perform this operation on the same number multiple times. You need to minimise the sum of the array after k operations.

Question-3: https://leetcode.com/discuss/interview-question/202553/Traveling-is-Fun/Question 3

Round 1
This was a technical round in which interviewer asked me questions about my project and then asked me some SQL queries. Then he asked me to code given problems on pen and paper
Question 1: Given a bracketing sequence. You can replace open bracket with close bracket and also close with open bracket. You need to make given bracket a regular bracket sequence.

Question-2:https://www.geeksforgeeks.org/zigzag-tree-traversal/Question 2

Round 2
This was also a technical round. The interviewer asked me questions on my project, and then he asked me to code the following task keeping Object-Oriented Programming paradigm in mind.
You are given a binary search tree, and you need to make a function named next_successor which should print next successor of inorder traversal in O(log n) space and O(1) time.
Then he asked me to create a data structure which should perform the following functions in O(1) time
1. Insert
2. Delete
3. Contains (return True if the given value is present)
4. get random (return any random value from available values)
(I was not supposed to code this instead explain my approach)
Solution


Last Updated : 12 Aug, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads