Upload Button Icon Add office photos

Filter interviews by

MediaTek India Technology Senior Software Engineer Interview Questions and Answers

Updated 30 Nov 2023

MediaTek India Technology Senior Software Engineer Interview Experiences

3 interviews found

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

I applied via Naukri.com and was interviewed before Nov 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 - Coding Test 

I interviewed with Mediatek having just 1 year of experience. It was for outsourcing position.

They asked me concepts from C language, writing code for data structures (LinkedIn list), and a question on string which I can't remember. This was pre COVID days.

Round 3 - Technical 

(1 Question)

  • Q1. Write code to insert a node to the middle of linked list
  • Ans. 

    Insert a node to the middle of a linked list

    • Find the middle node using slow and fast pointers

    • Create a new node with the data to be inserted

    • Adjust the pointers to insert the new node in the middle

  • Answered by AI

Interview Preparation Tips

Topics to prepare for MediaTek India Technology Senior Software Engineer interview:
  • C
  • Operating Systems
  • Multithreading
  • TCP
  • IPV4
  • IPV6
  • Data Structures
Interview preparation tips for other job seekers - Study concepts of C language thoroughly. All questions on pointers, double pointers, bit manipulation and memory management.

Study questions on data structures like Linked list, stacks, queues, arrays, and strings. Practice writing code in C.

Study operating system and Unix concepts like processes, threads, deadlock, mutex, semaphores, IPC mechanisms etc. Practice problems on concurrent programming.

Study networking concepts like OSI model, TCP, UDP, IP (v4 and v6) and socket programming. Practice socket programming in C.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 5G Call Flow,ENDC Procedure ,RRC layer,Mac layer,Python scripting

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics concept

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nt ... read more
asked in Capgemini
Q2. Pascal's TriangleYou are given an integer N. Your task is to retu ... read more
Q3. K Largest Elements You are given with an integer k and an array o ... read more
asked in GlobalLogic
Q4. System Design QuestionCreate a simple shopping application. They ... read more
asked in Info Edge
Q5. Buy and Sell StockYou are Harshad Mehta’s friend. He told you the ... read more

I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. RRC related questions, CSFB,SRVCC,SIB parameters
  • Q2. LTE configurations, Handovers, and use case scenarios. MAC HARQ processing
  • Q3. Basic C questions, pointers,strings, bit manipulation , linked list

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on protocol stacks and C basic concepts

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Invert bits of a number
  • Ans. 

    Invert the bits of a given number

    • Use bitwise XOR operator (^) with 1 to flip each bit

    • Repeat the process for all bits in the number

    • Return the inverted number

  • Answered by AI
  • Q2. How do you support backward compatibility whiel designing a system
  • Ans. 

    Backward compatibility can be supported by using versioning, deprecation strategies, and maintaining clear communication with users.

    • Use versioning to clearly distinguish between different versions of the system

    • Implement deprecation strategies to phase out old features gradually

    • Maintain clear communication with users about upcoming changes and provide migration paths

    • Consider using compatibility layers or adapters to bri...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Nov 2023. There were 6 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 - Coding Test 

Duration: 1Hour 30 Minutes, 2 Coding Questions of Total 175 Marks. 1st Question has 75 marks and 2nd Question has 100 marks.

Round 3 - Technical 

(2 Questions)

  • Q1. 1. Find the smallestMissingNumber in given array using Bitwise OR operation alone 2. Based on Array data Manipulation.
  • Ans. 

    Using Bitwise OR operation to find the smallest missing number in an array.

    • Iterate through the array and perform Bitwise OR operation with each element to set corresponding bit in a bitmask

    • Iterate through the bitmask to find the first unset bit, which represents the smallest missing number

    • Example: Array [0, 1, 3, 4, 6] would have a bitmask of 10101, smallest missing number is 2

  • Answered by AI
  • Q2. Q2: Customized Data Extraction From Given Dynamic Array & Perform Some Math Operations On the Extracted Data
Round 4 - Technical 

(1 Question)

  • Q1. Write a Pseudo code for given scenario?
  • Ans. 

    Pseudo code for a scenario

    • Define variables and data structures needed

    • Write the main logic using conditional statements and loops

    • Handle edge cases and error conditions

    • Test the pseudo code with sample inputs

  • Answered by AI
Round 5 - Technical 

(1 Question)

  • Q1. System Design & Design Pattern based questions
Round 6 - HR 

(1 Question)

  • Q1. Not Applicable (Yet to be scheduled)

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Major questions were around problem solving, strings

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

I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Selenium xpath and dynamic loading of elements
  • Ans. 

    Selenium xpath is used to locate elements on a web page, especially useful for dynamic loading scenarios.

    • Use xpath to locate elements based on their attributes or position on the page

    • For dynamic loading, use explicit waits to ensure elements are present before interacting with them

    • Consider using relative xpath expressions to make your tests more robust and maintainable

  • Answered by AI
  • Q2. Java programs on strings
  • Q3. Test Ng architecture explain
  • Ans. 

    TestNG is a testing framework inspired by JUnit and NUnit, with more advanced features for test automation.

    • TestNG uses annotations to define test methods and test configurations.

    • It supports parameterized tests, test dependencies, and test groups.

    • TestNG allows parallel execution of tests, making it faster than other testing frameworks.

    • It provides detailed test reports and supports data-driven testing.

    • TestNG can be integ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and go for interview

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic questions around testing.
Round 2 - Aptitude Test 

Here they asked lots of logical reasoning questions and checked on how you approached different situations

Round 3 - HR 

(1 Question)

  • Q1. Explained package and other details
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Some technical question on advanced java
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question design swiggy app on microservice architecture
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

1 easy, 1 medium and 1 hard LC

Round 2 - Technical 

(1 Question)

  • Q1. 1. How will access files in a different server? 2. There are several files all containing similar key value pairs. The values differ in all files. How will you identify all the values that are same and ot...
  • Ans. 

    To access files in a different server, use protocols like FTP or SSH. To identify similar key value pairs in multiple files, compare values using a script or tool.

    • Use FTP or SSH protocols to access files in a different server

    • Write a script or use a tool to compare key value pairs in multiple files

    • Identify values that are the same and different across files

    • Example: Use Python script to read files and compare key value p

  • Answered by AI

MediaTek India Technology Interview FAQs

How many rounds are there in MediaTek India Technology Senior Software Engineer interview?
MediaTek India Technology interview process usually has 3 rounds. The most common rounds in the MediaTek India Technology interview process are Resume Shortlist, Coding Test and Technical.
How to prepare for MediaTek India Technology Senior 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 MediaTek India Technology. The most common topics and skills that interviewers at MediaTek India Technology expect are Android, Debugging, Linux Kernel Programming, Open Source and System Design.
What are the top questions asked in MediaTek India Technology Senior Software Engineer interview?

Some of the top questions asked at the MediaTek India Technology Senior Software Engineer interview -

  1. Write code to insert a node to the middle of linked l...read more
  2. basic C questions, pointers,strings, bit manipulation , linked l...read more
  3. 5G Call Flow,ENDC Procedure ,RRC layer,Mac layer,Python scripti...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 MediaTek India Technology interviews
Job Portal
Recruitment Consultant
67%
33%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
MediaTek India Technology Senior Software Engineer Salary
based on 48 salaries
₹9.4 L/yr - ₹28 L/yr
36% more than the average Senior Software Engineer Salary in India
View more details

MediaTek India Technology Senior Software Engineer Reviews and Ratings

based on 6 reviews

4.0/5

Rating in categories

2.7

Skill development

3.7

Work-Life balance

2.7

Salary & Benefits

4.5

Job Security

3.3

Company culture

3.3

Promotions/Appraisal

2.7

Work Satisfaction

Explore 6 Reviews and Ratings
Senior Engineer
121 salaries
unlock blur

₹11 L/yr - ₹31 L/yr

Staff Engineer
79 salaries
unlock blur

₹16 L/yr - ₹44 L/yr

Software Engineer
50 salaries
unlock blur

₹7 L/yr - ₹22 L/yr

Senior Software Engineer
48 salaries
unlock blur

₹9.4 L/yr - ₹28 L/yr

Technical Manager
38 salaries
unlock blur

₹21 L/yr - ₹61 L/yr

Explore more salaries
Compare MediaTek India Technology with

Qualcomm

3.8
Compare

Intel

4.3
Compare

Samsung

4.0
Compare

Nvidia

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview