Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Voltech Team. If you also belong to the team, you can get access from here

Voltech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Voltech Engineer Trainee Interview Questions and Answers

Updated 10 Feb 2024

Voltech Engineer Trainee Interview Experiences

2 interviews found

Engineer Trainee Interview Questions & Answers

user image Mani Sagar (Mani)

posted on 3 Oct 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Basics of electrical engineering
Round 3 - HR 

(1 Question)

  • Q1. About family and willing to travel pan India wide
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 Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready to explain your academic and career background
Basic Understanding Power system and software associated with it

Engineer Trainee Interview Questions Asked at Other Companies

Q1. If 10 people had a meeting and they shake hands only once with ea ... read more
asked in Siemens
Q2. Puzzle - A drawer contains 10 pairs each of red and blue socks. W ... read more
asked in Sobha
Q3. Shear force diagram and bending moment diagram for combination of ... read more
Q4. Explain stress and strain curve; Different Modulus eg young,bulk ... read more
asked in AVASOFT
Q5. What is logic of amstrong number say its coding logic

Interview questions from similar companies

I was interviewed in Nov 2016.

Interview Questionnaire 

1 Question

  • Q1. 1.Difference between the cloud computing and grid computing 2.Differnece between IAAS and SAAS. 3. To write java app components on the project that I had done. Some questions on SQL and HTML
  • Ans. 

    Cloud computing is a network of remote servers hosted on the internet to store, manage, and process data, while grid computing is a distributed computing model that relies on a network of computers to work together on a task.

    • Cloud computing provides on-demand access to a shared pool of configurable computing resources, while grid computing involves the coordination of disparate resources to solve a complex problem.

    • In c...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It's an one and half hour test with 30 quant, 30 logical and 30 questions on English grammar
Duration: 1 hour 30 minutes
Total Questions: 90

Round: Technical Interview
Experience: They ask you to introduce yourself. Once you have explained the projects you have done, they ask some questions related to it. They check the depth of understanding on the project with some similar related technologies that can be used with the project.
Tips: To have complete understanding of the project you mention with some related technologies that can be used with your project.

College Name: RV College Of Engineering, Bangalore

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Gate level questions

Round 2 - Group Discussion 

Recently all topics covered about the technology

Round 3 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Family background
Round 4 - Technical 

(2 Questions)

  • Q1. Beee all questions
  • Q2. Specific designation related questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. College project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest

I applied via Recruitment Consulltant and was interviewed in Feb 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Types of cooling towers
  • Ans. 

    Cooling towers are used to remove heat from a process by evaporating water.

    • Natural draft cooling towers

    • Mechanical draft cooling towers

    • Crossflow cooling towers

    • Counterflow cooling towers

  • Answered by AI
  • Q2. There types of cooling towers 1. Natural draught cooling tower 2. Forced draught cooling tower 3. Induced draught cooling tower
  • Ans. 

    There are three types of cooling towers: natural draught, forced draught, and induced draught.

    • Natural draught cooling towers use the natural convection of air to cool water.

    • Forced draught cooling towers use fans to force air through the tower.

    • Induced draught cooling towers use fans to draw air through the tower.

    • The choice of cooling tower type depends on factors such as the size of the plant, the cooling requirements, ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have need a job I'm mechanical diploma holder
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 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 Resume tips
Round 2 - Aptitude Test 

After the resume screening, the shortlisted candidates were sent a link to the test which was scheduled a few days later. The test had 2 sections - Technical and Aptitude MCQs, and a Coding section.

Round 3 - Coding Test 

The Coding test had 2 easy-medium level questions. They were fairly easy to complete, and I successfully passed all test-cases.

Round 4 - Technical 

(9 Questions)

  • Q1. Tell me about any of the projects on your resume.
  • Q2. Explain the working of Bubble Sort (I had to pen down the pseudo-code, but others were asked to write the code as well).
  • Q3. Explain the working of Insertion Sort.
  • Ans. 

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

    • Start from the second element and compare it with the previous elements to find its correct position in the sorted array.

    • Repeat this process for all elements in the array.

    • Example: Given array of strings ['banana', 'apple', 'orange'], after insertion sort it becomes ['apple', 'banana', 'orange'].

  • Answered by AI
  • Q4. How would you find the maximum and second-maximum numbers in an array? (Pseudo-code)
  • Ans. 

    Use a loop to iterate through the array and keep track of the maximum and second-maximum numbers.

    • Initialize two variables to store the maximum and second-maximum numbers.

    • Iterate through the array and update the variables accordingly.

    • Handle edge cases like when the array has less than two elements.

  • Answered by AI
  • Q5. Write the query to execute a left-join on two tables - I was shown a database with a few tables defined.
  • Q6. What do you understand by the phrase 'pass-by-value'?
  • Ans. 

    Pass-by-value is a method of passing arguments to a function where the actual value of the argument is copied to a new variable.

    • In pass-by-value, a copy of the actual value of the argument is passed to the function.

    • Any changes made to the parameter inside the function do not affect the original value outside the function.

    • Primitive data types like integers, floats, and characters are typically passed by value.

    • Example: i...

  • Answered by AI
  • Q7. If you're given two CSV files, containing 2 columns each, how would you merge the two files using Python?
  • Ans. 

    To merge two CSV files with 2 columns each in Python, use the pandas library.

    • Import the pandas library

    • Read the two CSV files into pandas DataFrames

    • Merge the DataFrames using a common column as the key

    • Save the merged DataFrame to a new CSV file

  • Answered by AI
  • Q8. Puzzle - A drawer contains 10 pairs each of red and blue socks. What is the minimum number of socks that should be picked to obtain at least 1 rightly colored pair?
  • Ans. 3, since there are only 2 colors of socks.
  • Answered Anonymously
  • Q9. Problem Solving - How would you reduce the vehicle congestion at a junction?
  • Ans. 

    To reduce vehicle congestion at a junction, implement traffic signal optimization, encourage public transportation, and create dedicated lanes for buses and bicycles.

    • Implement traffic signal optimization to improve traffic flow and reduce wait times.

    • Encourage the use of public transportation by providing incentives such as discounted fares or improved services.

    • Create dedicated lanes for buses and bicycles to reduce the...

  • Answered by AI
Round 5 - HR 

(3 Questions)

  • Q1. What is your short-term plan in life?
  • Q2. Reasons, if any, for the change in grades from high-school to university. (I went from a 95 aggregate in high-school, to a 85 aggregate in university)
  • Q3. What is your preferred location and how would you adjust if you did not receive your preferred location?

Interview Preparation Tips

Topics to prepare for Siemens Engineer Trainee interview:
  • Data Structures and Algorithms
  • OOPS
Interview preparation tips for other job seekers - Prepare for algorithms along with their code/pseudocode as well, and pray for a bit of luck with your interview panel :)

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 before Oct 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Aptitude Test 

It was average yet time crunch was there

Round 3 - Technical 

(2 Questions)

  • Q1. Fairly average, easy even at sime points
  • Q2. Where do you internshiped tell me about yourself
Round 4 - One-on-one 

(2 Questions)

  • Q1. Technical questions regarding transformers
  • Q2. Tell me about stand alone systems
  • Ans. 

    Stand alone systems are independent systems that operate without the need for external connections or dependencies.

    • Stand alone systems do not require internet connectivity to function

    • They are self-sufficient and can operate independently

    • Examples include standalone computers, calculators, and offline software applications

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Will you be able to give your time

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basically first they ask you 30 MCQ questions on your technical part then you will have to face gamified aptitude there lots of sections are there like verbal, reasoning, soduko, memory game, puzzle, psychometric etc.

Round 2 - Technical 

(2 Questions)

  • Q1. What do you learn during your vacation training
  • Ans. 

    During my vacation training, I learned practical skills, gained industry knowledge, improved communication and teamwork abilities, and developed problem-solving skills.

    • Practical skills related to the specific field of engineering

    • Industry knowledge about current trends, technologies, and best practices

    • Improved communication and teamwork abilities through working with colleagues and supervisors

    • Developed problem-solving s...

  • Answered by AI
  • Q2. Types of DC machine
  • Ans. 

    DC machines are classified into two main types: DC generator and DC motor.

    • DC Generator: Converts mechanical energy into electrical energy

    • DC Motor: Converts electrical energy into mechanical energy

    • Examples: Separately excited DC generator, series-wound DC motor, shunt-wound DC motor

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What are your hobbies and why

Interview Preparation Tips

Interview preparation tips for other job seekers - Remember to be keep your mind cool during the first aptitude round as it can confuse you in many ways. Practice cocubes questions on youtube
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

30 minute 30 questions including verbal and quantitative aptitude

Round 2 - Technical 

(1 Question)

  • Q1. Basic level technical questions related to mechanical engineering
Round 3 - One-on-one 

(1 Question)

  • Q1. General level questions regarding topics in the resume
Round 4 - HR 

(1 Question)

  • Q1. What is the location you are willing to join
Contribute & help others!
anonymous
You can choose to be anonymous

Voltech Interview FAQs

How many rounds are there in Voltech Engineer Trainee interview?
Voltech interview process usually has 2 rounds. The most common rounds in the Voltech interview process are Technical, Resume Shortlist and HR.

Recently Viewed

INTERVIEWS

Voltech

No Interviews

JOBS

Browse jobs

Discover jobs you love

INTERVIEWS

TVS Motor

No Interviews

SALARIES

NXP Semiconductors

SALARIES

Tata Asset Management Private Limited

INTERVIEWS

Voltech

No Interviews

INTERVIEWS

Snipe Engineers

No Interviews

INTERVIEWS

Hero MotoCorp

No Interviews

DESIGNATION

SALARIES

SBI Mutual Fund

Tell us how to improve this page.

Voltech Engineer Trainee Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
Voltech Engineer Trainee Salary
based on 4 salaries
₹1.8 L/yr - ₹2.1 L/yr
33% less than the average Engineer Trainee Salary in India
View more details

Voltech Engineer Trainee Reviews and Ratings

based on 3 reviews

3.8/5

Rating in categories

2.0

Skill development

1.9

Work-life balance

2.8

Salary

3.8

Job security

3.7

Company culture

3.7

Promotions

3.7

Work satisfaction

Explore 3 Reviews and Ratings
Testing & Commissioning Engineer
186 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Electrical Testing Commissioning Engineer
109 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Testing Commissioning Engineer
79 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
65 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Commissioning Engineer
54 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Voltech with

BGR Energy Systems

3.8
Compare

Kirloskar Electric Company

3.5
Compare

Crompton Greaves Consumer Electricals

3.8
Compare

ABB

4.1
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