Upload Button Icon Add office photos

Amagi Media Labs

Compare button icon Compare button icon Compare

Filter interviews by

Amagi Media Labs Interview Questions and Answers

Updated 4 Jun 2025
Popular Designations

16 Interview questions

A PMO Lead was asked 1mo ago
Q. Tell me about your past experiences.
Ans. 

I led a PMO that streamlined project processes, enhancing efficiency and stakeholder satisfaction across multiple initiatives.

  • Implemented a standardized project management framework, resulting in a 20% reduction in project delivery times.

  • Facilitated cross-functional collaboration by organizing regular stakeholder meetings, improving communication and alignment.

  • Utilized project management tools like JIRA and Trello...

View all PMO Lead interview questions
A Network Support Engineer L1 was asked 10mo ago
Q. What is the use of the div tag in HTML?
Ans. 

The div tag in HTML is used to create a division or a section in a web page.

  • Used to group and style content

  • Can be used to create layout structures

  • Can be styled using CSS

View all Network Support Engineer L1 interview questions
A Network Support Engineer L1 was asked 10mo ago
Q. Write a Java code to check if a given string is a palindrome.
Ans. 

Code to check if a given string is a palindrome in Java

  • Create a function that takes a string as input

  • Use two pointers, one starting from the beginning and one from the end, to compare characters

  • If all characters match, the string is a palindrome

View all Network Support Engineer L1 interview questions
A Network Support Engineer L1 was asked 10mo ago
Q. What is Amazon EC2?
Ans. 

Amazon EC2 (Elastic Compute Cloud) is a web service that provides resizable compute capacity in the cloud.

  • Virtual servers in the cloud

  • Pay-as-you-go pricing model

  • Scalable and flexible computing resources

  • Supports various operating systems and applications

View all Network Support Engineer L1 interview questions
A Technical Lead was asked 12mo ago
Q. How would you design the Uber app using AWS infrastructure?
Ans. 

Uber App can be designed using AWS infra by leveraging services like EC2, S3, Lambda, API Gateway, RDS, and DynamoDB.

  • Use EC2 instances to host the backend services and databases.

  • Store user data and media files in S3 buckets.

  • Utilize Lambda functions for serverless computing and event-driven architecture.

  • Expose APIs through API Gateway for communication between different components.

  • Use RDS for relational database ma...

View all Technical Lead interview questions
A Full Stack Developer was asked 12mo ago
Q. What are Callbacks?
Ans. 

Callbacks are functions passed as arguments to other functions, to be executed later.

  • Callbacks are commonly used in asynchronous programming to handle events or responses.

  • They allow for functions to be executed after another function has finished.

  • Callbacks can be used to achieve better modularity and reusability in code.

  • Example: setTimeout function in JavaScript takes a callback function as an argument to be execu...

View all Full Stack Developer interview questions
A Sdet Engineer was asked 12mo ago
Q. Write code to check if a string meets specific password requirements using built-in Java functions.
Ans. 

Code to check if a string meets password requirements using built-in Java functions.

  • Use String class methods like length(), contains(), matches() to check for password requirements.

  • Use regular expressions to validate password requirements such as minimum length, uppercase, lowercase, digits, special characters.

  • Example: String password = "Pass123!"; boolean isValid = password.length() >= 8 && password.matches(".*[A...

View all Sdet Engineer interview questions
Are these interview questions helpful?
A Software Intern was asked
Q. You are given an array prices where prices[i] is the price of a given stock on the ith day. You want to maximize your profit by choosing a single day to buy one stock and choosing a different day in the fut...
Ans. 

Maximize profit by buying and selling stock with given prices over time.

  • Identify the lowest price to buy before a higher price to sell.

  • Iterate through the price array to track minimum price and maximum profit.

  • Example: For prices [7, 1, 5, 3, 6, 4], buy at 1 and sell at 6 for max profit of 5.

  • Consider edge cases like prices always decreasing or constant prices.

View all Software Intern interview questions
A Sdet 2 was asked
Q. Write a program to count the occurrences of each character in a given string.
Ans. 

Count the occurrences of each character in a given string

  • Iterate through the string and use a hashmap to store the count of each character

  • Return the hashmap as an array of strings with character and count pairs

View all Sdet 2 interview questions
A Product Support Engineer was asked
Q. Pick a chit, think about it for 2 to 3 minutes, and then speak about it.
Ans. 

The importance of continuous learning in a technical field

  • Continuous learning is essential to stay updated with new technologies and trends

  • It helps in improving problem-solving skills and staying competitive in the industry

  • Attending workshops, online courses, and reading technical articles are ways to continue learning

  • Example: Learning about new programming languages or tools to enhance skills

View all Product Support Engineer interview questions

Amagi Media Labs Interview Experiences

29 interviews found

IT Engineer Interview Questions & Answers

user image Anonymous

posted on 12 May 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before May 2022, where I was asked the following questions.

  • Q1. Saas applications
  • Q2. OneLogin,CrowdStrike Secpod itsecurity
  • Q3. No idea don't
  • Q4. Networking, vpn , firewall

Business Head Interview Questions & Answers

user image Anonymous

posted on 26 Mar 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. Senior manager need to configure Salesforce and NetSuite. Now you can understand why this company isn't able to recruit someone for the role for more than 6 months. No Technology person will report to a sa...
  • Q2. Where in the world a senior manager should do configuration, write programs and do business analysis ? Senior manager have done it all in the past and is now supposed to guide people with that skills. It's...
  • Ans. 

    A senior manager should leverage their skills in strategic locations to enhance team capabilities and drive business success.

    • In a startup environment, senior managers can configure systems to streamline operations, like implementing an agile project management tool.

    • They can write programs to automate repetitive tasks, such as developing scripts for data analysis to improve decision-making.

    • Conducting business analysis i...

  • Answered by AI
  • Q3. Sales guy with customer service experience with zero technology hands on and bad attitude as if he is negotiating with vendors will take decade time to find a suitable person. Also hands on guys in NetSuit...

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are Techie from non media background , save your time from this company.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude questions and basic english

Round 2 - Technical 

(3 Questions)

  • Q1. What is amazon EC2
  • Ans. 

    Amazon EC2 (Elastic Compute Cloud) is a web service that provides resizable compute capacity in the cloud.

    • Virtual servers in the cloud

    • Pay-as-you-go pricing model

    • Scalable and flexible computing resources

    • Supports various operating systems and applications

  • Answered by AI
  • Q2. Write a code for palindrome in java
  • Ans. 

    Code to check if a given string is a palindrome in Java

    • Create a function that takes a string as input

    • Use two pointers, one starting from the beginning and one from the end, to compare characters

    • If all characters match, the string is a palindrome

  • Answered by AI
  • Q3. What is the use of div tag in html
  • Ans. 

    The div tag in HTML is used to create a division or a section in a web page.

    • Used to group and style content

    • Can be used to create layout structures

    • Can be styled using CSS

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - just be prepared with everything on your resume

Skills evaluated in this interview

PMO Lead Interview Questions & Answers

user image Ebay Ebay

posted on 14 May 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Question on case study and paste exp
  • Q2. Past exp ques
  • Ans. 

    I led a PMO that streamlined project processes, enhancing efficiency and stakeholder satisfaction across multiple initiatives.

    • Implemented a standardized project management framework, resulting in a 20% reduction in project delivery times.

    • Facilitated cross-functional collaboration by organizing regular stakeholder meetings, improving communication and alignment.

    • Utilized project management tools like JIRA and Trello to t...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude questions with 2-3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Input-wwwrrrrttttuu Output - w3r4t4u2
  • Q2. Interpreter vs compiler
  • Ans. 

    Interpreter executes code line by line, compiler translates code into machine code before execution.

    • Interpreter translates code into machine code line by line during runtime

    • Compiler translates code into machine code before execution

    • Interpreted languages include Python, JavaScript

    • Compiled languages include C, C++

  • Answered by AI

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 30 May 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Two coding questions along with the mcqs related to Computer networks, database management systems and aptitude was asked.

Round 2 - Technical 

(1 Question)

  • Q1. Code for nested dictionary Projects related Resume based
  • Ans. 

    Code for nested dictionary

    • Use curly braces to define the outer dictionary

    • Use square brackets to define the inner dictionaries

    • Access values using keys

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

(2 Questions)

  • Q1. Code to check if the string meets the password requirements. In built Java functions
  • Ans. 

    Code to check if a string meets password requirements using built-in Java functions.

    • Use String class methods like length(), contains(), matches() to check for password requirements.

    • Use regular expressions to validate password requirements such as minimum length, uppercase, lowercase, digits, special characters.

    • Example: String password = "Pass123!"; boolean isValid = password.length() >= 8 && password.matches(".*[A-Z].*...

  • Answered by AI
  • Q2. In detail about Java libraries Exception handling Creating our own exception

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 11 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Aws,linux based questions.

Technical Lead Interview Questions & Answers

user image mahesh singh

posted on 19 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Golang questions on threads

Round 2 - One-on-one 

(2 Questions)

  • Q1. Design Uber App using AWS infra ?
  • Ans. 

    Uber App can be designed using AWS infra by leveraging services like EC2, S3, Lambda, API Gateway, RDS, and DynamoDB.

    • Use EC2 instances to host the backend services and databases.

    • Store user data and media files in S3 buckets.

    • Utilize Lambda functions for serverless computing and event-driven architecture.

    • Expose APIs through API Gateway for communication between different components.

    • Use RDS for relational database managem...

  • Answered by AI
  • Q2. How you handled the difficult situation with customer ?
  • Ans. 

    I approach difficult customer situations with empathy, clear communication, and a focus on solutions to build trust and resolve issues.

    • Listen actively to the customer's concerns to understand their perspective.

    • Remain calm and composed, even if the customer is upset, to de-escalate the situation.

    • Provide clear and honest information about the issue and potential solutions.

    • Follow up with the customer after resolving the i...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

On hacker rank , included subjects like DBMS , OS and coding questions on priority queue

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on OOPS
  • Q2. One DSA question on HashMap
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Behavioural questions Past experience questions
Round 2 - Case Study 

Launch plan of a new product line

Round 3 - Group Discussion 

Case study discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - HR just ghosted and never came back with a feedback after a long and tedious process lasting months. Case study I am sure was an idea generation tool. At the very least, there should be respect for the time of the candidate to receive at least a short feedback - ghosting is not an answer. Despite multiple follow ups, there was no response. Read multiple such reviews on Glassdoor afterwards.

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Amagi Media Labs?
Ask anonymously on communities.

Amagi Media Labs Interview FAQs

How many rounds are there in Amagi Media Labs interview?
Amagi Media Labs interview process usually has 2-3 rounds. The most common rounds in the Amagi Media Labs interview process are Technical, Coding Test and Aptitude Test.
How to prepare for Amagi Media Labs 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 Amagi Media Labs. The most common topics and skills that interviewers at Amagi Media Labs expect are Python, AWS, Linux, Data Analytics and Project Management.
What are the top questions asked in Amagi Media Labs interview?

Some of the top questions asked at the Amagi Media Labs interview -

  1. Where in the world a senior manager should do configuration, write programs and...read more
  2. Round 2: Real Time Scenario to test your presentation skills and how you appro...read more
  3. second round : Automating API for retrieving the possible AWS service IP alloca...read more
How long is the Amagi Media Labs interview process?

The duration of Amagi Media Labs interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 25 interview experiences

Difficulty level

Easy 15%
Moderate 85%

Duration

Less than 2 weeks 83%
2-4 weeks 8%
6-8 weeks 8%
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 50 Interviews
Fingent Interview Questions
4.2
 • 24 Interviews
Backbase Interview Questions
3.7
 • 23 Interviews
3Pillar Global Interview Questions
3.2
 • 20 Interviews
Khoros Interview Questions
3.7
 • 20 Interviews
Bottomline Interview Questions
3.4
 • 19 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Fourkites Interview Questions
3.7
 • 18 Interviews
View all

Amagi Media Labs Reviews and Ratings

based on 145 reviews

3.4/5

Rating in categories

3.3

Skill development

2.9

Work-life balance

3.5

Salary

3.1

Job security

3.1

Company culture

2.7

Promotions

3.0

Work satisfaction

Explore 145 Reviews and Ratings
Project Manager - Customer Onboarding (Streaming/OTT)

Bangalore / Bengaluru

2-6 Yrs

Not Disclosed

Tech Lead (OTT/Broadcast/Streaming)

Bangalore / Bengaluru

6-11 Yrs

Not Disclosed

Project Engineer - Customer Onboarding (Streaming/OTT)

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
64 salaries
unlock blur

₹11.5 L/yr - ₹27 L/yr

Senior Software Engineer
56 salaries
unlock blur

₹10.8 L/yr - ₹42.5 L/yr

QA Engineer
30 salaries
unlock blur

₹5 L/yr - ₹15 L/yr

Product Support Engineer
23 salaries
unlock blur

₹4.5 L/yr - ₹11 L/yr

Product Manager
21 salaries
unlock blur

₹21 L/yr - ₹34.5 L/yr

Explore more salaries
Compare Amagi Media Labs with

Yodlee

3.8
Compare

Fingent

4.2
Compare

Bravura Solutions

3.9
Compare

CloudMoyo

4.1
Compare
write
Share an Interview