Project Trainee Engineer

20+ Project Trainee Engineer Interview Questions and Answers

Updated 3 Sep 2024
search-icon

Q1. How to find a number missing in the list of continuous n natural number.

Ans.

To find a missing number in a list of continuous n natural numbers, calculate the sum of all numbers and subtract the sum of given numbers.

  • Calculate the sum of all natural numbers using the formula n*(n+1)/2

  • Calculate the sum of given numbers in the list

  • Subtract the sum of given numbers from the sum of all numbers

  • The result will be the missing number

Q2. How do you train persons who have no knowledge of EVM (ELECTRONIC VOTING MACHINE) ?

Ans.

To train persons with no knowledge of EVM, start with basic concepts, provide hands-on practice, offer visual aids and demonstrations, and encourage questions and discussions.

  • Start by explaining the basic concepts and components of an EVM

  • Provide hands-on practice with a mock EVM to familiarize them with its operation

  • Use visual aids such as diagrams and videos to enhance understanding

  • Offer demonstrations of an actual EVM in action

  • Encourage questions and discussions to clarify ...read more

Project Trainee Engineer Interview Questions and Answers for Freshers

illustration image

Q3. Difference between function overloading and function Overwriting

Ans.

Function overloading is having multiple functions with the same name but different parameters. Function overwriting is replacing a function with a new one.

  • Function overloading is used to provide multiple ways to call a function with different parameters.

  • Function overwriting is used to replace a function with a new implementation.

  • Function overloading is resolved at compile-time based on the number and types of arguments passed.

  • Function overwriting is resolved at runtime based ...read more

Q4. What you know about PLC and DCS.

Ans.

PLC stands for Programmable Logic Controller and DCS stands for Distributed Control System. They are used in industrial automation.

  • PLC is a digital computer used for automation of electromechanical processes.

  • DCS is a control system used to control multiple variables and processes across a large area.

  • PLC is more suitable for discrete manufacturing processes while DCS is used in continuous processes.

  • PLC programming languages include ladder logic, function block diagram, and str...read more

Are these interview questions helpful?

Q5. Programming language of PLC , make a logic of any.

Ans.

PLC programming language is ladder logic. It uses graphical representation of relay logic circuits.

  • Ladder logic is the most commonly used programming language for PLCs.

  • It uses graphical representation of relay logic circuits.

  • Example: A simple logic could be turning on a motor when a sensor detects an object.

Q6. Q.1) what do u know about SPECIAL PROCESS?

Ans.

Special processes are unique operations that require specific skills, equipment, and procedures to ensure quality and safety.

  • Special processes are critical operations in manufacturing that cannot be easily verified or inspected after completion.

  • Examples of special processes include welding, heat treating, plating, and non-destructive testing.

  • These processes often require certification or qualification of personnel and equipment to ensure compliance with industry standards.

  • Spe...read more

Share interview questions and help millions of jobseekers 🌟

man-with-laptop

Q7. What is difference between ic and ci engin?

Ans.

IC engine is an internal combustion engine while CI engine is a compression ignition engine.

  • IC engine works on the principle of internal combustion of fuel while CI engine works on the principle of compression ignition of fuel.

  • IC engine is commonly used in cars, motorcycles, and small aircraft while CI engine is commonly used in heavy-duty vehicles like trucks and buses.

  • IC engine uses spark plugs to ignite the fuel while CI engine uses high compression to ignite the fuel.

  • IC e...read more

Q8. Working principle of VFD, servo Motor.

Ans.

VFD controls the speed of an AC motor by varying the frequency of the electrical supply. Servo motor uses feedback to control the position and speed of the motor.

  • VFD stands for Variable Frequency Drive

  • VFD controls the speed of an AC motor by adjusting the frequency of the electrical supply

  • Servo motor uses feedback from an encoder to accurately control the position and speed of the motor

  • Servo motors are used in robotics, CNC machines, and automation systems

Project Trainee Engineer Jobs

Project Engineer Trainee 0-1 years
Techno Engineering And Solutions Pune
3.1
₹ 1 L/yr - ₹ 2 L/yr
Nashik
Project Engineer Trainee 0-2 years
CADWORKS INDIA PRIVATE LIMITED
4.5
New Delhi
Project Engineer Trainee/ Project Engineer 0-1 years
Positive Metering Pumps
2.7
Nashik

Q9. Projection of line,difference between 2d and 3d figure.

Ans.

Projection of line and difference between 2D and 3D figures.

  • Projection of line is the representation of a 3D object on a 2D plane.

  • 2D figures have only two dimensions - length and width, while 3D figures have three dimensions - length, width, and height.

  • In 2D figures, all points lie on a single plane, while in 3D figures, points can be located at different heights.

  • Examples of 2D figures include squares, circles, and triangles, while examples of 3D figures include cubes, sphere...read more

Q10. What are the future plans of BOSCH INDIA

Ans.

BOSCH INDIA plans to focus on sustainable mobility solutions, digitalization, and Industry 4.0.

  • Investing in electric mobility solutions

  • Developing connected and autonomous vehicle technology

  • Expanding digital solutions for manufacturing and logistics

  • Partnering with startups for innovation

  • Increasing focus on sustainability and reducing carbon footprint

Q11. Write program to delete a node in a linked list.

Ans.

Program to delete a node in a linked list.

  • Find the node to be deleted and its previous node

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

  • Free the memory allocated to the node to be deleted

Q12. What is ACID properties

Ans.

ACID properties are a set of properties that ensure database transactions are processed reliably.

  • ACID stands for Atomicity, Consistency, Isolation, and Durability

  • Atomicity ensures that a transaction is treated as a single, indivisible unit of work

  • Consistency ensures that a transaction brings the database from one valid state to another

  • Isolation ensures that concurrent transactions do not interfere with each other

  • Durability ensures that once a transaction is committed, it will...read more

Q13. What is encapsulation

Ans.

Encapsulation is the process of hiding implementation details and exposing only necessary information.

  • Encapsulation is a fundamental concept in object-oriented programming.

  • It helps in achieving data abstraction and information hiding.

  • It allows for better control over the data and prevents unauthorized access.

  • Encapsulation is achieved through the use of access modifiers such as public, private, and protected.

  • For example, a class may have private variables that can only be acce...read more

Frequently asked in, ,

Q14. What is normalization

Ans.

Normalization is the process of organizing data in a database to reduce redundancy and dependency.

  • Normalization helps in improving data consistency and accuracy

  • It involves breaking down a table into smaller tables and defining relationships between them

  • Normalization is achieved through a series of normal forms, such as first normal form (1NF), second normal form (2NF), and so on

  • Normalization can prevent data anomalies, such as update, insertion, and deletion anomalies

Frequently asked in, ,

Q15. What is function overloading

Ans.

Function overloading is the ability to have multiple functions with the same name but different parameters.

  • Function overloading allows a function to perform different tasks based on the number and types of parameters passed to it.

  • It helps in writing cleaner and more readable code.

  • Example: void print(int x), void print(float x), void print(char x) are all overloaded functions with the same name but different parameter types.

Q16. Write a code to find maximum in an array?

Ans.

Code to find maximum in an array of strings

  • Iterate through the array and compare each element to find the maximum

  • Use a variable to store the current maximum value and update it as needed

  • Consider converting string elements to numbers if necessary for comparison

Q17. What are List and tuple?

Ans.

List and tuple are data structures in Python used to store collections of items.

  • Lists are mutable and can be changed, while tuples are immutable and cannot be changed

  • Lists are defined using square brackets [], while tuples are defined using parentheses ()

  • Lists are commonly used for storing and manipulating data, while tuples are often used for returning multiple values from a function

  • Example of a list: my_list = [1, 2, 3]

  • Example of a tuple: my_tuple = (4, 5, 6)

Q18. What are a type of beam

Ans.

A type of beam is a structural element that carries load primarily in bending.

  • Types of beams include cantilever beams, simply supported beams, and fixed beams.

  • Beams can be made of materials such as wood, steel, concrete, or composite materials.

  • Beams are commonly used in construction to support roofs, floors, and bridges.

Q19. What are the types of pump

Ans.

Types of pumps include centrifugal pumps, positive displacement pumps, and axial flow pumps.

  • Centrifugal pumps: use a rotating impeller to increase the pressure of a fluid.

  • Positive displacement pumps: move fluid by trapping a fixed amount and forcing it through the discharge.

  • Axial flow pumps: move fluid parallel to the pump shaft.

  • Examples: Centrifugal pump - water pump, Positive displacement pump - diaphragm pump, Axial flow pump - propeller pump

Q20. What is slicing in python?

Ans.

Slicing in Python is a way to extract a portion of a sequence, such as a string, list, or tuple.

  • Slicing is done using the colon (:) operator.

  • The syntax for slicing is [start:stop:step].

  • start is the index of the first element to include, stop is the index of the first element to exclude, and step is the increment between elements.

  • If start or stop is omitted, it defaults to the beginning or end of the sequence, respectively.

  • If step is omitted, it defaults to 1.

  • Slicing can be us...read more

Q21. Types of materials and it's properties.

Ans.

Materials have different properties based on their composition and structure.

  • Metals are good conductors of heat and electricity.

  • Polymers are lightweight and have high resistance to corrosion.

  • Ceramics are brittle and have high melting points.

  • Composites are made up of two or more materials and have unique properties.

  • Properties of materials can be physical, chemical, mechanical, or thermal.

  • Examples of properties include density, hardness, elasticity, and thermal conductivity.

Q22. What is ic ,si engin?

Ans.

IC and SI engines are types of internal combustion engines used in vehicles and machinery.

  • IC engine stands for internal combustion engine, which uses fuel combustion to generate power.

  • SI engine stands for spark ignition engine, which uses a spark plug to ignite the fuel-air mixture.

  • IC engines are commonly used in cars, trucks, and motorcycles.

  • SI engines are commonly used in gasoline-powered vehicles.

  • Both types of engines are used in various types of machinery and equipment.

  • IC...read more

Q23. Define DDL, DCL, DML

Ans.

DDL, DCL, and DML are three types of SQL commands used to manipulate databases.

  • DDL (Data Definition Language) is used to define the structure of the database schema, such as creating tables, altering tables, and dropping tables.

  • DCL (Data Control Language) is used to control access to the database, such as granting or revoking permissions.

  • DML (Data Manipulation Language) is used to manipulate data within the database, such as inserting, updating, and deleting records.

  • Examples ...read more

Q24. Define i.c engine,e.c engine

Ans.

I.C engine stands for Internal Combustion engine and E.C engine stands for External Combustion engine.

  • I.C engine: Fuel is burned inside the engine to produce power. Examples: petrol engine, diesel engine.

  • E.C engine: Fuel is burned outside the engine to produce power. Examples: steam engine, Stirling engine.

Q25. Classification Of material

Ans.

Classification of materials is the process of categorizing substances based on their properties and characteristics.

  • Materials can be classified based on their composition (e.g. metals, polymers, ceramics)

  • Materials can also be classified based on their properties (e.g. conductors, insulators, magnetic materials)

  • Classification helps in understanding the behavior and applications of different materials

Q26. Classification of steel

Ans.

Steel can be classified based on its chemical composition, physical properties, and uses.

  • Classification based on chemical composition: carbon steel, alloy steel, stainless steel

  • Classification based on physical properties: high carbon steel, low carbon steel, high strength low alloy steel

  • Classification based on uses: structural steel, tool steel, stainless steel

  • Example: Carbon steel contains mainly carbon and iron, while stainless steel contains chromium and nickel

Q27. Classification of stress

Ans.

Stress can be classified as acute or chronic, eustress or distress, and as physical, mental, emotional, or environmental.

  • Acute vs. Chronic stress

  • Eustress vs. Distress

  • Physical, Mental, Emotional, Environmental stress

Q28. Classification of turbine

Ans.

Turbines can be classified based on various factors such as type, working fluid, and application.

  • Classification based on type: Impulse turbines and Reaction turbines

  • Classification based on working fluid: Steam turbines, Gas turbines, and Water turbines

  • Classification based on application: Power generation turbines, Marine turbines, and Aircraft turbines

Q29. Conversion of dimension

Ans.

Conversion of dimension involves changing the unit of measurement from one form to another.

  • Conversion factors are used to convert between different units of measurement.

  • Common conversions include inches to centimeters, feet to meters, and pounds to kilograms.

  • Remember to multiply or divide by the conversion factor to get the correct result.

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

Interview experiences of popular companies

3.7
 • 5.6k Interviews
3.4
 • 788 Interviews
3.6
 • 146 Interviews
3.6
 • 31 Interviews
4.1
 • 28 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

Project Trainee Engineer 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

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