Upload Button Icon Add office photos

MediaTek India Technology

Compare button icon Compare button icon Compare

Filter interviews by

MediaTek India Technology QA Engineer Interview Questions and Answers

Updated 22 Mar 2024

MediaTek India Technology QA Engineer Interview Experiences

2 interviews found

QA Engineer Interview Questions & Answers

user image Ashish Singh

posted on 22 Mar 2024

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

I appeared for an interview in Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Basic testing questions, SDLC , STLC , Functional Testing, Unit Testing, integration testing, non functional testing, and all thing's mentioned on your Resume
Round 2 - Technical 

(1 Question)

  • Q1. Practical questions , whatsup testing , game testing, say about possible test scenario and test cases

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience

QA Engineer Interview Questions & Answers

user image aman sharma

posted on 30 Apr 2021

I applied via LinkedIn and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Questions on Test case preparation(stapler, whatsapp)
  • Q2. Puzzles
  • Q3. Speak 2 mins on square shaped egg
  • Ans. 

    Square shaped egg is a hypothetical concept that defies the laws of nature.

    • Square shaped egg is not possible in reality due to the shape of the hen's reproductive system.

    • It is a popular topic in science fiction and fantasy literature.

    • In some cultures, square shaped eggs are considered a symbol of good luck or prosperity.

    • The concept of square shaped egg can be used as a metaphor for something that is impossible or unrea...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Revise basics of testing and take care of the communication skills

QA Engineer Interview Questions Asked at Other Companies

Q1. Suppose your manager gave you a task to complete in one week, but ... read more
Q2. There are 80 pairs of socks in a dark room, 40 black and 40 white ... read more
Q3. 100 apples are eaten in 5 consecutive days, with each day having ... read more
Q4. how to access amazon page directly directly with out using driver ... read more
Q5. If a pen's weight equals 2 kg plus half of its own weight, what i ... read more

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about MediaTek India Technology?
Ask anonymously on communities.

Interview questions from similar companies

QA Engineer Interview Questions & Answers

Molex user image Ananthanag KR

posted on 5 Jun 2023

Interview experience
5
Excellent
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 tips
Round 2 - Aptitude Test 

Technical question and ans

Round 3 - One-on-one 

(4 Questions)

  • Q1. Work related discussion
  • Q2. LC of Verner and micro meter
  • Q3. Explain process of QA
  • Ans. 

    QA process involves planning, executing, and evaluating software to ensure quality standards are met.

    • Create test plans and test cases based on requirements

    • Execute tests to identify defects and issues

    • Report and track defects for resolution

    • Perform regression testing to ensure fixes do not introduce new issues

    • Conduct acceptance testing with stakeholders

  • Answered by AI
  • Q4. QA final finspection
Round 4 - HR 

(1 Question)

  • Q1. Salary dicussion

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Sell me the pen
  • Ans. 

    This pen is a sleek and stylish writing instrument that is perfect for everyday use.

    • The pen features a smooth ballpoint tip for effortless writing

    • Its ergonomic design ensures comfortable grip for long writing sessions

    • The pen comes in a variety of colors to suit your personal style

  • Answered by AI
  • Q2. Watch the movie
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About your project
  • Q2. Which technology you used in your project

QA Engineer Interview Questions & Answers

Qualcomm user image Aisshwarya Tagginmni

posted on 26 May 2025

Interview experience
3
Average
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Methods of cycle
  • Q2. Testing questiona

I appeared for an interview before May 2021.

Round 1 - Coding Test 

Round duration - 120 Minutes
Round difficulty - Medium

Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Insertion Sort in a Linked List

    Given a singly linked list with 'N' nodes containing integer values, your task is to sort the list using insertion sort and output the sorted list.

    Insertion Sort is an al...

  • Ans. 

    Implement insertion sort algorithm on a singly linked list with integer values.

    • Traverse the linked list and for each node, find its correct position in the sorted list.

    • Remove the node from the original list and insert it at the correct position in the sorted list.

    • Repeat this process until all nodes are sorted.

    • Ensure the implementation is in-place, without using extra space.

    • Handle edge cases like empty list or single no...

  • Answered by AI
  • Q2. 

    Implement Stack with Linked List

    Your task is to implement a Stack data structure using a Singly Linked List.

    Explanation:

    Create a class named Stack which supports the following operations, each in O(1...

  • Ans. 

    Implement a Stack data structure using a Singly Linked List with operations in O(1) time.

    • Create a class named Stack with getSize, isEmpty, push, pop, and getTop methods.

    • Use a Singly Linked List to store the elements of the stack.

    • Ensure each operation runs in O(1) time complexity.

    • Handle cases where the stack is empty appropriately.

    • Implement the logic for each query type as specified in the input and output sections.

  • Answered by AI
  • Q3. 

    Prime Numbers within a Range

    Given an integer N, determine and print all the prime numbers between 2 and N, inclusive.

    Input:

    Integer N

    Output:

    Prime numbers printed on separate lines

    Example:

    Input...
  • Ans. 

    Generate and print all prime numbers between 2 and N, inclusive.

    • Iterate from 2 to N and check if each number is prime

    • Use a helper function to determine if a number is prime

    • Print each prime number on a new line

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

This round was based on oops concepts and their applications and about STLs.

  • Q1. 

    Rectangular Numbers Pattern

    Given a number N, generate a pattern where the outer rectangle is filled with the number N, and the inner rectangles contain decreasing numbers down to 1.

    Input:

    The input be...
  • Ans. 

    Generate a rectangular pattern with outer rectangle filled with N and inner rectangles containing decreasing numbers.

    • Create a 2-D array with dimensions based on input N

    • Fill the outer rectangle with N and inner rectangles with decreasing numbers down to 1

    • Adjust the values in the inner rectangles based on the layer number

    • Return the generated pattern as a 2-D list/array

  • Answered by AI
Round 4 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This around was basically to judge my communication and behavioral skills.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in BangaloreEligibility criteria7 CGPAQualcomm interview preparation:Topics to prepare for the interview - Standard template libraries, Data Structures, Algorithm, Pointers, Dynamic ProgrammingTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Basics should be very clear related to DSA.
Tip 2 : Good knowledge of OS will be plus for Qualcomm
Tip 3 : One should revise the college project thoroughly before interview.

Application resume tips for other job seekers

Tip 1 : Be brief while writing resume.
Tip 2 : Mention atleast 2 projects.

Final outcome of the interviewSelected

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Naukri.com and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. C Programming
  • Q2. Data structures
  • Q3. Os concepts
  • Q4. Communication protocols

Interview Preparation Tips

Interview preparation tips for other job seekers - 1 written test, 2 technical round and next HR ROUND

I appeared for an interview in Aug 2017.

Interview Preparation Tips

Round: Test
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical Interview
Experience: Questions about DS , CN and basic resume

Round: Technical Interview
Experience: Questions about RT OS and memory mapping. And other operating system related questions.
Projects done so far.

I appeared for an interview in Aug 2017.

Interview Questionnaire 

8 Questions

  • Q1. Basics of C
  • Q2. Puzzles on data structures
  • Q3. Asked on project
  • Q4. C basics
  • Q5. 3 basic and simple codes
  • Q6. Family background
  • Q7. How was technical interviews
  • Q8. Why should we not hire you
  • Ans. 

    I lack experience in a specific technology required for the role.

    • I may not have experience with a specific programming language or framework mentioned in the job description.

    • I may not have worked on projects similar to what your company is working on.

    • I may not have experience with certain tools or technologies that are crucial for the role.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It was just mcq questions but had negative marking
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical Interview
Experience: It was cool and interactive round and was fun

Round: Technical Interview
Experience: It was interesting but I fumbled a little

Round: HR Interview
Experience: It was ok

College Name: Cummins College Of Engineering For Women (CCOEW)

MediaTek India Technology Interview FAQs

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

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

  1. Practical questions , whatsup testing , game testing, say about possible test s...read more
  2. Questions on Test case preparation(stapler, whatsa...read more
  3. Basic testing questions, SDLC , STLC , Functional Testing, Unit Testing, integr...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/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
 • 272 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

MediaTek India Technology QA Engineer Reviews and Ratings

based on 3 reviews

5.0/5

Rating in categories

2.7

Skill development

4.7

Work-life balance

2.9

Salary

1.0

Job security

3.8

Company culture

4.1

Promotions

2.7

Work satisfaction

Explore 3 Reviews and Ratings
Senior Engineer
126 salaries
unlock blur

₹15.7 L/yr - ₹27 L/yr

Staff Engineer
91 salaries
unlock blur

₹28.3 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