Upload Button Icon Add office photos

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 at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Multiple questions on various data structures like arrays , linked lists

Round 2 - 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

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. OOPS question to develop a fault-sensing algorithm in machines
  • Q2. Debug array question in bubble sort
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

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General aptitude questions

Round 2 - Coding Test 

Problem solving, solved 2 out of 3 questions

Round 3 - Group Discussion 

General topics were given in gd

Round 4 - Technical 

(2 Questions)

  • Q1. Programming concepts
  • Q2. Projects and coding round questions solved
Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Its basically a test comprising 32 mcq
12- logical reasoning
20- core C,DBMS, OS , Computer Networks

2 coding Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. He just Gave me to design a React Page and removed all the starting code and gave me blank folder and asked to code all by myself
  • Q2. He asked me SQL queries which was quite tough as its of nested queries
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Linkedlist questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Depth Os and C
  • Q2. Multi threading and semaphores
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is normalization
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization is used to eliminate data redundancy by breaking up tables into smaller, related tables.

    • It helps in reducing data anomalies such as insertion, update, and deletion anomalies.

    • Normalization is achieved through a series of stages called normal forms, with the most common being First Normal Form (1NF)...

  • Answered by AI
  • Q2. Code for armstrong alogrithm
  • Ans. 

    Armstrong algorithm is used to find Armstrong numbers in a given range.

    • Iterate through the numbers in the given range

    • Calculate the sum of cubes of each digit in the number

    • Check if the sum is equal to the original number

  • Answered by AI

Skills evaluated in this interview

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

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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

1st round is combination of aptitude and technical mcqs

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about ur projects
  • Ans. 

    I have worked on various projects including a web-based inventory management system and a mobile app for tracking fitness goals.

    • Developed a web-based inventory management system using React and Node.js

    • Created a mobile app for tracking fitness goals using Flutter

    • Collaborated with a team to implement new features and fix bugs in existing projects

  • Answered by AI
  • Q2. Tell me about two sum code in python
  • Ans. 

    Two sum code in Python finds two numbers in an array that add up to a specific target.

    • Use a dictionary to store the difference between the target and each element in the array.

    • Iterate through the array and check if the current element's complement is in the dictionary.

    • Return the indices of the two numbers that add up to the target.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Microchip Technology Software Developer interview:
  • DBMS
  • OOPS
  • Data Structures
  • Python

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.

MediaTek India Technology Senior Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Samsung Interview Questions
4.0
 • 554 Interviews
Qualcomm Interview Questions
3.8
 • 273 Interviews
Intel Interview Questions
4.2
 • 222 Interviews
Texas Instruments Interview Questions
4.1
 • 124 Interviews
Nvidia Interview Questions
3.8
 • 104 Interviews
Synopsys Interview Questions
3.9
 • 88 Interviews
Molex Interview Questions
3.9
 • 53 Interviews
View all
Senior Engineer
120 salaries
unlock blur

₹11 L/yr - ₹36 L/yr

Staff Engineer
79 salaries
unlock blur

₹16 L/yr - ₹44 L/yr

Software Engineer
50 salaries
unlock blur

₹7.2 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.2
Compare

Samsung

4.0
Compare

Nvidia

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