Upload Button Icon Add office photos

Filter interviews by

MediaTek India Technology Senior Systems Engineer Interview Questions and Answers

Updated 26 May 2024

MediaTek India Technology Senior Systems Engineer Interview Experiences

1 interview found

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

I was interviewed in Apr 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Delete a node in a single linked list
  • Ans. 

    To delete a node in a single linked list, update the previous node's next pointer to skip over the node to be deleted.

    • Traverse the linked list to find the node to be deleted

    • Update the previous node's next pointer to skip over the node to be deleted

    • Free the memory allocated to the node to be deleted

  • Answered by AI
  • Q2. Delete duplicate elements in a sorted singly linked list
  • Ans. 

    Use two pointers to iterate through the list and remove duplicates by updating next pointers

    • Initialize two pointers, current and next, to iterate through the list

    • Compare current and next node values, if equal, update next pointer to skip duplicate node

    • Repeat until end of list is reached

  • Answered by AI
  • Q3. What is volatile and extern keywords in C ? What are local and external linkages ? What are SW and HW interrupts ? What are the different scheduling algorithms ?
  • Ans. 

    Volatile and extern are keywords in C for memory management. Local and external linkages determine scope. SW and HW interrupts handle events. Different scheduling algorithms manage task priorities.

    • Volatile keyword is used to indicate that a variable may be changed unexpectedly, typically by hardware. Example: volatile int x;

    • Extern keyword is used to declare a variable that is defined in another file. Example: extern in...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Round 1 - Aptitude Test 

General questions on time and work ,ages, pipes and cisterns, average and some simple ones

Round 2 - Coding Test 

Asked about c language mcqs and also error checking, finding output for given program

Interview Preparation Tips

Interview preparation tips for other job seekers - learn until u get goal , get ur dream job and do hard work

I applied via Naukri.com and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Find if number i power of 2
  • Ans. 

    Check if a number is a power of 2.

    • A number is a power of 2 if it is greater than 0 and has only one bit set to 1.

    • Use bitwise operations to check if the number is a power of 2.

    • For example, 4 (100 in binary) is a power of 2, while 6 (110 in binary) is not.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare bitwise and double link list questions

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

4 questions, duration:-1:30 , platform:-hackerearth

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

I applied via AmbitionBox and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1- what is Malware outbreak and how will you handle this ? 2-what is kerberoasting attack ? 3-how will you handle log4j vulnerability? 4-what are the phases of insident response plan ?
  • Ans. 

    Answers to questions related to cybersecurity incidents and response plan.

    • Malware outbreak is a sudden increase in the number of malware infections. It can be handled by isolating infected systems, updating antivirus software, and educating users.

    • Kerberoasting attack is a technique used to extract Kerberos tickets from Active Directory. It can be prevented by using strong passwords and implementing two-factor authentic...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. 1- Is there any location constraints ? 2- Able to work in US timezone or any other timezones ? 3- Why are you looking for new job ?
Round 3 - One-on-one 

(1 Question)

  • Q1. 1- How are you valuable for this company ? 2- how will you handle critical or major incidents ?

Interview Preparation Tips

Interview preparation tips for other job seekers - In cyber security there is only one tips
"Enhance your skill ,learn new technologies and grow your career"
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Qualcomm Careers and was interviewed in Dec 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Managerial Introduction and alignment with the job role.
Round 2 - Technical 

(1 Question)

  • Q1. Technical Hardware Questions
Round 3 - Technical 

(1 Question)

  • Q1. Technical Software/Scripting Questions
Round 4 - HR 

(1 Question)

  • Q1. General HR discussions

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you fit well with the requirements and have your fundamental understanding pretty strong. They will chain questions and keep going, make sure you have the thinking stamina to keep on going for 2 hours continuously.

I applied via Naukri.com and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Find if number i power of 2
  • Ans. 

    Check if a number is a power of 2.

    • A number is a power of 2 if it is greater than 0 and has only one bit set to 1.

    • Use bitwise operations to check if the number is a power of 2.

    • For example, 4 (100 in binary) is a power of 2, while 6 (110 in binary) is not.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare bitwise and double link list questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Qualcomm Careers and was interviewed in Dec 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Managerial Introduction and alignment with the job role.
Round 2 - Technical 

(1 Question)

  • Q1. Technical Hardware Questions
Round 3 - Technical 

(1 Question)

  • Q1. Technical Software/Scripting Questions
Round 4 - HR 

(1 Question)

  • Q1. General HR discussions

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you fit well with the requirements and have your fundamental understanding pretty strong. They will chain questions and keep going, make sure you have the thinking stamina to keep on going for 2 hours continuously.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What will variance of sum of two iid random variables
  • Ans. 

    Variance of sum of two iid random variables is the sum of their individual variances.

    • Variance of sum of two iid random variables is the sum of their individual variances

    • If X and Y are iid random variables, Var(X+Y) = Var(X) + Var(Y)

    • For example, if X and Y are both dice rolls, Var(X+Y) = Var(X) + Var(Y) = 35/12

  • Answered by AI
  • Q2. Different type of fading channels in wireless system
  • Ans. 

    Different types of fading channels in wireless systems include Rayleigh fading, Rician fading, and Nakagami fading.

    • Rayleigh fading is when there is no line of sight between transmitter and receiver, resulting in random amplitude and phase variations.

    • Rician fading is a combination of a dominant line of sight signal and scattered signals, leading to a stronger signal with fading effects.

    • Nakagami fading models the wireles...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through deep study
Round 1 - Aptitude Test 

General questions on time and work ,ages, pipes and cisterns, average and some simple ones

Round 2 - Coding Test 

Asked about c language mcqs and also error checking, finding output for given program

Interview Preparation Tips

Interview preparation tips for other job seekers - learn until u get goal , get ur dream job and do hard work

MediaTek India Technology Interview FAQs

How many rounds are there in MediaTek India Technology Senior Systems Engineer interview?
MediaTek India Technology interview process usually has 1 rounds. The most common rounds in the MediaTek India Technology interview process are Technical.
What are the top questions asked in MediaTek India Technology Senior Systems Engineer interview?

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

  1. What is volatile and extern keywords in C ? What are local and external linkage...read more
  2. Delete duplicate elements in a sorted singly linked l...read more
  3. Delete a node in a single linked l...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Samsung Interview Questions
4.0
 • 552 Interviews
Qualcomm Interview Questions
3.8
 • 273 Interviews
Intel Interview Questions
4.2
 • 220 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
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.2
Compare

Samsung

4.0
Compare

Nvidia

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