Upload Button Icon Add office photos

Filter interviews by

Clear (1)

MediaTek India Technology Intern Interview Questions and Answers

Updated 7 Jul 2022

MediaTek India Technology Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 7 Jul 2022

I applied via Campus Placement and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Had Aptitude and VLSI-Based Questions

Round 2 - Technical 

(2 Questions)

  • Q1. You have a 3 ltr jug and 5 ltr jug measure 4lt water using this.
  • Ans. 

    Use the 3 ltr jug to fill the 5 ltr jug twice, leaving 1 ltr in the 3 ltr jug. Then fill the 3 ltr jug and pour it into the 5 ltr jug.

    • Fill the 5 ltr jug twice with the 3 ltr jug

    • 1 ltr will be left in the 3 ltr jug

    • Fill the 3 ltr jug and pour it into the 5 ltr jug

    • 4 ltr of water will be in the 5 ltr jug

  • Answered by AI
  • Q2. The same question, but now do it starting with the 3ltr jug.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and take your time answering

Interview questions from similar companies

I was interviewed in Sep 2017.

Interview Questionnaire 

2 Questions

  • Q1. Find the sum of two numbers without using any mathematical operarors.
  • Ans. 

    Use bitwise operations to find the sum of two numbers without using mathematical operators.

    • Use bitwise XOR to find the sum of two numbers without carrying.

    • Use bitwise AND and left shift to find the carry.

    • Repeat the process until there is no carry left.

  • Answered by AI
  • Q2. Delete a node from linked list when we are given a reference to the node. But the head pointer is not given.
  • Ans. 

    To delete a node from a linked list when only given a reference to the node, we can copy the data of the next node to the given node and delete the next node.

    • Copy the data of the next node to the given node

    • Update the next pointer of the given node to skip the next node

    • Delete the next node

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Tips: Strong understanding and thorough knowledge of C programming.

College Name: IIT Madras

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Intel user image Niranjhana Narayanan

posted on 4 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why UDP and not TCP in project
  • Ans. 

    UDP is preferred over TCP in this project due to its low latency and lightweight nature.

    • UDP is a connectionless protocol, which means it does not establish a direct connection between the sender and receiver.

    • UDP is faster than TCP as it does not have the overhead of establishing and maintaining a connection.

    • UDP is suitable for applications where real-time data transmission is crucial, such as video streaming or online ...

  • Answered by AI
  • Q2. How would you clear the 7th bit in a 32 bit register
  • Ans. 

    To clear the 7th bit in a 32-bit register, perform a bitwise AND operation with a mask that has all bits set to 1 except the 7th bit.

    • Create a mask with the 7th bit set to 0 and all other bits set to 1

    • Perform a bitwise AND operation between the register and the mask

    • Store the result back in the register

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions were based on C concepts, given piece of code, find error, output, etc then data structures, bit manipulation, a few aptitude questions were also there (around 5-7).
Tips: Practice aptitude, C, data structures (geeksforgeeks.org is a good source).
Duration: 1 hour
Total Questions: 30

Round: Technical + HR Interview
Experience: I was asked to explain project in detail, I had done projects on embedded, so was asked about that, details like what fields did you use in that structure, why this implementation and not some related other. Memory management, network communications, operating systems. Then questions on C concepts like memory allocation, function pointers, then data structures like linked lists, then bit manipulation in registers. Questions from electrical coursework. Then later, why higher studies, would you still go for higher studies if you had a good job at a company, why etc.
Tips: Be thorough with C (know your Kernighan & Ritchie) and be prepared to go into details about your projects.

Skills: C, Data Structures, Coursework Understanding, Project And Internship
College Name: IIT Madras

Skills evaluated in this interview

I applied via Campus Placement

Interview Questionnaire 

16 Questions

  • Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be us...
  • Q2. Given an array A[n], write a C program to find P and Q (P>Q) such that A[P] - A[Q] is maximum
  • Q3. A pyramid is given many blank spaces. Condition is that number in a cell equals sum of numbers in bottom two cells. Fill the blanks
  • Ans. 

    The question asks to fill the blanks in a pyramid where each number is the sum of the numbers in the bottom two cells.

    • Start from the bottom row and work your way up, calculating the sum of the numbers in the bottom two cells for each blank space.

    • Use a loop to iterate through each row and column of the pyramid.

    • Store the calculated sum in the corresponding blank space.

    • Repeat the process until all the blanks are filled.

  • Answered by AI
  • Q4. What are the basic functions of OS?
  • Q5. What is scheduling? List different types of scheduling
  • Q6. What is a deadlock? How to know if a deadlock is present?
  • Q7. What is Moore's Law?
  • Ans. 

    Moore's Law is the observation that the number of transistors in a dense integrated circuit doubles about every two years.

    • Named after Intel co-founder Gordon Moore

    • First stated in 1965

    • Has been a driving force behind technological advancements

    • Predicts exponential growth in computing power

    • Has been challenged in recent years due to physical limitations

  • Answered by AI
  • Q8. Differentiate between a process and a thread
  • Ans. 

    A process is an instance of a program while a thread is a subset of a process.

    • A process has its own memory space while threads share memory space

    • Processes are heavyweight while threads are lightweight

    • Processes communicate through inter-process communication while threads communicate through shared memory

    • Examples of processes include web browsers, text editors, etc. while examples of threads include GUI updates, backgro

  • Answered by AI
  • Q9. What are the advantages of having multi-core processor?
  • Ans. 

    Multi-core processors provide faster and more efficient computing.

    • Improved performance and speed

    • Ability to handle multiple tasks simultaneously

    • Reduced power consumption

    • Better multitasking capabilities

    • Enhanced user experience

    • Examples: Intel Core i7, AMD Ryzen 9

  • Answered by AI
  • Q10. Tell me about yourself and your family briefly
  • Ans. 

    I am a software engineer with a loving family.

    • I have been working as a software engineer for 5 years.

    • My wife is a teacher and we have two children.

    • We enjoy spending time together outdoors and traveling.

    • My parents live in a different state but we keep in touch regularly.

    • Family is very important to me and I prioritize spending time with them.

  • Answered by AI
  • Q11. Tell me about your course projects
  • Ans. 

    Developed a web-based project management tool and a mobile app for tracking expenses

    • Created a responsive UI using React and Bootstrap

    • Implemented user authentication and authorization using Firebase

    • Integrated Google Maps API for location tracking in the mobile app

    • Used Node.js and MongoDB for backend development

    • Collaborated with a team of four to complete the projects

  • Answered by AI
  • Q12. Tell me about your professional experience
  • Ans. 

    I have 5 years of experience in software engineering with expertise in Java and Python.

    • Developed and maintained web applications using Java and Spring framework

    • Designed and implemented RESTful APIs using Python and Flask

    • Worked on database management and optimization using MySQL and MongoDB

    • Collaborated with cross-functional teams to deliver high-quality software products

    • Participated in code reviews and provided construc

  • Answered by AI
  • Q13. What are your academic interests?
  • Ans. 

    My academic interests include computer science, artificial intelligence, and machine learning.

    • Computer science

    • Artificial intelligence

    • Machine learning

  • Answered by AI
  • Q14. Explain one CS topic(of your choice) in layman terms
  • Ans. 

    Explain Big O notation

    • Big O notation is used to describe the time complexity of an algorithm

    • It helps us understand how the algorithm's performance changes with input size

    • O(1) means constant time, O(n) means linear time, O(n^2) means quadratic time

    • We want algorithms with lower Big O values for better performance

  • Answered by AI
  • Q15. What are your location preferences?
  • Ans. 

    I am open to relocation based on the job opportunity and growth prospects.

    • Open to relocation for the right opportunity

    • Willing to move for career growth

    • Flexible with location based on job requirements

  • Answered by AI
  • Q16. Would you like to have a pizza slice? ;)
  • Ans. 

    Yes, I would love to have a pizza slice!

    • I am a big fan of pizza and would never say no to a slice!

    • Pizza is the perfect food for any occasion, whether it's a quick lunch or a late-night snack.

    • I particularly enjoy pepperoni and mushroom pizza, but I'm open to trying new toppings as well.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions were of average difficulty but lengthy. The test was conducted between 7:30 PM and 9 PM. I had a long day so it was a little tiresome.
Tips: Time is of importance. I suggest you to quickly browse through all the questions and pick the easy ones beforehand instead of being stuck on a single difficult question.
Duration: 90 minutes
Total Questions: 60

Round: Technical Interview
Experience: I found the questions easy so I was able to answer them all.
Tips: Don't just think in your mind. Think out loud so that the interviewer can correct you.

Round: HR Interview
Experience: Interviewer was friendly. It was like talking with a friend.
Tips: Keep it short and brief. It's fine even if your English is not good. (Mine wasn't )

General Tips: Be cool and calm. If you don't know something, admit it. You can come back to it later.
Skill Tips: No need to go very deep. Just know the basics properly.
Skills: Puzzle Solving Capability, Computer Organisation, Operating System Basics, Object Oriented Programming (OOP) Basics, C Programming, Aptitude
Duration: 2
College Name: IIT Madras
Motivation: Qualcomm is an industry leader in mobile hardware. The work profile suited me well.
Funny Moments: The nice HR lady offered me a pizza slice.

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Questions about my B.Tech project, M.Tech project
  • Q2. Questions from my favourite subject
  • Q3. Questions about the company, Expectations from the company, Discussion of future opportunities

Interview Preparation Tips

Round: Resume Shortlist
Experience: Short listing of resume was done on the basis of CGPA .Mine was 9.22

Round: Test
Experience: Objective questions related to C/C++/OS + 1 coding question
Tips: Basic C/C++ reference material
Duration: 20 minutes

Round: Technical Interview
Tips: Too much emphasis on the work done by you before. They required every explanation in detail.

General Tips: I think I got selected because my academics are good.B.Tech and M.Tech project are in the field which company is looking forward for.I started preparing atleast a 1.5 months before the interviews.For core companies,Refer to class notes, topics related to company which I was targeting. Good idea of what is required by the company is obtained from the PPT. Questions were mostly related to BTP as well as other work done in the Department.Refer to class notes, topics related to company which I was targeting. Good idea of what is required by the company is obtained from the PPT.
A lot of practice improves speed and accuracy. Very much required in the first round of any company, which usually tests these skills.
Skill Tips: Prepared a compendium of the topics expected to prop up during interview.Revision of basic fundamentals of the field.Short report of the B.Tech as well as M.Tech project.Referred to placement sites for some tips.
Skills: Programming skills
College Name: IIT MADRAS
Motivation: They were looking for Digital Signal Processing, Image Signal Processing, Communications.

Interview Questionnaire 

2 Questions

  • Q1. I was asked mostly about my projects
  • Q2. I was asked about myself and my hobbies

Interview Preparation Tips

Round: Technical Interview
Experience: The guy taking my interview was from OS background and my project was on networks, he didn't understand much. In next round I was asked my favorite subject, I told data structure and networks. He asked about networks which I explained well.
Tips: For Samsung work on APTI, data interpretation question. Try to make it fast. Also focus on C basics.Keep your preparations of general Apti good. Practice a test paper (online/books) day before to make to focused and accurate.

General Tips: In my first technical interview the guy was not from networking background. My project was on networks which I think was not able to explain to him that good. I got less marks there I think.
Skills: C questions, general Apti, OS, DBMS, Networks
College Name: NIT SURATHKAL

Interview Questionnaire 

3 Questions

  • Q1. What do you know about the company?
  • Q2. Why do you want to join the company?
  • Q3. How was your stay at IIT Roorkee? How did you spend your time here?
  • Ans. 

    I had a great stay at IIT Roorkee and spent my time exploring various opportunities and learning new skills.

    • I was actively involved in various technical clubs and societies on campus

    • I participated in coding competitions and hackathons

    • I also took part in organizing technical events and workshops

    • Apart from academics, I enjoyed playing sports and exploring the scenic campus

    • Overall, my stay at IIT Roorkee was a fulfilling

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: I prepared a single resume but changed my areas of interest while applying in different companies. For instance while applying in Samsung Electronics I wrote about my strengths in data structures and various programming languages. I had a long list of extra-curricular activities under my belt; I made sure to select a handful of relevant activities and mentioned them in my resume.

Round: Test
Experience: I had prepared for the CAT examination, for this I had joined a coaching class where we were given extensive practice of aptitude related questions which helped me a lot for the written tests.
First round was the written test. There were two tests, one was the aptitude test and the other was programming test. The former was simple, but the later was a little difficult. The programming test was based completely on C programming language. The questions asked were mainly from classes, objects and functions. In some of the questions they had given a complete code and we had to predict the output. The test was of half an hour duration. There were no questions on data structures and we were clearly told at the beginning of the test that knowledge of data structures is not must, but possessing the same could be beneficial in one’s bid to get a job in the company.
The aptitude test paper was easy and was divided into two sections, data interpretation and logical reasoning. There were 50 questions to be answered in 50 minutes.
Since the profile was open only for CS, EE and EC students there were not many students who appeared for the test. Around 60 to 70 students appeared for the test and 15 to 16 qualified for the next round.

Round: HR Interview
Experience: For the preparation of HR interviews I collected a set of questions and prepared my answers to them. I collected these questions from the internet. A few more questions on the same lines were also asked. While framing answers to these questions I added certain experiences of my life to add a personal touch.The questions asked in the interview were mainly technical. One of the interviewers asked me to explain the principles of C programming. He asked to write down the complete code of a string related problem and then asked me to do the same using classes. One more question that I vaguely remember being asked was about swapping of digits.
They next asked me a puzzle. In the puzzle I was asked to divide a rectangle into 9 equal pieces.
They also enquired whether I had designed any software or done any work in networking sector. I replied with a no, but I did tell them that I had studied DSP.
They did not ask me a lot of HR questions, but they did enquire about my family background. They also asked me whether I’d be ok if I were to be posted in Bangalore.
Tips: Before the interview we were given an HR form, in the form there was question in which we had to specify the technologies that we were interested in. Make sure that you answer this question with complete honesty because they do ask you questions based on this.

College Name: IIT ROORKEE
Motivation: Samsung came to our campus with numerous profile. This profile basically required knowledge of basic electronics. They were up for people who had done something related to electronics which would be a project or a robotics event.

Interview Preparation Tips

Round: Resume Shortlist
Experience: The company didn’t have any resume based selection. The criterion for applying was that the student should have a CGPA greater than 7.

Round: Test
Experience: There was a written test which had questions related to the core engineering area. After the written test there were two rounds of interviews.

Round: HR Interview
Experience: In the interview they asked me questions about the following topics:Backtracking, Related to Computer Networks (ipv4 v/s ipv6), Http v/s Https, Algorithm and database for T9 predictive text in mobile phones.
Finally when they were sure about my technical skills they asked me HR related questions. These were whether I was fine with the package and the place of assignment which was Bangalore. Also they inquired about my family background to ascertain my values and whether I will stick with the company in the long run or not.

College Name: IIT ROORKEE

Interview Questionnaire 

20 Questions

  • Q1. How the operating system taking care of const int i=5; //tell the implementation so that we can't alter the value of i?
  • Ans. 

    Operating system uses memory protection to prevent modification of const variables like const int i=5;

    • Operating system marks the memory page containing i as read-only

    • Any attempt to modify i will result in a segmentation fault

    • Compiler may optimize code by replacing i with its value at compile time

  • Answered by AI
  • Q2. Explain the memory layout of main memory of computer system? Give an example to make understand the memory layout means in which segment what type of variable will be store?
  • Ans. 

    Explanation of memory layout in main memory of computer system.

    • Main memory is divided into four segments: stack, heap, data, and code.

    • Stack stores local variables and function calls.

    • Heap stores dynamically allocated memory.

    • Data stores global and static variables.

    • Code stores the program instructions.

    • Example: int x; //stored in data segment, int *p = new int; //stored in heap segment

  • Answered by AI
  • Q3. By how many method we can allocate the memory in C and what is the difference between malloc and calloc. And which is faster and why?
  • Ans. 

    Two methods to allocate memory in C are malloc and calloc. Malloc allocates memory block of given size while calloc initializes the allocated memory block to zero.

    • Malloc allocates memory block of given size while calloc initializes the allocated memory block to zero.

    • Malloc returns a pointer to the first byte of allocated memory block while calloc returns a pointer to the first byte of initialized memory block.

    • Malloc is...

  • Answered by AI
  • Q4. Implementation of new() in C++?
  • Ans. 

    new() is an operator in C++ used for dynamic memory allocation.

    • new() returns a pointer to the allocated memory.

    • It can be used to allocate memory for primitive data types, arrays, and objects.

    • Memory allocated using new() must be deallocated using delete operator.

    • Example: int *ptr = new int;

    • Example: int *arr = new int[10];

    • Example: MyClass *obj = new MyClass();

  • Answered by AI
  • Q5. What is the difference between malloc and new and which one is faster and why?
  • Ans. 

    malloc and new are used to allocate memory dynamically. Malloc is faster but new is safer.

    • malloc is a C function while new is a C++ operator

    • malloc only allocates memory while new also initializes the memory

    • new throws an exception if allocation fails while malloc returns NULL

    • malloc is faster because it does not involve constructor calls

    • new is safer because it ensures type safety and prevents memory leaks

  • Answered by AI
  • Q6. Difference between extern and static and give an example to justify?
  • Ans. 

    extern and static are storage classes in C programming language.

    • extern is used to declare a variable or function that is defined in another file or module.

    • static is used to declare a variable or function that is local to a file or module.

    • Example of extern: extern int count; //declares count variable defined in another file.

    • Example of static: static int count = 0; //declares count variable local to the file.

  • Answered by AI
  • Q7. Is it possible to access the static variable defined in another file, if yes then how?
  • Q8. What is the difference between these two statement: const int *p; int const *p;
  • Ans. 

    The two statements are equivalent and declare a pointer to a constant integer.

    • Both statements declare a pointer to an integer that cannot be modified through the pointer.

    • The 'const' keyword can be placed before or after the 'int' keyword.

    • The pointer itself can still be modified to point to a different integer.

    • Example: const int *p; and int const *p; both declare a pointer to a constant integer.

  • Answered by AI
  • Q9. For statement const int *p = 5, which is true from given below two statement: a) int a; p = &a; b) *p = 0
  • Ans. 

    Cannot modify value pointed by p, but can change the address it points to.

    • p is a pointer to a constant integer with value 5

    • a) is valid as p can point to a non-constant integer

    • b) is invalid as *p is a constant and cannot be modified

  • Answered by AI
  • Q10. What is the self referential structure, write an example of self referential structure?
  • Ans. 

    Self referential structure is a structure that contains a pointer to the same type of structure.

    • It allows a structure to reference itself within its own definition.

    • It is commonly used in linked lists, trees, and graphs.

    • Example: struct Node { int data; struct Node *next; };

    • Here, the Node structure contains a pointer to another Node structure.

  • Answered by AI
  • Q11. Difference between structure and union and what are the pros and cons of both?
  • Ans. 

    Structure and union are data structures in C language. Union stores only one value at a time while structure stores multiple values.

    • Structure is used to store different data types while union is used to store only one data type at a time.

    • Structure allocates memory for all its members while union allocates memory for only the largest member.

    • Structure is used when we want to store multiple values of different data types ...

  • Answered by AI
  • Q12. What is the structure byte padding and how does it form and depend? Is there any concept
  • Ans. 

    Structure byte padding is the insertion of unused bytes between structure members to align them in memory.

    • Padding is added to ensure that each member of a structure is aligned on a memory boundary that is a multiple of its size.

    • The amount of padding added depends on the size and alignment requirements of the members.

    • Padding can affect the size of a structure and the performance of code that uses it.

    • For example, a struc...

  • Answered by AI
  • Q13. How do we know the linked list is a circular or not?
  • Ans. 

    To check if a linked list is circular, we can use Floyd's cycle-finding algorithm.

    • Floyd's cycle-finding algorithm uses two pointers, one moving at twice the speed of the other.

    • If the linked list is circular, the fast pointer will eventually catch up to the slow pointer.

    • If the linked list is not circular, the fast pointer will reach the end of the list and the algorithm will terminate.

  • Answered by AI
  • Q14. What type of OS is Windows?
  • Ans. 

    Windows is a proprietary operating system developed by Microsoft.

    • Windows is a graphical user interface (GUI) based operating system.

    • It is designed to run on personal computers, servers, and mobile devices.

    • Windows has different versions such as Windows 10, Windows 8, Windows 7, etc.

    • It supports a wide range of software applications and hardware devices.

    • Windows is known for its ease of use and user-friendly interface.

  • Answered by AI
  • Q15. Difference between UNIX and LINUX?
  • Ans. 

    UNIX is an operating system developed in the 1970s, while LINUX is a free and open-source operating system based on UNIX.

    • UNIX is proprietary, while LINUX is open-source

    • UNIX is older and has a longer history, while LINUX is a newer development

    • UNIX is more stable and reliable, while LINUX is more customizable and flexible

    • UNIX has a more limited user base, while LINUX has a larger and more active community

    • Examples of UNIX...

  • Answered by AI
  • Q16. What is the real time operating system?
  • Ans. 

    A real-time operating system is an OS that processes data and events as they occur, without delay.

    • Real-time operating systems are used in applications that require immediate response, such as aviation, medical equipment, and industrial control systems.

    • They prioritize tasks based on their urgency and importance, and can handle multiple tasks simultaneously.

    • Examples of real-time operating systems include VxWorks, QNX, an

  • Answered by AI
  • Q17. How many types of CPU scheduling are there and explain all. Which one is better and why and tell the feasibilty also?
  • Ans. 

    There are 6 types of CPU scheduling: FCFS, SJF, SRTF, Priority, Round Robin, and Multilevel Queue. Each has its own advantages and disadvantages.

    • FCFS (First-Come-First-Serve) - processes are executed in the order they arrive

    • SJF (Shortest-Job-First) - shortest job is executed first

    • SRTF (Shortest-Remaining-Time-First) - preemptive version of SJF

    • Priority - processes with higher priority are executed first

    • Round Robin - eac...

  • Answered by AI
  • Q18. Is there any ideal CPU scheduling possible? Justify your answer?
  • Ans. 

    No, there is no ideal CPU scheduling possible.

    • CPU scheduling is a complex problem with many variables.

    • Different scheduling algorithms are suited for different scenarios.

    • The ideal scheduling algorithm would depend on the specific system and workload.

    • For example, a real-time system would require a different scheduling algorithm than a batch processing system.

  • Answered by AI
  • Q19. How to set the priority of any process in windows and in linux?
  • Ans. 

    To set process priority in Windows and Linux, use task manager and nice command respectively.

    • In Windows, open task manager, right-click on the process and select 'Set Priority'

    • In Linux, use the 'nice' command followed by the process name or ID and the priority level (values range from -20 to 19)

    • Higher priority levels mean the process will get more CPU time

    • Examples: 'nice -n 10 firefox' sets Firefox priority to 10 in Li...

  • Answered by AI
  • Q20. Can you say about the priority of mobile application which one is having higher priority?
  • Ans. 

    The priority of a mobile application depends on the business goals and user needs.

    • The priority of a mobile application can vary depending on the business goals and user needs.

    • For example, a mobile banking app may have a higher priority than a social media app for a bank.

    • On the other hand, a social media app may have a higher priority for a media company.

    • The priority can also depend on the target audience and the market...

  • Answered by AI

Interview Preparation Tips

College Name: NA

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. A piece of plain paper is torn into random number of pieces and how do you construct back the original paper?

Interview Preparation Tips

Round: Test
Experience: It was an MCQ test with marking as: +1, -1/3
Tips: Practice coding and finding output because most of the questions required it and some questions were on the registers.
Duration: 60 minutes

Round: Technical Interview
Experience: It was of about 45min. Mainly questions were asked about image processing, internship and on the project.

Round: HR Interview
Experience: No questions were asked. It was mostly to inform that I got the offer.
Tips: Knowledge from minor is not tested.

Skill Tips: I would like to suggest everyone to be honest with the interviewer and in resume.
College Name: IIT MADRAS
Contribute & help others!
anonymous
You can choose to be anonymous

MediaTek India Technology Interview FAQs

How many rounds are there in MediaTek India Technology Intern interview?
MediaTek India Technology interview process usually has 2 rounds. The most common rounds in the MediaTek India Technology interview process are Aptitude Test and Technical.
How to prepare for MediaTek India Technology Intern 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 Internship and VLSI.
What are the top questions asked in MediaTek India Technology Intern interview?

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

  1. You have a 3 ltr jug and 5 ltr jug measure 4lt water using th...read more
  2. The same question, but now do it starting with the 3ltr j...read more

Recently Viewed

DESIGNATION

SALARIES

ITC Limited - Paperboards Specialty Papers Division

SALARIES

Ignitarium Technology Solutions

REVIEWS

Ignitarium Technology Solutions

No Reviews

INTERVIEWS

Manjushree Technopack

No Interviews

INTERVIEWS

Jaro Education

No Interviews

SALARIES

Ignitarium Technology Solutions

SALARIES

ITC Limited - Paperboards Specialty Papers Division

REVIEWS

ITC Limited - Paperboards Specialty Papers Division

No Reviews

INTERVIEWS

Sun Pharmaceutical Industries

No Interviews

Tell us how to improve this page.

MediaTek India Technology Intern Salary
based on 6 salaries
₹1 L/yr - ₹6 L/yr
At par with the average Intern Salary in India
View more details

MediaTek India Technology Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Engineer
123 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Engineer
82 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
55 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Manager
38 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare MediaTek India Technology with

Qualcomm

3.8
Compare

Intel

4.2
Compare

Samsung

3.9
Compare

Nvidia

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent