Engineering Intern

30+ Engineering Intern Interview Questions and Answers

Updated 9 Oct 2024

Popular Companies

search-icon

Q1. What the final product of blast furnace? What is the composition of the iron produced and the source of high content of P? And how to reduce the content?

Ans.

The final product of a blast furnace is pig iron, which has a high carbon content. The high phosphorus content in iron is sourced from the ore and can be reduced through various methods.

  • The final product of a blast furnace is pig iron, which contains around 3-4% carbon.

  • The high phosphorus content in iron is sourced from the iron ore used in the blast furnace.

  • To reduce the phosphorus content, techniques such as fluxing agents or using low-phosphorus iron ores can be employed.

Q2. What type of reaction occurs on the surface of most metals when exposed to air?

Ans.

Oxidation reaction occurs on the surface of most metals when exposed to air.

  • Most metals react with oxygen in the air to form metal oxides

  • This process is known as oxidation

  • Examples include iron forming iron oxide (rust) and copper forming copper oxide

Engineering Intern Interview Questions and Answers for Freshers

illustration image

Q3. How would you measure 10^-6m surface defects in the surface of battery cells during validation

Ans.

Surface defects in battery cells can be measured using advanced imaging techniques like scanning electron microscopy (SEM) or atomic force microscopy (AFM).

  • Utilize scanning electron microscopy (SEM) to visualize surface defects at nanoscale level

  • Use atomic force microscopy (AFM) to measure surface roughness and defects with high resolution

  • Implement image processing software to analyze SEM or AFM images and quantify the size and distribution of defects

  • Perform statistical analy...read more

Q4. Print the second largest element? Reverse the string and print the last character? Change the first character of string?

Ans.

To find the second largest element, reverse a string and print the last character, and change the first character of a string.

  • To find the second largest element in an array of strings, you can sort the array in descending order and then access the element at index 1.

  • To reverse a string, you can iterate through the characters of the string in reverse order and concatenate them to form the reversed string.

  • To print the last character of a string, you can access the character at ...read more

Are these interview questions helpful?

Q5. write a program to find the frequency of the character in the string ?

Ans.

The program finds the frequency of each character in a given string.

  • Create an array to store the frequency of each character (size 256 for ASCII characters)

  • Iterate through the string and increment the corresponding index in the array

  • Print the frequency of each character

Q6. what happens when magnesium is dropped in water

Ans.

Magnesium reacts with water to produce magnesium hydroxide and hydrogen gas.

  • Magnesium reacts vigorously with water

  • It forms magnesium hydroxide and hydrogen gas

  • The reaction is exothermic

Share interview questions and help millions of jobseekers 🌟

man-with-laptop

Q7. Give a base 7 representation of a number - coding question

Ans.

Convert a number to base 7 representation

  • Divide the number by 7 and store the remainder in each step

  • Repeat until the quotient is 0

  • Reverse the remainders to get the base 7 representation

Q8. Oops concepts with example and use of interface over abstract class

Ans.

Oops concepts and use of interface over abstract class

  • Oops concepts are fundamental to object-oriented programming

  • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four pillars of OOP

  • Interface is a contract that specifies the behavior of a class

  • Abstract class is a class that cannot be instantiated and can have both abstract and non-abstract methods

  • Interface is preferred over abstract class when multiple inheritance is required

Engineering Intern Jobs

ML Engineer Intern 0-0 years
Branch International Financial Services Private Limited
3.9
Mumbai
Demo Engineer Intern 0-1 years
Crio.Do
3.3
Bangalore / Bengaluru
Engineering Intern 0-1 years
Crio.Do
3.3
Bangalore / Bengaluru

Q9. What is capacitor, how it's work?

Ans.

A capacitor is an electronic component that stores and releases electrical energy.

  • Capacitors consist of two conductive plates separated by an insulating material, known as a dielectric.

  • When a voltage is applied across the plates, an electric field is created, causing the plates to store energy.

  • Capacitors are commonly used in electronic circuits for filtering, timing, and energy storage.

  • Examples of capacitors include ceramic capacitors, electrolytic capacitors, and tantalum ca...read more

Q10. What is difference between pump and compressor

Ans.

Pumps are used to move fluids, while compressors are used to increase the pressure of gases.

  • Pumps are used to transfer fluids from one place to another, while compressors are used to increase the pressure of gases.

  • Pumps are typically used in applications such as water supply, irrigation, and sewage systems, while compressors are used in applications such as air conditioning, refrigeration, and industrial processes.

  • Pumps generally operate at lower pressures compared to compres...read more

Q11. What is resistor, working of resistance

Ans.

A resistor is an electronic component that resists the flow of electric current. Resistance is the measure of opposition to current flow.

  • Resistors are used to limit current flow, divide voltage, and adjust signal levels in electronic circuits

  • Resistance is measured in ohms (Ω) and is calculated using Ohm's Law: V = IR

  • Resistors are passive components that dissipate energy in the form of heat

  • Different types of resistors include carbon film, metal film, and wirewound resistors

Q12. Different types of test hardnell brinel rockwell

Ans.

Different types of hardness tests include Rockwell, Brinell, and Vickers.

  • Rockwell test measures the depth of penetration of an indenter under a large load.

  • Brinell test uses a hard steel or carbide ball to indent the surface of the material.

  • Vickers test uses a diamond pyramid to create an impression on the material.

Q13. write a program to reverse a string ?

Ans.

Program to reverse a string

  • Create a character array to store the reversed string

  • Iterate through the original string in reverse order and populate the character array

  • Convert the character array back to a string and return

Frequently asked in, ,

Q14. What is educational background?

Ans.

Bachelor's degree in Mechanical Engineering from ABC University

  • Bachelor's degree in Mechanical Engineering

  • Graduated from ABC University

  • Courses in thermodynamics, fluid mechanics, and materials science

  • Hands-on experience with CAD software

Q15. min and max in matrix calculation

Ans.

Finding the minimum and maximum values in a matrix

  • Iterate through each element in the matrix to find the minimum and maximum values

  • Initialize min and max variables with the first element in the matrix

  • Compare each element with the current min and max values and update accordingly

  • Example: For a matrix [[1, 2, 3], [4, 5, 6]], min = 1, max = 6

Q16. Difference between fixed and simple beam

Ans.

Fixed beams have both ends fixed while simple beams have one end fixed and one end free.

  • Fixed beams have both ends restrained against rotation and translation.

  • Simple beams have one end fixed and one end free to rotate and translate.

  • Fixed beams are stiffer and can carry heavier loads compared to simple beams.

  • Examples: Fixed beam - cantilever beam, Simple beam - simply supported beam.

Q17. explain different types of flip flops ,.

Ans.

Flip flops are sequential circuits used in digital electronics to store one bit of information.

  • SR flip flop: basic flip flop with two inputs (S and R) and two outputs (Q and Q').

  • D flip flop: data flip flop with single data input (D) and clock input (CLK).

  • JK flip flop: versatile flip flop with J, K, and clock inputs.

  • T flip flop: toggling flip flop with single input (T) and clock input.

Q18. Difference between Latch and flipflop

Ans.

Latch is level triggered and stores data while enabled. Flip-flop is edge triggered and stores data on clock signal.

  • Latch is asynchronous while flip-flop is synchronous

  • Latch has only one input while flip-flop has two inputs

  • SR latch, D latch, and JK latch are examples of latches

  • D flip-flop, JK flip-flop, and T flip-flop are examples of flip-flops

Q19. what are pillars of OOPS

Ans.

The pillars of OOPS (Object-Oriented Programming) are Inheritance, Encapsulation, Polymorphism, and Abstraction.

  • Inheritance allows a class to inherit properties and behavior from another class. For example, a 'Car' class can inherit from a 'Vehicle' class.

  • Encapsulation refers to the bundling of data with the methods that operate on that data. It restricts access to some of an object's components. For example, using private variables in a class.

  • Polymorphism allows methods to d...read more

Q20. Tell about your shelf.

Ans.

My shelf is organized with books, plants, and decorative items.

  • I have separate sections for different types of books - fiction, non-fiction, and reference.

  • I also have a few potted plants to add some greenery to the shelf.

  • I like to display some decorative items like candles and small figurines on the shelf.

  • I keep my favorite books prominently displayed for easy access.

Q21. What is quality engineering

Ans.

Quality engineering is the process of ensuring that products or services meet the required standards and specifications.

  • Quality engineering involves designing, developing, and implementing processes to ensure consistent quality in products or services.

  • It focuses on identifying and addressing potential issues or defects early in the development process.

  • Quality engineering uses tools such as statistical analysis, root cause analysis, and quality control methods to improve proce...read more

Q22. Frequency of words in sentences.

Ans.

Analyzing the frequency of words in sentences.

  • Split the sentence into words using spaces as delimiter

  • Create a dictionary to store word frequencies

  • Iterate through the words and update the frequency count in the dictionary

  • Return the dictionary with word frequencies

Q23. Add error-handling mechanisms

Ans.

Error-handling mechanisms are essential for robust software. They help prevent crashes and improve user experience.

  • Identify potential errors and exceptions

  • Implement try-catch blocks

  • Use logging to track errors

  • Provide informative error messages to users

  • Test error-handling thoroughly

  • Consider using third-party libraries for error-handling

  • Document error-handling procedures

Q24. Optimize the Solution

Ans.

Optimizing a solution involves identifying and implementing improvements to increase efficiency and effectiveness.

  • Analyze the current solution to identify areas for improvement

  • Consider alternative approaches and technologies

  • Implement changes and measure the impact on performance

  • Continuously iterate and refine the solution

  • Example: optimizing a manufacturing process to reduce waste and increase output

Q25. What is Elmore delay

Ans.

Elmore delay is a metric used in digital circuit design to estimate the delay of a signal traveling through a network of resistors and capacitors.

  • Elmore delay is used to estimate the time it takes for a signal to propagate through a network of RC elements.

  • It is calculated by summing the products of resistance and capacitance along the path of the signal.

  • Elmore delay is often used in timing analysis of digital circuits to optimize performance.

  • Example: In a simple RC network, t...read more

Q26. what is interface

Ans.

An interface is a point where two systems, subjects, organizations, etc., meet and interact with each other.

  • An interface defines the methods that a class must implement, without specifying how they should be implemented.

  • Interfaces allow for multiple inheritance in programming languages like Java.

  • Examples of interfaces in programming include Java interfaces, USB ports on electronic devices, and user interfaces on software applications.

Frequently asked in, ,

Q27. Process of old company

Ans.

The old company had a structured process for project management and quality control.

  • The old company followed a step-by-step approach for project execution.

  • Regular quality checks were conducted to ensure product standards were met.

  • Documentation of processes and procedures was emphasized for consistency.

  • Feedback from customers and stakeholders was used to improve processes.

  • Training programs were in place to enhance employee skills and knowledge.

Q28. Insertion sort algorithm

Ans.

Insertion sort is a simple sorting algorithm that builds the final sorted array one item at a time.

  • Iterate through the array starting from the second element

  • Compare each element with the elements before it and insert it in the correct position

  • Repeat until the entire array is sorted

  • Example: ['3', '1', '4', '1', '5', '9', '2', '6'] -> ['1', '1', '2', '3', '4', '5', '6', '9']

Q29. basic personality of someone

Ans.

The basic personality of someone refers to their fundamental traits, behaviors, and characteristics.

  • Personality is a combination of traits, such as introversion or extroversion, openness, conscientiousness, agreeableness, and neuroticism.

  • It can also include behaviors, such as being organized, punctual, or assertive.

  • Characteristics like being optimistic, empathetic, or ambitious are also part of someone's personality.

  • Personality can influence how someone interacts with others,...read more

Q30. Wat is ur name

Ans.

My name is John Smith.

  • Full name is John Smith

  • Common name in English-speaking countries

  • Easy to remember and pronounce

Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Interview experiences of popular companies

3.9
 • 7.8k Interviews
3.7
 • 7.3k Interviews
3.6
 • 2.3k Interviews
4.1
 • 778 Interviews
4.0
 • 550 Interviews
4.1
 • 378 Interviews
View all

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary

Engineering Intern Interview Questions
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter