Upload Button Icon Add office photos

Akamai Technologies

Compare button icon Compare button icon Compare
4.3

based on 377 Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Akamai Technologies Senior Manager Interview Questions and Answers

Updated 10 Jan 2023

Akamai Technologies Senior Manager Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2022. 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 tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Key deliverables and scope of project in current role
  • Ans. 

    In my current role as Senior Manager, the key deliverables and scope of my project include...

    • Leading a team of 10 professionals to successfully implement a new CRM system

    • Developing and executing a comprehensive marketing strategy to increase customer acquisition by 20%

    • Managing a budget of $1 million to ensure project milestones are met

    • Collaborating with cross-functional teams to streamline processes and improve operati...

  • Answered by AI
  • Q2. Reporting metrics within the team
  • Ans. 

    Reporting metrics is crucial for team success.

    • Regularly track and analyze key performance indicators (KPIs)

    • Communicate metrics clearly and effectively to team members

    • Use data to identify areas for improvement and set goals

    • Ensure metrics align with overall business objectives

  • Answered by AI
Round 3 - One-on-one 

(3 Questions)

  • Q1. Past experience and how can I add value to what Akamai does
  • Ans. 

    I have extensive experience in managing teams and driving business growth. I can add value to Akamai by leveraging my expertise in strategic planning, process optimization, and customer relationship management.

    • I have successfully managed cross-functional teams and delivered projects on time and within budget.

    • I have a proven track record of driving revenue growth through effective sales strategies and customer retention...

  • Answered by AI
  • Q2. Team management and engagement questions
  • Q3. Reporting structure and performance metrics from my previous organization
  • Ans. 

    In my previous organization, I reported to the Director of Operations and was evaluated based on sales targets and customer satisfaction.

    • Reported to Director of Operations

    • Evaluated based on sales targets and customer satisfaction

    • Received regular feedback and coaching sessions

    • Metrics were tracked and reviewed on a monthly basis

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Akamai Technologies Senior Manager interview:
  • Akamai portfolio on their websit
Interview preparation tips for other job seekers - The interview mainly revolves around my previous work experience and how relevant that is with the current project at Akamai. They definitely focus a lot on communication skills. Also, it's important to have real life examples of how you solved a problem, what is the strategy used to help complete a certain type of assignment etc. It's important to come prepared with questions about your role, project, team and what value they will like you to add as an individual contributor as well as a manager (if relevant). Bring your whole self to the interview, do some homework on who you are going to speak with (pull up their LinkedIn profiles) and you should do just fine.

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. System design on current product
  • Ans. 

    I have experience in system design for current product, focusing on scalability and efficiency.

    • Analyze current system architecture and identify areas for improvement

    • Consider scalability, performance, security, and user experience in design

    • Collaborate with cross-functional teams to gather requirements and ensure alignment

    • Implement best practices and technologies to optimize system design

    • Regularly review and iterate on s

  • Answered by AI
  • Q2. Difference between NoSQL and RDMBS
  • Ans. 

    NoSQL is a non-relational database management system that allows for flexible and scalable data storage, while RDBMS is a traditional relational database management system with structured data storage.

    • NoSQL databases are schema-less, allowing for easy scalability and flexibility in data storage.

    • RDBMS databases use structured query language (SQL) for data manipulation and retrieval.

    • NoSQL databases are better suited for ...

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Very good Interview Process. Good mix of Technical and Functional questions.
  • Q2. 1) Experience Project and Program management aspects. 2) Questions on Agile, Scrum and Ceremonies.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be through with what you put in the CV.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Find longest palindromic substring in a given string.
  • Ans. 

    Use dynamic programming to find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes.

    • Store the length of the longest palindrome found so far.

    • Return the substring based on the start and end indices of the longest palindrome.

  • Answered by AI
  • Q2. How to serialize and deserialise a tree
  • Ans. 

    To serialize and deserialize a tree, use a recursive approach to traverse the tree and store the data in a suitable format.

    • Use pre-order traversal to serialize the tree by storing the node values in a list or string.

    • For deserialization, reconstruct the tree by recursively building nodes from the serialized data.

    • Consider using JSON or XML format for serialization to easily store and retrieve tree structure.

  • Answered by AI
  • Q3. Find if a given regex (containing ., * and lower case english chars) matches a given string.
  • Ans. 

    Use regex library to match given regex with string.

    • Use a regex library like re in Python to match the given regex with the string.

    • Check if the regex matches the string using the library functions.

    • Handle cases where the regex contains special characters like . and * appropriately.

  • Answered by AI
  • Q4. Explain about throttling and implement throttle function.
  • Ans. 

    Throttling is a technique used to control the rate of requests sent to a server.

    • Throttling helps prevent server overload by limiting the number of requests processed at a time.

    • Implementing a throttle function involves setting a maximum request rate and delaying excess requests.

    • Example: Implementing a throttle function in a web application to limit the number of API calls made to a third-party service.

    • Example: Throttlin...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Find squares of elements in a sorted array and return the sorted response.
  • Ans. 

    Sort the squares of elements in a sorted array and return the sorted response.

    • Iterate through the array and square each element.

    • Store the squared values in a new array.

    • Sort the new array and return it.

  • Answered by AI
  • Q2. Write a short promise example and implement your own promise
  • Ans. 

    A promise is a commitment to do something in the future, typically used for asynchronous operations in JavaScript.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They represent a value that may be available now, in the future, or never.

    • Promises have three states: pending, fulfilled, or rejected.

    • Example: new Promise((resolve, reject) => { setTimeout(() => resolve('Done!'), 1000); });

  • Answered by AI
  • Q3. Explain event loop, what are different types of queues in event loop
  • Ans. 

    Event loop is a mechanism that allows for asynchronous execution of code by managing the order of events in a single thread.

    • Event loop continuously checks the call stack for any functions that need to be executed, and processes them in a non-blocking manner.

    • Different types of queues in event loop include microtask queue (Promise callbacks), macrotask queue (setTimeout, setInterval callbacks), and animation frame queue

  • Answered by AI
  • Q4. What is virtual DOM and why its faster
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM, used to improve performance by minimizing direct manipulation of the real DOM.

    • Virtual DOM is a concept used in frameworks like React to optimize rendering performance.

    • Changes are first made to the virtual DOM, which is then compared to the real DOM to identify the minimal updates needed.

    • This approach reduces the number of actual DOM manipulations, resulting in faster...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ServiceNow Senior Software Engineer interview:
  • React.Js
  • Javascript
  • DSA

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Reverse the linked list.
Round 2 - Technical 

(1 Question)

  • Q1. Internel working of Hashmap
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected
Round 1 - Coding Test 

DSA round leetcode style question

Round 2 - Technical 

(1 Question)

  • Q1. Design + Coding round for rate limiter

Interview Preparation Tips

Interview preparation tips for other job seekers - Final round - System Design
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Java Basics like jdk, jre, core java questions
  • Q2. Merge sort
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me about your experience?
  • Ans. 

    I have over 8 years of experience in software development, specializing in backend systems and database management.

    • Developed scalable backend systems using Java and Spring framework

    • Designed and optimized database schemas for performance

    • Led a team of developers in implementing new features and resolving technical issues

    • Worked on integrating third-party APIs for enhanced functionality

  • Answered by AI
  • Q2. Asked deeply on my current project?
  • Q3. What are difficulties you faced in your work?
  • Ans. 

    Difficulties faced include complex technical challenges, tight deadlines, and communication issues.

    • Complex technical challenges such as optimizing performance of a large-scale system

    • Tight deadlines requiring quick turnaround on projects

    • Communication issues with team members or stakeholders leading to misunderstandings

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between abstract class and interface?
  • Q2. Explain OOP in C#?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. String coding question
  • Q2. File operations

Akamai Technologies Interview FAQs

How many rounds are there in Akamai Technologies Senior Manager interview?
Akamai Technologies interview process usually has 3 rounds. The most common rounds in the Akamai Technologies interview process are One-on-one Round and Resume Shortlist.
How to prepare for Akamai Technologies Senior Manager interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Akamai Technologies. The most common topics and skills that interviewers at Akamai Technologies expect are Incident management, Information Security, Automation, Budgeting and Cloud.
What are the top questions asked in Akamai Technologies Senior Manager interview?

Some of the top questions asked at the Akamai Technologies Senior Manager interview -

  1. Reporting structure and performance metrics from my previous organizat...read more
  2. Reporting metrics within the t...read more

Tell us how to improve this page.

Akamai Technologies Senior Manager Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Adobe Interview Questions
4.0
 • 249 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 169 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
VMware Software Interview Questions
4.4
 • 157 Interviews
Dassault Systemes Interview Questions
4.0
 • 157 Interviews
ServiceNow Interview Questions
4.2
 • 118 Interviews
Verizon Interview Questions
4.1
 • 112 Interviews
Thomson Reuters Interview Questions
4.1
 • 111 Interviews
Amadeus Interview Questions
4.0
 • 108 Interviews
View all
Akamai Technologies Senior Manager Salary
based on 8 salaries
₹21.4 L/yr - ₹55 L/yr
89% more than the average Senior Manager Salary in India
View more details

Akamai Technologies Senior Manager Reviews and Ratings

based on 3 reviews

4.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

4.7

Job security

5.0

Company culture

4.2

Promotions

5.0

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
104 salaries
unlock blur

₹17 L/yr - ₹45 L/yr

Software Engineer
86 salaries
unlock blur

₹10.8 L/yr - ₹22 L/yr

Software Engineer2
85 salaries
unlock blur

₹12 L/yr - ₹30 L/yr

Platform Operations Engineer
65 salaries
unlock blur

₹5.5 L/yr - ₹15.7 L/yr

Technical Solutions Engineer
63 salaries
unlock blur

₹7 L/yr - ₹18 L/yr

Explore more salaries
Compare Akamai Technologies with

Limelight Networks

5.0
Compare

Cloudflare

1.0
Compare

F5 Networks

3.8
Compare

Level 3 Communications

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