Upload Button Icon Add office photos

Amagi Media Labs

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Amagi Media Labs Software Engineer Interview Questions and Answers

Updated 27 Mar 2024

Amagi Media Labs Software Engineer Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Question on Tree Traversals
  • Q2. Questions of Linked List

I applied via Campus Placement and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

General aptitude test with math and logic related questions. there were also coding questions which were given more weightage than the other questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Standard linked list questions like finding the middle of a linked list, checking if the linked list is a loop etc
  • Q2. Max heap related questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. This interview was mostly math related questions. for eg: prove if a number is irrational.

Interview Preparation Tips

Topics to prepare for Amagi Media Labs Software Engineer interview:
  • Data Structures
  • Maths
  • puzzles
Interview preparation tips for other job seekers - focus is on checking basic coding and problem solving skills. a separate round for testing mathematical ability was a surprise.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview Preparation Tips

Round: Test
Experience: A coding test (Students were asked to bring Laptops)
Tips: Be thorough with C/C++, networking, OS, Data structures and architecture
Duration: 90 minutes

Round: Interview
Experience: 3 rounds of interview, one hour each, all technical 
Interview Process:All the three rounds are oriented around programming. A lot of focus was given to Data structures, C/C++, OS and algorithmsThe code from previous test is shown and they expect you to fix any bugs if thereThe interviewers are quietly friendly and help if you get stuck at any pointIf you do have any related projects, anticipate some thorough questions on that
Tips: Though the interviewers are helpful, get your basics clear early on. Don't rely on them.Practice coding sessions, a lot of companies have them as a shortlisting criteria.

College Name: IIT Madras

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: PAPER DURATION: 3 hours
NO. OF QUESTIONS: 2 (20 marks each)
MAXIMUM MARKS: 20*2 = 40 marksQUESTION 1:
JSON Prettier:-Write a program which takes JSON as input and gives prettified JSONYou need to read JSON from STDIN. Input gives one line of uglified JSON.Output should be formatted JSON. Check the standard output link.Use 2 white spaces (not‘\t’) for one indentation.SAMPLE INPUT:{“group” : {list : [1,2,3]}, “list” : [“a”,”b”,”c”]}SAMPLE OUTPUT:{“group” : {List : [1,2,3]},“list” : [“a”,”b”,”c”]}EXPLANATION: Input will be uglifiedjson in one line and output will be prettified format of that. QUESTION 2:XML parse plus series computationEvaluate an expression given in XML format. Keys will be Expr- contains the entire expression. Elem – contains the digit, sum, Prod- contains two or more keys whose evaluation needs to be summed or multiplied respectively. Sub will contain 2 keys or more, where the second key onwards will have to be subtracted from the first one. Div- will contain 2 keys in which first key will need to be divided by second. SAMPLE INPUT:4673 SAMPLE OUTPUT:
20EXPLANATION:Input will be xml file through standard input. End of xml file marked by .
Duration: 180 minutes
Total Questions: 2

College Name: NA
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 - Technical 

(2 Questions)

  • Q1. Describe Life cycle in react
  • Ans. 

    React has three main phases in its lifecycle: mounting, updating, and unmounting.

    • Mounting: when a component is created and inserted into the DOM

    • Updating: when a component is updated due to changes in props or state

    • Unmounting: when a component is removed from the DOM

    • Lifecycle methods can be used to perform actions at each phase, such as componentDidMount() or componentWillUnmount()

    • React also has error handling methods,

  • Answered by AI
  • Q2. Explain strict mode in javascript and it's use
  • Ans. 

    Strict mode is a way to write secure and optimized JavaScript code.

    • Enables catching of silent errors

    • Disallows duplicate property names or parameters

    • Prevents use of undeclared variables

    • Makes `eval()` safer to use

    • Throws errors on invalid usage of `this` keyword

  • Answered by AI
Round 3 - Assignment 

CURD operations along with implementation of a mock UI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are doing good job. If possible try to send a rejection mail along with the reason if candidate is not selected.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be transparent and real. Don't bluff :)
Fingent has got a good number of people in the interview panel(my personal experience)
Even if you do not know the answer, the panel will explain it to you.

I applied via Campus Placement and was interviewed before Jun 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Core php, redis, solr

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain what projects you have worked on.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basics Oops concepts and SQL queries along with currently working projects stacks
Round 2 - Technical 

(1 Question)

  • Q1. More in-depth technical questions use of reflections etc
Round 3 - HR 

(1 Question)

  • Q1. Usual HR interviews company values etc

Interview Preparation Tips

Interview preparation tips for other job seekers - The key is not answers all questions correctly key is the approach you take to solve the problem focus on that.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Tell about Oops concepts
  • Ans. 

    OOPs concepts are fundamental principles in object-oriented programming, including inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex imple...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Will ask coding related
Round 4 - HR 

(1 Question)

  • Q1. What is Expected salary
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Hooks concept questions
Contribute & help others!
anonymous
You can choose to be anonymous

Amagi Media Labs Interview FAQs

How many rounds are there in Amagi Media Labs Software Engineer interview?
Amagi Media Labs interview process usually has 2 rounds. The most common rounds in the Amagi Media Labs interview process are One-on-one Round, Aptitude Test and Technical.
How to prepare for Amagi Media Labs Software Engineer 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 Front End, Agile, Algorithms, B2B and Backend.
What are the top questions asked in Amagi Media Labs Software Engineer interview?

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

  1. standard linked list questions like finding the middle of a linked list, checki...read more
  2. this interview was mostly math related questions. for eg: prove if a number is ...read more
  3. max heap related questio...read more

Recently Viewed

LIST OF COMPANIES

Oracle Financial Services Software

Overview

DESIGNATION

INTERVIEWS

Birlasoft

No Interviews

INTERVIEWS

Datamatics Global Services

No Interviews

INTERVIEWS

NTT Data

No Interviews

INTERVIEWS

Coforge

No Interviews

DESIGNATION

DESIGNATION

INTERVIEWS

Audi

No Interviews

INTERVIEWS

Pricol

No Interviews

Tell us how to improve this page.

Amagi Media Labs Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Amagi Media Labs Software Engineer Salary
based on 54 salaries
₹8 L/yr - ₹24.5 L/yr
99% more than the average Software Engineer Salary in India
View more details

Amagi Media Labs Software Engineer Reviews and Ratings

based on 9 reviews

3.5/5

Rating in categories

4.0

Skill development

2.5

Work-life balance

3.6

Salary

2.7

Job security

3.4

Company culture

2.6

Promotions

3.8

Work satisfaction

Explore 9 Reviews and Ratings
Software Engineer
54 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Support Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Amagi Media Labs with

Prime Focus

3.8
Compare

Zee Entertainment Enterprises

3.5
Compare

Sun TV Network

3.6
Compare

Tv18 Broadcast

4.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent