Upload Button Icon Add office photos

Rockwell Automation

Compare button icon Compare button icon Compare

Filter interviews by

Rockwell Automation Automation Test Engineer Interview Questions and Answers for Experienced

Updated 14 Sep 2023

Rockwell Automation Automation Test Engineer Interview Experiences for Experienced

1 interview found

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

I applied via Naukri.com and was interviewed before Sep 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 - One-on-one 

(2 Questions)

  • Q1. Java program to write on
  • Ans. 

    Java program to write on

    • Use FileWriter class to write to a file in Java

    • Create a new FileWriter object and use its write() method to write to the file

    • Remember to close the FileWriter object after writing is done

  • Answered by AI
  • Q2. No . . N. N.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was aptitude and technical MCQ questions round

Round 2 - Technical 

(2 Questions)

  • Q1. Technical interview- regarding skills mentioned in resume and projects
  • Q2. In same round hr interview was done

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well what you mentioned in resume.

I applied via Recruitment Consulltant and was interviewed in May 2022. 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 

(3 Questions)

  • Q1. Details of OoPs concept.
  • Q2. Write a program using OoPs concept
  • Ans. 

    Program using OOPs concept

    • Identify the objects and their properties

    • Create classes and define their methods

    • Use inheritance and polymorphism

    • Encapsulate data and use access modifiers

    • Example: A program to simulate a bank account

  • Answered by AI
  • Q3. How do code review in your project
  • Ans. 

    Code reviews are conducted regularly to ensure code quality and adherence to coding standards.

    • Code reviews are conducted by peers or senior developers.

    • Reviewers check for code quality, readability, maintainability, and adherence to coding standards.

    • Issues found during code review are documented and addressed by the developer.

    • Code reviews are conducted regularly, either before merging code or on a scheduled basis.

    • Tools ...

  • Answered by AI
Round 3 - Coding Test 

One programming challange just to see how good you use OOPs

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on coding practice using oops so that you can beat coding round.not focused on logic more but the way u use oops

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Nov 2022. 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 

(3 Questions)

  • Q1. Introduction about your work and Tech work
  • Ans. 

    I have been working as a Software Engineer for the past 5 years, specializing in developing web applications using Java and JavaScript.

    • Proficient in Java and JavaScript

    • Experience in developing web applications

    • Strong understanding of software development principles

    • Familiarity with agile methodologies

    • Knowledge of database management systems

    • Experience with version control systems like Git

    • Ability to work in a team and comm

  • Answered by AI
  • Q2. All Details of OOPs concepts
  • Q3. Write a code by using OOPs technology result doesn't matter approach will be considered
Round 3 - Coding Test 

Coding Round two questions with OOPs concepts

Interview Preparation Tips

Topics to prepare for Emerson Electric Co. Software Engineer interview:
  • OOPS
Interview preparation tips for other job seekers - Be confident
Be Genuine
Write code by separating UI with Logic using OOPs

I was interviewed in Aug 2017.

Interview Questionnaire 

4 Questions

  • Q1. Difference between c and java?
  • Ans. 

    C is a procedural programming language while Java is an object-oriented programming language.

    • C is a low-level language while Java is a high-level language.

    • C requires manual memory management while Java has automatic memory management.

    • C is platform-dependent while Java is platform-independent.

    • C supports pointers while Java does not.

    • C has a simpler syntax compared to Java.

  • Answered by AI
  • Q2. Difference between final, finally and finalize
  • Ans. 

    final, finally, and finalize are keywords in Java with different meanings.

    • final is a keyword used to declare a constant value, a variable that cannot be modified.

    • finally is a block used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not.

    • finalize is a method in the Object class that is called by the garbage collector before an object is destroyed.

    • final and finally a...

  • Answered by AI
  • Q3. About yourself
  • Q4. Why Johnson
  • Ans. 

    Johnson is a reputable company known for its innovative software solutions and collaborative work environment.

    • Johnson has a strong reputation in the industry for delivering high-quality software solutions.

    • The company values collaboration and teamwork, which aligns with my own work style.

    • I admire Johnson's commitment to innovation and staying ahead of technological advancements.

  • Answered by AI

Interview Preparation Tips

Round: Apptitude Test
Experience: Questions was unpredictable as it was from reasoning,verbal , and from general knowledge also.Technical questions was also there.
Tips: Technical question was not that hard. Just have good basic knowledge of programming and DBMS

Round: Technical Interview
Experience: It was from basic concepts only.

Round: HR Interview
Experience: There were 12 HRs to take my interview but asked mainly from CV only.

Tips: Be calm and confident and learn the basic of subjects

College Name: BPPIMT

Skills evaluated in this interview

Interview Preparation Tips

Round: Resume Shortlist
Experience: General resume shortlisting out of nearly 400 applicants. Shortlisted close to 150 students.

Round: Technical Interview
Experience: Mostly questions from the resume were asked. They just wanted to know the types of projects I had done.
Tips: Make sure you know everything about what you write in your resume.

Round: Technical Interview
Experience: Another round of technical interview. Questions were more focused on the kind of profile they were offering, mostly to judge whether you are right for the job or not.

Skills: Confidence, Core knowledge
College Name: IIT BOMBAY

Interview Questionnaire 

1 Question

  • Q1. Prepare python data structures and python basics

I applied via Naukri.com and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Scenario based to be solved with python

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the core concepts very well.

I applied via Naukri.com and was interviewed before Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Implement stack data structure
  • Ans. 

    Implement stack data structure

    • Use an array or linked list to store elements

    • Push operation adds element to top of stack

    • Pop operation removes element from top of stack

    • Peek operation returns top element without removing it

  • Answered by AI
  • Q2. How global variable work , how its shared by all function
  • Ans. 

    Global variables are accessible from any part of the program and can be modified by any function.

    • Global variables are declared outside of any function.

    • They can be accessed and modified by any function in the program.

    • If a function modifies the value of a global variable, the new value is visible to all other functions.

    • Global variables can be useful for sharing data between functions.

    • However, overuse of global variables

  • Answered by AI
  • Q3. Program to transpose the matrix
  • Ans. 

    Program to transpose a matrix

    • Iterate through rows and columns of the matrix

    • Swap the elements at (i,j) and (j,i) positions

    • Return the transposed matrix

  • Answered by AI
  • Q4. Internal implementation of pre and post fix operator
  • Ans. 

    Pre and post fix operators are used to increment or decrement a value before or after it is used in an expression.

    • Pre-fix operator (++x) increments the value of x and returns the new value.

    • Post-fix operator (x++) returns the value of x and then increments it.

    • Both operators can be used with variables of numeric data types.

    • They can also be used with pointers to increment or decrement the memory address they point to.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare some standard problem from geekforgeeks.com

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Simple question as per 4 year of experience
  • Q2. Same question asked by interviewer
  • Q3. Too much tried for negotiation and not gave expected compansession

Rockwell Automation Interview FAQs

How many rounds are there in Rockwell Automation Automation Test Engineer interview for experienced candidates?
Rockwell Automation interview process for experienced candidates usually has 2 rounds. The most common rounds in the Rockwell Automation interview process for experienced candidates are Resume Shortlist and One-on-one Round.
How to prepare for Rockwell Automation Automation Test Engineer interview for experienced candidates?
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 Rockwell Automation. The most common topics and skills that interviewers at Rockwell Automation expect are Coding, NUnit, Agile, Automation and Javascript.
What are the top questions asked in Rockwell Automation Automation Test Engineer interview for experienced candidates?

Some of the top questions asked at the Rockwell Automation Automation Test Engineer interview for experienced candidates -

  1. Java program to write...read more
  2. No . . N....read more

Tell us how to improve this page.

Rockwell Automation Automation Test Engineer Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 418 Interviews
Johnson Controls Interview Questions
3.6
 • 262 Interviews
ABB Interview Questions
4.1
 • 235 Interviews
BHEL Interview Questions
4.1
 • 113 Interviews
Falcon Autotech Interview Questions
3.9
 • 44 Interviews
View all
Rockwell Automation Automation Test Engineer Salary
based on 5 salaries
₹6.5 L/yr - ₹26 L/yr
112% more than the average Automation Test Engineer Salary in India
View more details
Project Engineer
624 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
177 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Process Analyst
130 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Project Engineer
122 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
110 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Rockwell Automation with

Siemens

4.1
Compare

ABB

4.1
Compare

Schneider Electric

4.1
Compare

Honeywell Automation

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