Upload Button Icon Add office photos

Filter interviews by

Clear (1)

FANUC Graduate Engineer Trainee (Get) Interview Questions and Answers

Updated 28 Apr 2022

FANUC Graduate Engineer Trainee (Get) Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Good questions. Basics of engineering and general math aptitude

Round 2 - Group Discussion 

Good group discussion round for 20 mins

Round 3 - Technical 

(1 Question)

  • Q1. An easy interview with questions regarding basic questions to degree

Interview Preparation Tips

Interview preparation tips for other job seekers - Good luck! Work hard and smart

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About Btech project
  • Q2. About automation, plc , robotics
Round 2 - Technical 

(2 Questions)

  • Q1. IOT , electric vehicle
  • Q2. Knowledge gained on course completed

I was interviewed in Aug 2016.

Interview Questionnaire 

3 Questions

  • Q1. Mention the difference between microcontroller and microprocessor?
  • Ans. 

    Microcontroller is a compact computer on a single chip with built-in memory and peripherals, while microprocessor is just a CPU.

    • Microcontroller has on-chip memory and peripherals, while microprocessor requires external memory and peripherals.

    • Microcontroller is used in embedded systems, while microprocessor is used in personal computers.

    • Examples of microcontrollers include Arduino, PIC, and AVR, while examples of microp...

  • Answered by AI
  • Q2. Mention various diodes used in electronic circuits.
  • Ans. 

    Diodes are electronic components that allow current to flow in one direction. Various types of diodes are used in electronic circuits.

    • Rectifier diodes

    • Zener diodes

    • Schottky diodes

    • LEDs

    • Varactor diodes

    • Tunnel diodes

    • Photodiodes

    • PIN diodes

  • Answered by AI
  • Q3. Mention the role of SCR
  • Ans. 

    SCR stands for Silicon Controlled Rectifier. It is a semiconductor device used for power control and switching applications.

    • SCR is used in various applications such as motor control, lighting control, and heating control.

    • It is used in AC power control circuits to regulate the amount of power delivered to a load.

    • SCR is also used in voltage regulators, inverters, and battery chargers.

    • It is a three-terminal device consist...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: This test had 3 sections- Quant,DI and verbal. It was a CAT-type exam but difference was there was time limit of 60-90 seconds for each question.

Tips: Speed and accuracy are important for clearing this test
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Test
Experience: This test contained basic electronics questions.Most of the questions were from 2 nd year sylabbus.
Tips: Be thorough with the basics to ace this test.
Duration: 30 minutes
Total Questions: 30

Round: Technical + HR Interview
Experience: Only 6-7 questions were asked during the interview.All of them were rather simple which involved basic questions.
Tips: Maintain composure during the interview.Dont press the panic button.

Skills: Technical Analysis
College Name: Visvesvaraya National Institute Of Technology

Skills evaluated in this interview

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
Easy
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 4 interview rounds.

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 - Aptitude Test 

Quite easy. Just focus on main topics like time distnce, time work, average, profit loss etc.

Round 3 - Technical 

(2 Questions)

  • Q1. There was total 2 technically rounds(they may increase no of technical interview rounds ). One based on Embedded Domain as I am from ETC background and another from Software domain. Both interviews lasts ...
  • Q2. For Embedded Interview Projects Resume skills Embedded skills like microcontroller, sensors and various communication protocols. Something new technology is preferred. For Software interview C,C++,oops...
Round 4 - HR 

(1 Question)

  • Q1. Thus was my last round. They just asked me about myself, my goals. Thats it. After that they asked me weather in which domain you want to work. And then they just explained me the company working culture, ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Just keep your Resume Strong. And be confident. After all they just check your confidence and learning ability.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Group Discussion 

Topic is role of a mechanical engineer in a industry

Round 2 - Technical 

(2 Questions)

  • Q1. What is bernouillis principle
  • Ans. 

    Bernoulli's principle states that as the speed of a fluid increases, its pressure decreases.

    • States that an increase in the speed of a fluid results in a decrease in pressure

    • Used to explain lift in airplane wings

    • Can be observed in the flow of a river or stream

  • Answered by AI
  • Q2. What are bending moment diagram
  • Ans. 

    Bending moment diagrams show the variation of bending moment along the length of a beam or structure.

    • Bending moment diagrams are used in structural engineering to visualize the internal forces acting on a beam.

    • They help engineers determine where the beam is experiencing tension or compression.

    • The diagram typically shows positive bending moments as sagging and negative bending moments as hogging.

    • The shape of the bending...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

About 1 - 1.5 hours total test duration, One can appear for the between 8 hours window

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

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

Round 1 - Aptitude Test 

2 section one is domain related and other is gamified .

Round 2 - Technical 

(2 Questions)

  • Q1. Projects related questions , internship related.
  • Q2. Core subject related questions
Round 3 - HR 

(1 Question)

  • Q1. About location ,family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare resume and core subjects very well.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

CORE QUSETIONS,GAMIFIED TEST

Round 2 - Technical 

(1 Question)

  • Q1. FROM YOUR RESUME AND FROM YOUR PROJECTS
Round 3 - HR 

(1 Question)

  • Q1. BASIC HR QUESTIONS
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2022. There were 4 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 

Aptitude Tests based on various topics

Round 3 - Technical 

(2 Questions)

  • Q1. All questions were based on Power electronics and Electrical Engineering, as the role demanded those topics for Rolling Stock Division.
  • Q2. What is inverter and its types?
  • Ans. 

    An inverter is a device that converts direct current (DC) to alternating current (AC).

    • Inverters are commonly used in solar power systems to convert DC power from solar panels to AC power for use in homes and businesses.

    • There are three main types of inverters: square wave, modified sine wave, and pure sine wave.

    • Square wave inverters are the simplest and least expensive, but they produce a choppy output waveform that may...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. General HR Questions asked.

Interview Preparation Tips

Topics to prepare for Siemens Graduate Engineer Trainee (Get) interview:
  • Power Electronics
  • inverter
  • Digital Electronics
  • Electronic Components
  • Electrical Maintenance
  • Electrical Machines
Interview preparation tips for other job seekers - Be confident, showcase all possible areas you worked on, and never lie to the employer about anything, if needed keep mum until asked, but don't lie or fake a story.
Contribute & help others!
anonymous
You can choose to be anonymous

FANUC Interview FAQs

How many rounds are there in FANUC Graduate Engineer Trainee (Get) interview?
FANUC interview process usually has 3 rounds. The most common rounds in the FANUC interview process are Group Discussion, Technical and Aptitude Test.

Recently Viewed

INTERVIEWS

Lutron Electronics

No Interviews

INTERVIEWS

OpenXcell Technolabs

5.6k top interview questions

INTERVIEWS

Delta Electronics

No Interviews

INTERVIEWS

FANUC

No Interviews

INTERVIEWS

Delta Electronics

No Interviews

INTERVIEWS

Delta Electronics

No Interviews

INTERVIEWS

Delta Electronics

No Interviews

INTERVIEWS

Alldigi Tech

No Interviews

SALARIES

Lutron Electronics

INTERVIEWS

Sykes Business Services Of India

No Interviews

Tell us how to improve this page.

Fast track your campus placements

View all
FANUC Graduate Engineer Trainee (Get) Salary
based on 5 salaries
₹3.8 L/yr - ₹4 L/yr
6% more than the average Graduate Engineer Trainee (Get) Salary in India
View more details
Assistant Manager
42 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Engineer
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Senior Engineer
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Service Engineer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare FANUC with

Siemens

4.1
Compare

ABB

4.1
Compare

Mitsubishi Electric India

4.2
Compare

Rockwell Automation

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