Upload Button Icon Add office photos

MediaTek India Technology

Compare button icon Compare button icon Compare

Filter interviews by

MediaTek India Technology Senior Developer Interview Questions and Answers

Updated 15 Oct 2023

MediaTek India Technology Senior Developer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed before Oct 2022. There were 3 interview rounds.

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 tips
Round 2 - Coding Test 

Multiple questions on various data structures like arrays , linked lists

Round 3 - Technical 

(4 Questions)

  • Q1. Questions on pointers and bit manipulation
  • Q2. Derefer a null pointer
  • Ans. 

    Dereferencing a null pointer means trying to access the memory location pointed to by a null pointer.

    • Dereferencing a null pointer can lead to a segmentation fault or access violation.

    • Example: int *ptr = NULL; int value = *ptr; // This will result in a segmentation fault.

  • Answered by AI
  • Q3. Pointer arithmetic
  • Q4. Double pointers

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about MediaTek India Technology?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Sep 2016.

Interview Preparation Tips

Round: Test
Experience: Questions aren't tough but they take more time to read itself.
Tips: First try to attempt the questions which are seemingly small. Reading bigger questions first and wasting more time on that isnt a good idea at all.
Duration: 30 minutes
Total Questions: 30

Skills: Technical Skill, Analytical Skills
College Name: IIT Kharagpur

Senior Developer Interview Questions Asked at Other Companies

Q1. What is your current CTC and what is your expected CTC?
asked in GlobalLogic
Q2. How do you delete duplicate rows based on a key in a table?
asked in TCS
Q3. What were the data retrieval steps in Informatica while performin ... read more
asked in HCLTech
Q4. Regarding exception handling, if a parent catch block is written ... read more
asked in 7 Eleven
Q5. Design a system where two transactions must happen sequentially. ... read more

I applied via Campus Placement

Interview Questionnaire 

4 Questions

  • Q1. What is a program, task and threads
  • Ans. 

    A program is a set of instructions that tells a computer what to do. A task is a unit of work performed by a program. A thread is a sequence of instructions within a task.

    • A program is a collection of instructions that are executed by a computer to perform a specific task.

    • A task is a unit of work that is performed by a program. It can be a specific action or a set of actions.

    • A thread is a sequence of instructions within...

  • Answered by AI
  • Q2. Delete a node in a linked list
  • Ans. 

    To delete a node in a linked list, we need to adjust the pointers of the previous and next nodes.

    • Find the node to be deleted by traversing the linked list

    • Adjust the pointers of the previous and next nodes to skip the node to be deleted

    • Free the memory occupied by the node to be deleted

  • Answered by AI
  • Q3. What is a function pointer and volatile type in c
  • Ans. 

    A function pointer is a variable that stores the address of a function. Volatile type is used to declare variables that can be modified by external factors.

    • Function pointers are used to pass functions as arguments to other functions.

    • Volatile type is used when a variable's value can be changed unexpectedly by external factors.

    • Function pointers can be used to implement callbacks or event handling mechanisms.

    • Volatile type...

  • Answered by AI
  • Q4. Summarise your resume
  • Ans. 

    Experienced software developer with expertise in Java, Python, and SQL

    • Proficient in Java, Python, and SQL programming languages

    • Developed web applications using Java Spring framework

    • Experience with database management and optimization using SQL

    • Worked on various software projects in a team environment

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Paper was challenging and It was well set.

Duration: 90 minutes
Total Questions: 60

Round: Technical Interview
Experience: It was a very good experience overall. Interviewer helped to ease the tension.
Tips: Waiting time can be reduced.

General Tips: Prepare for precedence of operators in C.
Try to be fast in solving the problems.
Skills: Knowledge Of Your Resume Points, Pointers In C, Operating System Basics
Duration: 2
College Name: IIT Madras
Motivation: Qualcomm is a

Skills evaluated in this interview

Interview Questionnaire 

5 Questions

  • Q1. In C programming they asked about storage classes, Volatile , Whole compilation process steps by steps, Dangling pointer , Memory leak, Memory corruption
  • Q2. In data structure they asked question on String , Linked List and array
  • Q3. Data structure question section is easy don't go for complex algorithms just study basic algorithms. like reverse the linked list in group on given size
  • Q4. They also asked question on bit manipulation. Like Check that given number binary representation is palindrome or not?
  • Q5. Swap even and odd bits in given number
  • Ans. 

    Swap even and odd bits in a given number

    • Create a mask for even bits and odd bits

    • Shift even bits to right and odd bits to left

    • Combine even and odd bits using bitwise OR operator

  • Answered by AI

Interview Preparation Tips

College Name: NA

Skills evaluated in this interview

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

(5 Questions)

  • Q1. What is oops concept example with each one
  • Ans. 

    Object-oriented programming concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class). Example: class Car with properties like make, model, and methods like start(), stop().

    • Inheritance: creating new classes based on existing classes, inheriting their attributes and methods. Example: class SUV inheriting from cl...

  • Answered by AI
  • Q2. What is data structures and types with examples of all types
  • Ans. 

    Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Types of data structures include arrays, linked lists, stacks, queues, trees, graphs, and hash tables.

    • Arrays are a collection of elements stored in contiguous memory locations, accessed using an index.

    • Linked lists are a series of nodes where each node contains data and a reference to the next node.

    • Stack...

  • Answered by AI
  • Q3. What is class and objects with example and code
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming. Objects are instances of classes.

    • A class defines the properties and behaviors of objects. For example, a 'Car' class may have properties like 'color' and 'model', and behaviors like 'drive' and 'stop'.

    • An object is an instance of a class. For example, 'myCar' can be an object of the 'Car' class with specific values for 'color' and 'model'.

    • Code e...

  • Answered by AI
  • Q4. What is virutal function and staic functions
  • Ans. 

    Virtual functions are functions in a base class that are overridden in derived classes, while static functions belong to the class itself rather than instances.

    • Virtual functions allow for dynamic binding and polymorphism in object-oriented programming.

    • Static functions are associated with the class itself and can be called without creating an instance of the class.

    • Example: virtual void display() = 0; // pure virtual fun...

  • Answered by AI
  • Q5. What is project u did in present company
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used AngularJS for front-end development

    • Implemented RESTful APIs for communication between front-end and back-end

    • Utilized MySQL database for storing project data

  • Answered by AI
Round 2 - Coding Test 

Write a function over loading and friend class with example?

Interview Preparation Tips

Interview preparation tips for other job seekers - nice

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. I can not disclose the questions but definitely it was a level up than I expected

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a deep knowledge about your field of experience, narrow knowledge is not going to help you here as there are more numbers of interviews and that will definitely going to beat you with its uncertainty of the questions so better prepare throughly

Interview Questionnaire 

14 Questions

  • Q1. 1. Why do you want to change your current job ?
  • Q2. 2. What do you know about quality tools ?
  • Ans. 

    Quality tools are techniques used to ensure quality in a product or service.

    • Quality control charts

    • Pareto charts

    • Fishbone diagrams

    • Histograms

    • Control charts

    • Scatter diagrams

    • Statistical process control

  • Answered by AI
  • Q3. What is your biggest professional achievement so far ?
  • Q4. Tell my that why a histogram is used....and what is frequency and interval in histogram?
  • Ans. 

    A histogram is used to represent the distribution of numerical data. Frequency is the number of occurrences and interval is the range of values.

    • Histograms are useful for visualizing data and identifying patterns.

    • Frequency refers to the number of times a value appears in the data set.

    • Interval refers to the range of values that are grouped together in the histogram.

    • Histograms are commonly used in statistics, finance, and...

  • Answered by AI
  • Q5. If we do rework of any produced part, which factors get affected by this of OEE?
  • Ans. 

    Rework of produced parts affects the factors of Overall Equipment Efficiency (OEE).

    • Rework increases the time required to produce a part, reducing the availability factor of OEE.

    • Rework increases the number of defects, reducing the quality factor of OEE.

    • Rework increases the amount of scrap or waste, reducing the performance factor of OEE.

    • Rework can lead to increased downtime for equipment setup and adjustments, reducing ...

  • Answered by AI
  • Q6. What is Autonomous maintenance ?
  • Ans. 

    Autonomous maintenance is a maintenance approach where operators take responsibility for routine maintenance tasks.

    • Operators are trained to perform routine maintenance tasks

    • Operators conduct inspections and minor repairs

    • Autonomous maintenance reduces downtime and improves equipment reliability

    • It also frees up maintenance staff to focus on more complex tasks

  • Answered by AI
  • Q7. Why do companies are going for having TPM ?
  • Ans. 

    Companies are going for TPM to improve productivity, reduce downtime, and increase efficiency.

    • TPM helps in identifying and eliminating equipment failures before they occur

    • It ensures that equipment is maintained properly and in a timely manner

    • TPM also helps in reducing the need for emergency repairs and downtime

    • It improves overall equipment effectiveness and reduces costs

    • Companies that have implemented TPM have seen sig...

  • Answered by AI
  • Q8. Why do you want to relocate ?
  • Q9. What is SPC, and what is Cp and Cpk ?
  • Ans. 

    SPC stands for Statistical Process Control. Cp and Cpk are statistical tools used to measure process capability.

    • SPC is a method of monitoring and controlling a process to ensure it is operating within acceptable limits.

    • Cp is a measure of how well the process is centered between the upper and lower specification limits.

    • Cpk is a measure of how well the process is capable of producing within the specification limits.

    • Cp an...

  • Answered by AI
  • Q10. How to calculate OEE?
  • Ans. 

    OEE can be calculated by multiplying Availability, Performance, and Quality percentages.

    • Calculate Availability by dividing Operating Time by Planned Production Time.

    • Calculate Performance by dividing Actual Production by Maximum Production.

    • Calculate Quality by dividing Good Units by Total Units Produced.

    • Multiply Availability, Performance, and Quality percentages to get OEE.

  • Answered by AI
  • Q11. What ardvthe major losses that affects OEE?
  • Ans. 

    Major losses affecting OEE include availability, performance, and quality losses.

    • Availability losses occur when equipment is not running due to breakdowns, changeovers, or lack of materials.

    • Performance losses occur when equipment is running below its maximum speed or efficiency.

    • Quality losses occur when defective products are produced and need to be scrapped or reworked.

    • Other losses may include startup and shutdown los...

  • Answered by AI
  • Q12. What is IATF stands for and what is its current revised name ?
  • Ans. 

    IATF stands for International Automotive Task Force and its current revised name is IATF 16949:2016.

    • IATF stands for International Automotive Task Force

    • Its current revised name is IATF 16949:2016

  • Answered by AI
  • Q13. What is capacitor and where it is being used ?
  • Ans. 

    A capacitor is an electronic component that stores electrical energy in an electric field. It is used in various electronic circuits.

    • Capacitors are used to filter out noise and stabilize voltage in power supplies.

    • They are used in timing circuits, oscillators, and filters.

    • Capacitors are also used in audio equipment to filter out unwanted frequencies.

    • They can be found in electronic devices such as TVs, computers, and sma...

  • Answered by AI
  • Q14. Why do you prefer working in production dept.?
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Kaizen,cycletime,jh,throughput time,owe etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Must have eye contact with the interviewer which answering there questions.
And be confident.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. 5-10 Questions on Javascript concepts
  • Q2. 2-3 medium level array coding questions
  • Q3. 2 logical questions
Round 2 - HR 

(1 Question)

  • Q1. Friendly Communication
Round 3 - Technical 

(2 Questions)

  • Q1. One Leetcode medium level coding question
  • Q2. Questions from your skills and the projects you have done so far

Interview Preparation Tips

Topics to prepare for TDK India Private Limited Software Developer interview:
  • DSA
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Count freq of elements in array
  • Ans. 

    Count frequency of elements in array of strings

    • Iterate through the array and use a hashmap to store the frequency of each element

    • Use a for loop to go through each element and update the count in the hashmap

    • Return the hashmap with element frequencies

  • Answered by AI

Skills evaluated in this interview

MediaTek India Technology Interview FAQs

How many rounds are there in MediaTek India Technology Senior Developer 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.
What are the top questions asked in MediaTek India Technology Senior Developer interview?

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

  1. derefer a null poin...read more
  2. questions on pointers and bit manipulat...read more
  3. double point...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 271 Interviews
Texas Instruments Interview Questions
3.9
 • 126 Interviews
Synopsys Interview Questions
3.9
 • 95 Interviews
Molex Interview Questions
3.9
 • 58 Interviews
Lam Research Interview Questions
3.7
 • 50 Interviews
View all
Senior Engineer
120 salaries
unlock blur

₹15.2 L/yr - ₹27 L/yr

Staff Engineer
90 salaries
unlock blur

₹28 L/yr - ₹48 L/yr

Software Engineer
59 salaries
unlock blur

₹9 L/yr - ₹22 L/yr

Senior Software Engineer
56 salaries
unlock blur

₹15.8 L/yr - ₹28 L/yr

Technical Manager
40 salaries
unlock blur

₹24 L/yr - ₹68.8 L/yr

Explore more salaries
Compare MediaTek India Technology with

Qualcomm

3.8
Compare

Molex

3.9
Compare

TDK India Private Limited

3.8
Compare

Applied Materials

3.8
Compare
write
Share an Interview