Upload Button Icon Add office photos

Acme Cleantech Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Acme Cleantech Solutions Graduate Engineer Trainee (Get) Interview Questions and Answers

Updated 8 Jul 2022

Acme Cleantech Solutions Graduate Engineer Trainee (Get) Interview Experiences

2 interviews found

Round 1 - Technical 

(1 Question)

  • Q1. What is peticot of insulator??
  • Ans. 

    A peticot of insulator is a protective covering used to insulate electrical wires or components.

    • A peticot of insulator is also known as an insulating sleeve or insulating tube.

    • It is typically made of materials such as rubber, plastic, or fiberglass.

    • The peticot of insulator is used to prevent electrical current from flowing to unintended areas or causing short circuits.

    • It provides insulation and protection against heat,...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics should be clear and should have good communication skills

I applied via Naukri.com and was interviewed in Aug 2021. 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 - Technical 

(2 Questions)

  • Q1. Basic Electrical Engineering questions like what is power factor, SLD,Trafo,DC /AC, C.B. and Isolator.
  • Q2. What is the definition of Trafo and power transformer and its types and solar pr, Solar use and its working process.
  • Ans. 

    Trafo and power transformers are devices used to transfer electrical energy from one circuit to another. Solar power is a renewable energy source that converts sunlight into electricity.

    • Trafo is a common abbreviation for transformer.

    • Power transformers are used to transfer electrical energy between circuits with different voltage levels.

    • Types of power transformers include step-up transformers, step-down transformers, an...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What is your family background?
  • Q2. Share details of your previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - To find the job as a fresher you should explore the field in which you want to be work in that.
You should start your job from lower grade as an engineer in the current senirio.
In The core branches you should have experience of atleast 1 year to stand as a fresher because there is less hiring for freshers on job portals.

Graduate Engineer Trainee (Get) Interview Questions Asked at Other Companies

asked in JBM Group
Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Diffe ... read more
Q2. How to check for continuity for a wire inside a wall if the start ... read more
Q3. What will be the cost of painting the wall behind me?
Q4. What happen when there is large air void in concrete?
Q5. What are the different types of concrete?

Interview questions from similar companies

I appeared for an interview in Oct 2016.

Interview Preparation Tips

College Name: NIT Kurukshetra

I applied via Naukri.com and was interviewed in Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

13 Questions

  • Q1. They asked me lot of technical questions on java technology and sql
  • Q2. What is oops concepts of java and its type
  • Ans. 

    Java OOPs concepts include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Polymorphism allows objects to take on multiple forms and behave differently based on the context.

    • Encapsulation hides the implementation details of a class and only exposes necessary information.

    • Abstraction focuses on the essential features of an object and...

  • Answered by AI
  • Q3. What is sql aggregation function
  • Ans. 

    SQL aggregation functions perform calculations on multiple rows of a single column of a table.

    • Aggregation functions include COUNT, SUM, AVG, MAX, and MIN.

    • They are used with the SELECT statement to retrieve data from a table.

    • Examples: SELECT COUNT(*) FROM customers; SELECT AVG(price) FROM products;

    • Aggregate functions can also be used with the GROUP BY clause to group data by one or more columns.

  • Answered by AI
  • Q4. What is join and it's types
  • Ans. 

    Join is a SQL operation that combines rows from two or more tables based on a related column between them.

    • Join is used to retrieve data from multiple tables in a single query.

    • Types of join include inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables.

    • Left join returns all the rows from the left table and matching rows from the right table.

    • Right join returns al...

  • Answered by AI
  • Q5. How to write join queries
  • Ans. 

    Join queries are used to combine data from two or more tables based on a related column.

    • Use the JOIN keyword followed by the name of the table you want to join.

    • Specify the columns you want to select from each table.

    • Use the ON keyword to specify the column(s) that the tables should be joined on.

    • There are different types of joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN.

    • Example: SELECT customers.name, orde...

  • Answered by AI
  • Q6. What is sql and how to use
  • Ans. 

    SQL is a programming language used to manage and manipulate relational databases.

    • SQL stands for Structured Query Language

    • It is used to create, modify, and query databases

    • Common commands include SELECT, INSERT, UPDATE, and DELETE

    • Example: SELECT * FROM customers WHERE age > 18;

  • Answered by AI
  • Q7. What is constructor and how to use and explain it
  • Ans. 

    A constructor is a special method used to initialize objects in a class.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object is created.

    • Constructors can take parameters to set initial values.

    • They can be overloaded to provide multiple ways of initializing objects.

  • Answered by AI
  • Q8. What is class and object and different between method overriding and method overloading
  • Ans. 

    Class and object are fundamental concepts in object-oriented programming. Method overloading and method overriding are two ways to achieve polymorphism.

    • A class is a blueprint or template for creating objects that encapsulate data and behavior.

    • An object is an instance of a class that has its own state and behavior.

    • Method overloading is when multiple methods in a class have the same name but different parameters.

    • Method o...

  • Answered by AI
  • Q9. What is exception handling and how to use
  • Ans. 

    Exception handling is the process of handling errors and unexpected events in a program.

    • It involves identifying and anticipating potential errors

    • It provides a mechanism to handle these errors gracefully

    • It helps prevent program crashes and improves user experience

    • Examples include try-catch blocks, throw statements, and finally blocks

  • Answered by AI
  • Q10. What is multithreading and its method like wait method
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently. Wait method is used to pause a thread.

    • Multithreading allows for better utilization of CPU resources

    • Wait method is used to pause a thread until a certain condition is met

    • Other methods like notify and notifyAll can be used to wake up waiting threads

    • Multithreading can improve performance in applications that require parallel processing

    • Java pr...

  • Answered by AI
  • Q11. What is JSP and servlet and explain it
  • Ans. 

    JSP and Servlet are Java technologies used for creating dynamic web pages and handling HTTP requests and responses.

    • JSP stands for JavaServer Pages and is used for creating dynamic web pages that can interact with server-side data and logic.

    • Servlet is a Java program that runs on a web server and handles HTTP requests and responses.

    • JSP and Servlet work together to create dynamic web applications that can generate HTML, p...

  • Answered by AI
  • Q12. What is sql sub query and explain it
  • Ans. 

    SQL subquery is a query within another query used to retrieve data from one or more tables.

    • Subqueries are enclosed in parentheses and placed within the WHERE or HAVING clause of the outer query.

    • They can be used to filter, sort, or aggregate data based on the results of the subquery.

    • Subqueries can also be used in the SELECT statement to retrieve a single value or set of values.

    • Example: SELECT * FROM employees WHERE depa...

  • Answered by AI
  • Q13. What is complex query and how to write
  • Ans. 

    A complex query is a query that involves multiple tables, conditions, and/or functions.

    • Start by identifying the tables involved in the query

    • Determine the conditions that need to be met using WHERE clause

    • Use JOIN to combine tables if necessary

    • Use aggregate functions like COUNT, SUM, AVG, etc. to perform calculations

    • Use subqueries to break down complex queries into smaller parts

    • Test the query and refine as necessary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please you should learn first after that you should give interviews

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2022. There were 4 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 

1.Basic Mathematics with simple tricks (10 th level)
2.solving puzzle
3.Logical reasoning (direction,age,blood relation, seating arrangement)

Round 3 - Group Discussion 

The GD topic is based on the latest issue in and around the world and latest emerging technology.

Round 4 - HR 

(9 Questions)

  • Q1. The first HR question is Tell me about yourself. If your department is unique HR will definitely ask why did you choose this course?
  • Q2. Questions from basic definition
  • Q3. Methods and process related questions
  • Q4. Real time problems and solutions to the industry (difficult level)
  • Ans. 

    Real-time problems in industries include equipment breakdowns, supply chain disruptions, and labor shortages.

    • Equipment breakdowns can be solved by implementing regular maintenance checks and having backup equipment.

    • Supply chain disruptions can be solved by diversifying suppliers and having contingency plans.

    • Labor shortages can be solved by investing in employee training and development programs and offering competitive...

  • Answered by AI
  • Q5. Different between any two (process or methods) based on the course
  • Ans. 

    Different processes used in engineering

    • Two different processes in engineering are welding and soldering

    • Welding involves melting and fusing two pieces of metal together

    • Soldering involves melting a filler metal to join two pieces of metal together

    • Welding is used for heavy-duty applications while soldering is used for electronics

    • Welding requires higher temperatures and more equipment than soldering

  • Answered by AI
  • Q6. Some standard values very important to the subject.(eg: specific gravity of coal)
  • Q7. Questions related to the hiring company
  • Q8. Latest technology in the field of respective course
  • Ans. 

    Artificial Intelligence and Machine Learning are the latest technologies in the field of Computer Science and Engineering.

    • Artificial Intelligence (AI) is the simulation of human intelligence processes by machines, especially computer systems.

    • Machine Learning (ML) is a subset of AI that allows systems to learn and improve from experience without being explicitly programmed.

    • AI and ML are being used in various fields such...

  • Answered by AI
  • Q9. Explain about the project which we have done

Interview Preparation Tips

Topics to prepare for Gmmco Graduate Engineer Trainee (Get) interview:
  • All basic definition
  • Process and methods
  • Real time problems
  • Current affairs
Interview preparation tips for other job seekers - Dear Job seekers,
Don't think about the result before going to the interview,this will stress yourself and reflect in your interview.
Accept whatever you get.
Don't worry about the failure.
Failure is the stepping stone for success.
This is the time to analyse where you have gone wrong take note of it and don't repeat it again.
If you miss the chance means , don't worry your time will come and you will reach your Disney until then you do your HARD &SMART work .
One final request from my side is
DON'T COMPARE YOURSELF WITH OTHERS.EVERYONE HAS UNIQUE TALENT.TRY TO FIND IT AnD YOU WILL DEFINITELY ACHIEVE YOUR GOAL.
Thankyou,
Best wishes.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2023. There were 5 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 

General aptitude questions in a written exam format

Round 3 - Group Discussion 

The impacts of social media in the present generation that is advantage or disadvantage for the society

Round 4 - Technical 

(4 Questions)

  • Q1. Major applications in automotive sector
  • Ans. 

    Major applications in automotive sector include powertrain, chassis, safety, infotainment, and autonomous driving.

    • Powertrain: engines, transmissions, drivetrains

    • Chassis: suspension, steering, brakes

    • Safety: airbags, seat belts, collision avoidance systems

    • Infotainment: audio systems, navigation, connectivity

    • Autonomous driving: sensors, software, control systems

  • Answered by AI
  • Q2. The working principle of IC engine
  • Ans. 

    IC engine works on the principle of internal combustion where fuel is burned inside the engine to produce power.

    • Fuel is mixed with air and ignited inside the engine

    • The explosion pushes the piston which turns the crankshaft

    • The crankshaft converts the linear motion of the piston into rotational motion

    • The rotational motion is used to power the vehicle or machinery

    • Examples include petrol engines, diesel engines, and gas tu

  • Answered by AI
  • Q3. Hands on Experience in the sector
  • Ans. 

    Yes

    • I have hands-on experience in the sector through internships and projects during my engineering studies.

    • During my internship at XYZ Company, I worked on designing and implementing a new manufacturing process for their products.

    • I also completed a project during my final year where I developed a software tool to optimize energy consumption in industrial plants.

    • Additionally, I actively participated in various workshops...

  • Answered by AI
  • Q4. About the final year project
Round 5 - HR 

(3 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a recent graduate with a degree in engineering, seeking a position as a Graduate Engineer Trainee.

    • Recent graduate with a degree in engineering

    • Seeking a position as a Graduate Engineer Trainee

    • Strong problem-solving and analytical skills

    • Experience in working on engineering projects during internships

    • Proficient in technical software and tools

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. Why you need this job
  • Ans. 

    I need this job to kickstart my career as a Graduate Engineer Trainee and gain practical experience in the field.

    • To apply the theoretical knowledge gained during my studies in a practical setting

    • To learn from experienced professionals and enhance my skills

    • To contribute to the growth and success of the company

    • To work on challenging projects and expand my technical expertise

    • To establish a strong foundation for a successf

  • Answered by AI
  • Q3. How you suit for this job
  • Ans. 

    I am well-suited for this job because of my strong technical skills, passion for engineering, and ability to work well in a team.

    • I have a solid foundation in engineering principles and have excelled in my academic coursework.

    • I have completed internships and projects that have allowed me to apply my knowledge in practical settings.

    • I am a quick learner and have a strong ability to adapt to new technologies and processes.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and do your best , All the Best for the interviews

I applied via Campus Placement

Round 1 - Aptitude Test 

Simple questions from English , Aptitude and Maths

Round 2 - Group Discussion 

A 20 minute GD with 10 candidates, with three-panel members observing us

Round 3 - Personal Interview 

(2 Questions)

  • Q1. Three-member panel with each from the Sales, Product, and HR departments.
  • Q2. What subject did you learn in S7 ? and a few questions from one of your mentioned subjects. Are you interested in sales ? are you ready to relocate anywhere within India ?

Interview Preparation Tips

Topics to prepare for Gmmco Graduate Engineer Trainee (Get) interview:
  • I C Engine
  • Diesel Generator
Interview preparation tips for other job seekers - Find what role they are recruiting for and thread your answers in line with that. I was interested in the production side , but they were asking for sales . so I didnt get finalized.

I applied via Campus Placement and was interviewed in Oct 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Tell me about Diesel cycle
  • Ans. 

    Diesel cycle is a thermodynamic cycle used in diesel engines to convert heat into work.

    • Diesel cycle is a compression ignition cycle.

    • It consists of four processes - intake, compression, combustion, and exhaust.

    • Air is compressed in the cylinder, and fuel is injected at the end of compression stroke.

    • The fuel ignites due to high temperature and pressure, and the resulting expansion pushes the piston down.

    • The exhaust gases ...

  • Answered by AI
  • Q2. Poisson's ratio of Aluminium
  • Ans. 

    Poisson's ratio of Aluminium is 0.33

    • Poisson's ratio is the ratio of lateral strain to longitudinal strain

    • It is a material property that describes the deformation behavior of a material

    • Aluminium has a Poisson's ratio of 0.33

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and have a good grip over the basics of thermodynamics.

I applied via Approached by Company and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Are ready to travel?
  • Q2. Why you want to do this job

Interview Preparation Tips

Interview preparation tips for other job seekers - Very bad experience first HR call me share details about job and after my confirmation she schedule interview after 2 3 days with head of department. On the day of interview before 10 min HR called me and said the we hire for another department not for which i told you before so in interview give answer related to that. I prepare for 3 days with full dedication and in interview they ask some basic question like are you able to travel ? why you want to do this job? etc. after that i didnt get any call from them.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy to solve, Basic practice in need.

Round 2 - Technical 

(1 Question)

  • Q1. 1. Pumps and its working 2. Boilers 3. Heat Exchangers
Round 3 - HR 

(2 Questions)

  • Q1. 1. What do you know about the company?
  • Q2. 2. What are the roles offered by forbes marshall..?

Acme Cleantech Solutions Interview FAQs

How many rounds are there in Acme Cleantech Solutions Graduate Engineer Trainee (Get) interview?
Acme Cleantech Solutions interview process usually has 2 rounds. The most common rounds in the Acme Cleantech Solutions interview process are Technical, Resume Shortlist and HR.
What are the top questions asked in Acme Cleantech Solutions Graduate Engineer Trainee (Get) interview?

Some of the top questions asked at the Acme Cleantech Solutions Graduate Engineer Trainee (Get) interview -

  1. What is the definition of Trafo and power transformer and its types and solar p...read more
  2. What is peticot of insulato...read more
  3. Basic Electrical Engineering questions like what is power factor, SLD,Trafo,DC ...read more

Tell us how to improve this page.

Acme Cleantech Solutions Graduate Engineer Trainee (Get) Salary
based on 11 salaries
₹1.7 L/yr - ₹3 L/yr
40% less than the average Graduate Engineer Trainee (Get) Salary in India
View more details

Acme Cleantech Solutions Graduate Engineer Trainee (Get) Reviews and Ratings

based on 8 reviews

3.7/5

Rating in categories

3.1

Skill development

3.9

Work-life balance

3.9

Salary

3.7

Job security

3.0

Company culture

3.7

Promotions

3.6

Work satisfaction

Explore 8 Reviews and Ratings
Assistant Manager
146 salaries
unlock blur

₹4.8 L/yr - ₹14.5 L/yr

Electrical Engineer
123 salaries
unlock blur

₹2.2 L/yr - ₹7 L/yr

Senior Engineer
94 salaries
unlock blur

₹3.6 L/yr - ₹12 L/yr

Deputy Manager
74 salaries
unlock blur

₹7.7 L/yr - ₹18.7 L/yr

Engineer
49 salaries
unlock blur

₹2.2 L/yr - ₹5.4 L/yr

Explore more salaries
Compare Acme Cleantech Solutions with

Sigma Electric Manufacturing Corporation

4.0
Compare

TÜV SÜD

3.9
Compare

TKIL

4.2
Compare

Ceasefire Industries

3.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview