Upload Button Icon Add office photos

Filter interviews by

Omron Automation Interview Questions and Answers

Updated 3 Oct 2024

Omron Automation Interview Experiences

Popular Designations

4 interviews found

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

Graduate Engineer Trainee (Get) Interview Questions asked at other Companies

Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Difference between Otto cycle and Diesel cycle? What is the process of both cycle and what is the effeciency of both cycle ? Which one is good in effeciency? Q:3 Difference between... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell me About yourself
  • Ans. 

    Experienced Senior Engineer with a strong background in software development and project management.

    • Over 10 years of experience in software engineering

    • Expertise in project management and leading cross-functional teams

    • Proficient in multiple programming languages such as Java, Python, and C++

    • Strong problem-solving skills and ability to deliver high-quality solutions under tight deadlines

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Tell me about your career path
  • Ans. 

    I started my career as a junior engineer at a tech startup, where I gained hands-on experience in software development. I then moved on to larger companies, taking on more challenging projects and eventually reaching a senior engineer position.

    • Started as junior engineer at tech startup

    • Gained hands-on experience in software development

    • Moved on to larger companies for more challenging projects

    • Progressed to senior enginee

  • Answered by AI

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (62)

I applied via Walk-in and was interviewed in May 2022. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is current current kya hai
  • Ans. 

    Current is the flow of electric charge in a circuit.

    • Current is measured in amperes (A).

    • It is caused by the movement of electrons or other charged particles.

    • Current can be either direct current (DC) or alternating current (AC).

    • In a DC circuit, current flows in one direction only, while in an AC circuit, it periodically changes direction.

    • Current is essential for the operation of electrical devices and is controlled by re

  • Answered by AI
  • Q2. What is amp amp kya hai
  • Ans. 

    An amp is a unit of electric current measurement in the International System of Units (SI).

    • Amp is short for ampere, named after the French physicist André-Marie Ampère.

    • It is used to measure the flow of electric charge in a circuit.

    • One ampere is defined as the amount of current that flows through a conductor when a potential difference of one volt is applied across it.

    • Amps are commonly used to rate the capacity of elect...

  • Answered by AI
  • Q3. What is om.. om kya hai
  • Ans. Moter ke waiding ko om se dekha jata hai
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Omron Automation Senior Electrician interview:
  • Electrical Works
  • Steel Plant
  • Crene maintenance
  • Panel Wiring
Interview preparation tips for other job seekers - Jiska jitna kwalification usko utna hi sawal jawab kare

Senior Electrician Interview Questions asked at other Companies

Q1. What is calibration is the process of configuring an instrument to provide a result for a sample within an acceptable range
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2022. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. FA Products known and previous experience
  • Ans. 

    I have experience with various FA products such as oscilloscopes, spectrum analyzers, and power supplies.

    • Experience with oscilloscopes

    • Knowledge of spectrum analyzers

    • Familiarity with power supplies

  • Answered by AI
  • Q2. TL will conduct interview from corresponding batch
Round 2 - HR 

(3 Questions)

  • Q1. Final around with Hr
  • Q2. Expected package
  • Q3. Reason to leave past company

Interview Preparation Tips

Interview preparation tips for other job seekers - Expecting hands on experience on all FA products and flexible person interested in learning.

Applications Engineer Interview Questions asked at other Companies

Q1. Minimum Special Sum Problem You are given an array ARR of length N. There are two operations defined for each index i in the array: FIRST_SUM(i): Calculates the sum of the first i numbers. LAST_SUM(i): Calculates the sum of the last N-i+1 ... read more
View answer (1)

Omron Automation interview questions for popular designations

 Senior Engineer

 (1)

 Applications Engineer

 (1)

 Graduate Engineer Trainee (Get)

 (1)

 Senior Electrician

 (1)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Core java advanced
  • Q2. Threads, Collections, Design pattern, Programming Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong Core Java Knowledge
Basic Data Structure Knowledge

Interview Questionnaire 

1 Question

  • Q1. All technical questions raised

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

It was in the morning at our institute. There were technical and aptitude problems.

  • Q1. 

    Star Pattern Generation

    Develop a function to print star patterns based on the given number of rows 'N'. Each row in the pattern should follow the format demonstrated in the example.

    The picture illustra...

  • Ans. 

    Function to print star patterns based on the given number of rows 'N'.

    • Iterate through each row from 1 to N

    • For each row, print spaces (N-row) followed by stars (2*row-1)

    • Repeat until all rows are printed

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

It was actually a Techno HR round. I was asked some technical questions about OS, OOPS, COMPUTER NETWORKING, WEB DEVELOPMENT. He went through my whole resume, asked about all the projects and past working experiences. The interviewer was really good, we talked about so many other topics, from Women empowerment to Water Crises. I felt really confident while speaking because he made me so comfortable.

  • Q1. 

    Selection Sort Algorithm

    Selection sort is a sorting technique that works by repeatedly finding the minimum element (considering ascending order) from the unsorted part and placing it at the beginning of ...

  • Ans. 

    Selection Sort Algorithm sorts an array by repeatedly finding the minimum element and placing it at the beginning of the unsorted part.

    • Iterate through the array to find the minimum element and swap it with the first unsorted element.

    • Repeat this process for each element in the array until it is fully sorted.

    • Time complexity of Selection Sort is O(n^2) making it inefficient for large arrays.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from MKSSS's Cummins College of Engineering For Women, Pune. I applied for the job as SDE - 1 in BangaloreEligibility criteriaAbove 7 CGPADell India interview preparation:Topics to prepare for the interview - Data structures and Algorithms, DBMS, OOPS, OS, NETWORKING, WEB DEVELOPMENTTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Study data structures thoroughly and practice coding regularly. Do practice it on Leetcode as it has a lot of test cases, I personally find it really helpful. 
Tip 2 : Learn new skills and make projects with them to get the most out of them. 
Tip 3 : Do study other basic and very important subjects like Oops, DBMS, OS.

Application resume tips for other job seekers

Tip 1 : Do mention your achievements and other co curricular activities. 
Tip 2 : Your projects are a big highlight, keep them crisp and be prepared to explain them thoroughly.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2021. There were 4 interview rounds.

Round 1 - Coding Test 

2 coding questions (1 DP + 1 Graph)

Round 2 - One-on-one 

(1 Question)

  • Q1. Leetcode easy, medium questions on tree, dp
Round 3 - One-on-one 

(2 Questions)

  • Q1. 1 coding question on string (hard).
  • Q2. OS, DBMS, OOPs questions
Round 4 - HR 

(1 Question)

  • Q1. Usual HR questions + 2 puzzles question

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to have clear understanding of Computer Science subjects OS, DBMS, OOPs

I appeared for an interview in Aug 2016.

Interview Questionnaire 

2 Questions

  • Q1. Questions related to my project, questions on binary tree, questions from OS (like paging and scheduling). Interviewer also asked about competitive coding
  • Q2. Formal questions regarding my background, family members etc

Interview Preparation Tips

Round: Test
Duration: 1 hour

Skills: General Coding And Problem Solving, Puzzle Solving Capability
College Name: NIT Jamshedpur

Interview Questionnaire 

1 Question

  • Q1. What do you know about our company and why do you join it ?
  • Ans. 

    I know that your company is a leading provider of innovative sales solutions in the industry. I am joining because of your strong reputation and commitment to excellence.

    • Your company has a proven track record of success in delivering top-notch sales solutions.

    • I am impressed by the innovative approach your company takes in the sales industry.

    • Your company's commitment to excellence and customer satisfaction aligns with m...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: I was told to tell me about my self. They checked my communication skills and my confidence level.
Tips: Be confident in this round about your self. And represent yourself in good professional way.

Round: HR Interview
Experience: In this round they were checking our knowledge and our homework that what we knew about them and their products. They were also checking that are we ready for learning and do we have potential or not.
Tips: Don't show that you know everything. Just talk point to point. So much Pre-requisite knowledge can be bad for you.

College Name: Galgotias University

Omron Automation Interview FAQs

How many rounds are there in Omron Automation interview?
Omron Automation interview process usually has 2 rounds. The most common rounds in the Omron Automation interview process are Technical, HR and Resume Shortlist.
How to prepare for Omron Automation interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Omron Automation. The most common topics and skills that interviewers at Omron Automation expect are SCADA, OMRON, SAN, Healthcare and Agile.
What are the top questions asked in Omron Automation interview?

Some of the top questions asked at the Omron Automation interview -

  1. What is amp amp kya ...read more
  2. FA Products known and previous experie...read more
  3. What is om.. om kya ...read more

Tell us how to improve this page.

Omron Automation Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

Dell Interview Questions
3.9
 • 391 Interviews
HARMAN Interview Questions
3.7
 • 266 Interviews
OPPO Interview Questions
4.0
 • 217 Interviews
LG Electronics Interview Questions
4.0
 • 204 Interviews
Vivo Interview Questions
4.1
 • 199 Interviews
Philips Interview Questions
3.8
 • 159 Interviews
Daikin Interview Questions
4.1
 • 153 Interviews
Apple Interview Questions
4.3
 • 140 Interviews
Voltas Interview Questions
4.0
 • 132 Interviews
View all

Omron Automation Reviews and Ratings

based on 70 reviews

3.9/5

Rating in categories

3.4

Skill development

4.1

Work-life balance

3.8

Salary

4.0

Job security

3.8

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 70 Reviews and Ratings
Assistant Manager
47 salaries
unlock blur

₹10.6 L/yr - ₹21 L/yr

Senior Application Engineer
23 salaries
unlock blur

₹7.5 L/yr - ₹16.5 L/yr

Senior Sales Engineer
22 salaries
unlock blur

₹8 L/yr - ₹13.6 L/yr

Assistant Sales Manager
20 salaries
unlock blur

₹11.5 L/yr - ₹19.5 L/yr

Senior Engineer
15 salaries
unlock blur

₹6.5 L/yr - ₹15 L/yr

Explore more salaries
Compare Omron Automation with

Dell

3.9
Compare

HARMAN

3.7
Compare

Godrej & Boyce Manufacturing

3.9
Compare

Vivo

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