Upload Button Icon Add office photos

MKU

Compare button icon Compare button icon Compare

Filter interviews by

MKU Internship Trainee Interview Questions and Answers

Updated 8 Jul 2024

MKU Internship Trainee Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - HR 

(1 Question)

  • Q1. Introduction about myself

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about MKU?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Self introduction, Jam round, hr round, technical round.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview is cool, but might tough process.

Internship Trainee Interview Questions Asked at Other Companies

asked in ESAB
Q1. Tell about your UG project? How will you design a table for 1 ton ... read more
Q2. What could be the reason a website doesn't rank at the top for a ... read more
Q3. What do you know about the technology you are applying for?
Q4. What are the difgerent wavelengths at which optical fibre communi ... read more
Q5. What are timers in Microprocessors and how can you trigger them?

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 5 interview rounds.

Round 1 - Coding Test 

Basic c Programming and Embedded Systems

Round 2 - One-on-one 

(1 Question)

  • Q1. C and Do-178b questions
Round 3 - One-on-one 

(1 Question)

  • Q1. C and Embedded system and Project related
Round 4 - One-on-one 

(1 Question)

  • Q1. Manager Round, Mostly technical
Round 5 - HR 

(1 Question)

  • Q1. Package discussion and my previous employer details

Interview Preparation Tips

Interview preparation tips for other job seekers - C, Do-178 b process and Micro Controller knowledge

Interview Questionnaire 

2 Questions

  • Q1. Explain about the current projects i have dealt with
  • Q2. Questions related to regression fitting
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jul 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Knowledge about IC engine
Round 2 - One-on-one 

(1 Question)

  • Q1. Value engineering related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Aug 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

It is like gate exam paper more of electronics questions than programming languages. Here the programming language is c and embedded

Round 3 - Technical 

(5 Questions)

  • Q1. Basic level questions on c but indepth discussion on the academic projects.
  • Q2. Explain Compilation stages
  • Ans. 

    Compilation stages involve preprocessing, compilation, assembly, linking, and loading.

    • Preprocessing: Includes expanding macros, handling conditional compilation, and file inclusion.

    • Compilation: Translates source code into assembly code or machine code.

    • Assembly: Converts assembly code into object code.

    • Linking: Combines multiple object files and libraries into a single executable.

    • Loading: Loads the executable into memory...

  • Answered by AI
  • Q3. Logics on bit wise operators
  • Ans. 

    Bitwise operators are used to perform operations at the bit level on binary numbers.

    • Bitwise AND (&) - sets a bit to 1 only if both input bits are 1

    • Bitwise OR (|) - sets a bit to 1 if either input bit is 1

    • Bitwise XOR (^) - sets a bit to 1 if the input bits are different

    • Bitwise NOT (~) - inverts all the bits

    • Left shift (<<) - shifts the bits to the left by a specified number of positions

    • Right shift (>>) - shifts the bits ...

  • Answered by AI
  • Q4. Understanding of pointers
  • Ans. 

    Pointers are variables that store memory addresses of other variables in programming languages like C and C++.

    • Pointers are used to store memory addresses of variables.

    • They allow direct manipulation of memory locations.

    • Pointers can be used to pass variables by reference.

    • Example: int *ptr; ptr = # *ptr = 10; // num now equals 10

  • Answered by AI
  • Q5. Volatile and non volatile keywords

Interview Preparation Tips

Interview preparation tips for other job seekers - Have deep understanding of the project. Then have good understanding of basic level concepts in c, embedded c ,8051 controller along with protocols like UART,I2C,SPI.

Skills evaluated in this interview

Be interview-ready. Browse the most asked HR questions.
illustration image
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How to choose mosfet
  • Ans. 

    Choose a MOSFET based on voltage, current, power dissipation, switching speed, and package type.

    • Consider voltage and current requirements

    • Look at power dissipation and thermal considerations

    • Evaluate switching speed needed for the application

    • Choose the appropriate package type for mounting and heat dissipation

    • Check for additional features like built-in protection circuits

    • Example: For high power applications, choose a MOS...

  • Answered by AI
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Explain storage classes in c
  • Ans. 

    Storage classes in C define the scope, lifetime, and visibility of variables, influencing memory management and access.

    • auto: Default storage class for local variables, with automatic duration. Example: 'int x;' inside a function.

    • register: Suggests storing the variable in CPU registers for faster access. Example: 'register int count;'

    • static: Preserves variable value between function calls and limits visibility to the fi...

  • Answered by AI
  • Q2. Explain about your recent project
  • Q3. What is the use of volatile and constant key words
  • Q4. Explain difference between spi and i2c and uart
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Differentiate between RISC and CISC
  • Ans. 

    RISC stands for Reduced Instruction Set Computing and CISC stands for Complex Instruction Set Computing.

    • RISC processors have a smaller set of simple instructions, while CISC processors have a larger set of complex instructions.

    • RISC processors typically execute instructions in one clock cycle, while CISC processors may require multiple clock cycles.

    • RISC processors rely on optimizing compilers for performance, while CISC...

  • Answered by AI
  • Q2. Define and differentiate interpreter and compiler
  • Ans. 

    Interpreter translates code line by line while compiler translates entire code at once.

    • Interpreter: translates code line by line, slower execution, easier debugging (e.g. Python)

    • Compiler: translates entire code at once, faster execution, harder debugging (e.g. C++)

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Dsa + JavaScript related questions and outputs

Round 2 - Coding Test 

Js related coding + easy dsa

Round 3 - Behavioral 

(2 Questions)

  • Q1. Mostly about the projects you did earlier
  • Q2. What do you focus on learning in future
  • Ans. 

    I focus on learning new programming languages, technologies, and best practices to stay current in the industry.

    • Learning new programming languages such as Python or Go

    • Exploring emerging technologies like blockchain or machine learning

    • Staying updated on best practices in software development such as Agile or DevOps

    • Improving problem-solving skills through coding challenges and projects

  • Answered by AI

MKU Interview FAQs

How many rounds are there in MKU Internship Trainee interview?
MKU interview process usually has 1 rounds. The most common rounds in the MKU interview process are HR.

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Senior Executive
44 salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Deputy Manager
23 salaries
unlock blur

₹6 L/yr - ₹13 L/yr

Assistant Manager
20 salaries
unlock blur

₹5 L/yr - ₹9 L/yr

Executive Production
10 salaries
unlock blur

₹1.5 L/yr - ₹3.3 L/yr

Senior Research and Development Executive
7 salaries
unlock blur

₹2.9 L/yr - ₹7.6 L/yr

Explore more salaries
Compare MKU with

Honeywell Technology Solutions

3.7
Compare

Tata Advanced Systems

3.7
Compare

GE

4.2
Compare

Collins Aerospace

3.8
Compare
write
Share an Interview