Upload Button Icon Add office photos

Filter interviews by

Vission Automation Automation Service Engineer Interview Questions and Answers

Updated 18 Jan 2018

Vission Automation Automation Service Engineer Interview Experiences

1 interview found

Interview Questionnaire 

3 Questions

  • Q1. How much experience did you have in automation line ?
  • Ans. 

    I have 5 years of experience in automation line, specializing in PLC programming and troubleshooting.

    • 5 years of experience in automation line

    • Specialize in PLC programming and troubleshooting

  • Answered by AI
  • Q2. Did you handled the site independently ?
  • Ans. 

    Yes, I have handled the site independently.

    • I have successfully managed and supervised various sites on my own.

    • I have taken full responsibility for site operations, including troubleshooting and resolving issues.

    • I have effectively communicated with clients and stakeholders to ensure smooth project execution.

    • I have provided technical support and guidance to on-site teams.

    • I have implemented automation solutions independen...

  • Answered by AI
  • Q3. Did you know the following software information ?
  • Ans. 

    NO

    • Answered by AI

    Interview questions from similar companies

    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    Selected Selected

    I was interviewed in Dec 2024.

    Round 1 - Technical 

    (5 Questions)

    • Q1. Current Project
    • Ans. 

      Currently working on developing automated test scripts for a web application

      • Creating test cases using Selenium WebDriver

      • Implementing test automation frameworks like TestNG

      • Performing regression testing on new features

      • Collaborating with developers to identify and fix bugs

    • Answered by AI
    • Q2. Framework Structure
    • Q3. Code for sorting an array
    • Ans. 

      Code for sorting an array of strings

      • Use built-in sort function in programming language (e.g. sort() in Python)

      • Specify the comparison function to sort strings alphabetically

      • Handle uppercase and lowercase letters properly

      • Example: ['apple', 'banana', 'cherry'] should be sorted as ['apple', 'banana', 'cherry']

    • Answered by AI
    • Q4. Create Xpath
    • Ans. 

      Creating Xpath for locating elements in web pages

      • Use unique attributes like id, class, name to create Xpath

      • Avoid using indexes in Xpath as they can be brittle

      • Use functions like contains(), starts-with() for dynamic attributes

      • Consider using axes like ancestor, following-sibling for complex Xpath

    • Answered by AI
    • Q5. Few Appium related questions
    Round 2 - One-on-one 

    (2 Questions)

    • Q1. Few scenario based questions
    • Q2. Why GlobalLogic
    • Ans. 

      GlobalLogic offers a diverse range of projects, cutting-edge technologies, and a collaborative work environment.

      • GlobalLogic provides opportunities to work on a variety of projects, allowing for professional growth and skill development.

      • The company is known for its use of cutting-edge technologies, providing exposure to the latest tools and trends in the industry.

      • GlobalLogic fosters a collaborative work environment, enc...

    • Answered by AI
    Round 3 - Technical 

    (1 Question)

    • Q1. Project related questions
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    -

    I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

    Round 1 - Technical 

    (7 Questions)

    • Q1. Briefing about yourself
    • Q2. Explain Defect life cycle
    • Ans. 

      Defect life cycle is the process of identifying, reporting, fixing, retesting, and closing defects in software development.

      • Defect identification: Defects are identified through testing or user feedback.

      • Defect reporting: Defects are reported in a defect tracking tool with details like steps to reproduce, severity, and priority.

      • Defect fixing: Developers fix the reported defects based on the information provided.

      • Defect re...

    • Answered by AI
    • Q3. Difference between black box and white box testing
    • Ans. 

      Black box testing focuses on functionality without knowledge of internal code, while white box testing examines internal code structure.

      • Black box testing tests the functionality of a system without knowledge of its internal code

      • White box testing tests the internal code structure and logic of a system

      • Black box testing is more focused on end-user perspective

      • White box testing is more focused on developer perspective

      • Exampl...

    • Answered by AI
    • Q4. Difference between hard assert and soft assert
    • Ans. 

      Hard assert stops the execution of the test case if it fails, while soft assert continues the execution and logs the failure.

      • Hard assert is used when the failure of a particular step makes the further steps irrelevant.

      • Soft assert is used when you want to continue with the test case execution even if some steps fail.

      • Hard assert is implemented using 'assert' keyword in testing frameworks like TestNG or JUnit.

      • Soft assert ...

    • Answered by AI
    • Q5. What are the various annotations in selenium webdriver
    • Ans. 

      Annotations in Selenium WebDriver are used to provide additional information about the test methods.

      • Annotations help in organizing and managing test cases

      • Some common annotations in Selenium WebDriver are @Test, @BeforeTest, @AfterTest, @BeforeClass, @AfterClass, @BeforeMethod, @AfterMethod

      • Annotations are used to define the sequence of execution of test methods

    • Answered by AI
    • Q6. There are n no. Of links having the text selenium. Write the syntax to count the text selenium from all the links
    • Ans. 

      Use XPath to count the number of links with the text 'selenium'

      • Use XPath to locate all the links containing the text 'selenium'

      • Count the number of links found using the XPath expression

    • Answered by AI
    • Q7. There is a table of students having column status with either pass or fail. Write the syntax to show the output as some 60 pass and 40 fail.
    • Ans. 

      Use SQL query to display 60 pass and 40 fail from a table of students.

      • Use SELECT statement with COUNT function to count the number of pass and fail statuses.

      • Use WHERE clause to filter out pass and fail statuses.

      • Use GROUP BY clause to group the statuses together.

      • Use CASE statement to display the count of pass and fail statuses.

    • Answered by AI

    Skills evaluated in this interview

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

    I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

    Round 1 - Technical 

    (3 Questions)

    • Q1. Write a program to print how many integer and character from a given string. Input:"nAJh4837sj"
    • Ans. 

      A program to count the number of integers and characters in a given string.

      • Iterate through each character in the string and check if it is an integer or a character.

      • Use isdigit() function to check if a character is an integer.

      • Keep separate counters for integers and characters.

      • Return the counts of integers and characters at the end.

    • Answered by AI
    • Q2. Diff btw Final vs finally vs finalize
    • Ans. 

      Final is a keyword in Java used to restrict inheritance, finally is a block used in exception handling, and finalize is a method used for cleanup.

      • Final is a keyword in Java used to restrict inheritance or prevent method overriding.

      • 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 Java used for cleanup operations befo

    • Answered by AI
    • Q3. Diff btw assertion vs validation/verification
    • Ans. 

      Assertion is a statement that checks if a condition is true, while validation/verification is the process of confirming that a product meets specified requirements.

      • Assertion is used to validate the expected outcome of a test case.

      • Validation/verification is the process of checking if the product meets the specified requirements.

      • Assertions are typically used within test scripts to verify the expected behavior of the syst...

    • Answered by AI

    Interview Preparation Tips

    Topics to prepare for Hexaware Technologies Automation Test Engineer interview:
    • Java
    • Selenium
    Interview preparation tips for other job seekers - Prepare java programming and diff btw type questions.

    Skills evaluated in this interview

    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Selenium framework, exceptions, how to right click double click,
    • Q2. Rest assured, serialization , how to send POST request
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Frame work related questions
    • Q2. Retry logic, Data provider, Annotations,etc
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    No response

    I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

    Round 1 - Technical 

    (2 Questions)

    • Q1. Difference between scenario and scenario outline
    • Ans. 

      Scenario is a single test case while scenario outline is a template for multiple test cases with different inputs.

      • Scenario is a single test case with specific inputs and expected outcomes

      • Scenario outline is a template for multiple test cases with placeholders for different inputs

      • In scenario outline, examples table is used to provide different input values for each test case

    • Answered by AI
    • Q2. Explain oops concept
    • Ans. 

      OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

      • OOPs focuses on creating objects that interact with each other to solve a problem

      • Key concepts include encapsulation, inheritance, polymorphism, and abstraction

      • Encapsulation: Bundling data and methods that operate on the data into a single unit

      • Inher...

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Telephonic Call 

    (2 Questions)

    • Q1. Roles and responsibilities
    • Q2. Skill set and tools
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I was interviewed before Feb 2024.

    Round 1 - Technical 

    (1 Question)

    • Q1. Automation testing related
    Round 2 - Technical 

    (1 Question)

    • Q1. Automation backend testing
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    Leetcode hard questions asked in the interview

    Round 2 - Assignment 

    Object oriented programming and databases

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    Cognizant Interview Questions
    3.8
     • 5.6k Interviews
    Deloitte Interview Questions
    3.8
     • 2.8k Interviews
    BYJU'S Interview Questions
    3.1
     • 2.1k Interviews
    Teleperformance Interview Questions
    3.9
     • 1.8k Interviews
    Reliance Retail Interview Questions
    3.9
     • 1.5k Interviews
    Ernst & Young Interview Questions
    3.4
     • 1.1k Interviews
    WNS Interview Questions
    3.4
     • 1k Interviews
    Google Interview Questions
    4.4
     • 821 Interviews
    Nagarro Interview Questions
    4.0
     • 759 Interviews
    View all
    Compare Vission Automation with

    Cognizant

    3.8
    Compare

    Teleperformance

    3.9
    Compare

    iEnergizer

    4.6
    Compare

    Reliance Retail

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