Upload Button Icon Add office photos

Filter interviews by

Applitech Infotech Automation Engineer Interview Questions, Process, and Tips

Updated 29 Jan 2022

Applitech Infotech Automation Engineer Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed before Jan 2021. 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 - Technical 

(7 Questions)

  • Q1. Which PLC have you worked on? And which software are you using to develop program for that PLC?
  • Ans. 

    I have worked on Siemens S7-300 PLC and used Siemens TIA Portal software to develop programs.

    • Siemens S7-300 PLC

    • Siemens TIA Portal software

  • Answered by AI
  • Q2. How many types of analog singal can be used in Micrologix 1400?
  • Ans. 

    The Micrologix 1400 can support up to 6 types of analog signals.

    • The Micrologix 1400 can handle analog signals such as voltage, current, resistance, thermocouples, RTDs, and potentiometers.

    • It has 6 analog inputs that can be configured for different types of signals.

    • For example, you can use one input for a voltage signal and another input for a thermocouple signal.

    • The analog signals can be used for monitoring and control...

  • Answered by AI
  • Q3. How many types of 4-20 mA type transmitters?
  • Ans. 

    There are several types of 4-20 mA type transmitters used in automation engineering.

    • Some common types include pressure transmitters, temperature transmitters, level transmitters, and flow transmitters.

    • Each type of transmitter is designed to measure a specific parameter and convert it into a 4-20 mA current signal.

    • For example, a pressure transmitter measures the pressure of a fluid or gas and converts it into a 4-20 mA ...

  • Answered by AI
  • Q4. How many type of sensors have you used with PLC?
  • Ans. 

    I have used various types of sensors with PLC.

    • Proximity sensors

    • Temperature sensors

    • Pressure sensors

    • Level sensors

    • Flow sensors

    • Position sensors

    • Photoelectric sensors

    • Ultrasonic sensors

    • Humidity sensors

    • Gas sensors

  • Answered by AI
  • Q5. How many ports are available in ML1400?
  • Ans. 

    The ML1400 has 20 digital I/O ports and 2 analog I/O ports.

    • The ML1400 has a total of 22 ports.

    • There are 20 digital I/O ports that can be used for input or output of digital signals.

    • There are 2 analog I/O ports that can be used for input or output of analog signals.

    • These ports can be used to connect sensors, actuators, and other devices to the ML1400.

  • Answered by AI
  • Q6. How those ports are utilised in your current project?
  • Ans. 

    The ports in my current project are utilized for communication between different devices and systems.

    • Ports are used to establish connections and transfer data between devices.

    • They can be physical ports, such as USB or Ethernet ports, or virtual ports.

    • In my project, we use ports to connect sensors, actuators, and controllers to the automation system.

    • For example, we have a temperature sensor connected to a port on a PLC ...

  • Answered by AI
  • Q7. Are you willing to travel for project work?

Interview Preparation Tips

Interview preparation tips for other job seekers - Whatever project you have worked on and Whatever Field/System you want to work with, just make sure you should have knowledge of everything about that, if you don't know the answer just say no, do not create confusions.
And stay confident 😉

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(10 Questions)

  • Q1. What is the output of below code class Animal{ Animal(){ System.out.println("animal is created") } class Dog extends Animal{ Dog(){ System.out.println("Dog is created")} class TestSuper4{ pub...
  • Ans. 

    The output of the code will be 'animal is created' followed by 'Dog is created'.

    • The code defines a class Animal with a constructor that prints 'animal is created'.

    • It also defines a class Dog that extends Animal, with a constructor that prints 'Dog is created'.

    • In the main method, an instance of Dog is created, which will trigger the constructors of both Animal and Dog classes.

  • Answered by AI
  • Q2. Output of this : System.out.println(10+20+"Hello"+30+40) - Explain
  • Q3. Output of this : String name="Hello"; name=name+"There"; system.out.println(name)
  • Ans. 

    The output will be 'HelloThere'

    • Concatenation of 'Hello' and 'There' results in 'HelloThere'

    • The final string is printed using System.out.println()

  • Answered by AI
  • Q4. StringBuffer buffer=new StringBuffer("Hello") buffer.append("There"); System.out.println(buffer);
  • Ans. 

    The code creates a StringBuffer object with 'Hello' and appends 'There' to it before printing the final string.

    • StringBuffer is mutable, so the original 'Hello' string can be modified

    • The append() method adds the specified string to the end of the buffer

    • The final output will be 'HelloThere'

  • Answered by AI
  • Q5. Which is valid or invalid a. ChromeDriver driver=new ChromeDriver(); b. WebDriver driver=new ChromeDriver(); c. WebDriver driver2=new WebDriver(); driver2=new ChromeDriver();
  • Ans. 

    Option a is valid, option b is valid, option c is invalid.

    • Option a is valid because ChromeDriver is a subclass of WebDriver, so it can be assigned to a WebDriver reference.

    • Option b is valid because ChromeDriver is a subclass of WebDriver, so it can be instantiated using a WebDriver reference.

    • Option c is invalid because WebDriver is an interface and cannot be instantiated directly. It can only be used as a reference typ

  • Answered by AI
  • Q6. Program to sort the input in descending order without using inbuild method/functions
  • Ans. 

    Sort input array of strings in descending order without using inbuilt functions

    • Iterate through the array and compare each element with the rest to find the largest element

    • Swap the largest element with the first element, then repeat the process for the remaining elements

    • Continue this process until the array is sorted in descending order

  • Answered by AI
  • Q7. Difference between findElement and findElements
  • Ans. 

    findElement returns the first matching element on the page, while findElements returns a list of all matching elements.

    • findElement returns a single WebElement matching the locator provided

    • findElements returns a list of WebElements matching the locator provided

    • findElement will throw NoSuchElementException if no element is found, while findElements will return an empty list

  • Answered by AI
  • Q8. Difference between getwindowhandle and getwindowhandles() and what is output type
  • Ans. 

    getwindowhandle returns the handle of the current window, getwindowhandles() returns handles of all open windows

    • getwindowhandle returns a single window handle, while getwindowhandles() returns a set of window handles

    • getwindowhandle is used to switch between windows in Selenium WebDriver

    • Output type of getwindowhandle is String, while output type of getwindowhandles() is Set

Answered by AI
  • Q9. Question on finding the xpaths on website
  • Q10. Difference between String and StringBuilder?
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning its value cannot be changed once it is created.

    • StringBuilder is mutable, allowing for modifications to the string without creating a new object.

    • StringBuilder is more efficient for concatenating multiple strings as it does not create new objects each time.

    • Example: String str = "Hello"; StringBuil

  • Answered by AI

    Skills evaluated in this interview

    Automation Engineer Interview Questions & Answers

    Infosys user image Sangeetha Prabhakaran

    posted on 5 Jan 2025

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

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

    Round 1 - Technical 

    (2 Questions)

    • Q1. Some basic oops concepts
    • Q2. Java program to alternate words in a string
    Round 2 - Technical 

    (1 Question)

    • Q1. Yet to attend the 2nd round
    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    -
    Result
    No response
    Round 1 - Technical 

    (5 Questions)

    • Q1. OOPs concepts and framework implementation
    • Q2. Bubble sort program
    • Ans. 

      Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order.

      • Start at the beginning of the array and compare the first two elements. If the first element is greater than the second, swap them.

      • Continue comparing adjacent elements and swapping them if necessary until the end of the array is reached.

      • Repeat this process for each ...

    • Answered by AI
    • Q3. Basic questions on selenium
    • Q4. Custom assertions in selenium
    • Ans. 

      Custom assertions in Selenium allow for creating personalized validation checks in test automation scripts.

      • Custom assertions can be created by extending the Assert class in Selenium.

      • They can be used to validate specific conditions or elements on a web page.

      • Custom assertions can improve test readability and maintainability by encapsulating complex validation logic.

      • Example: Creating a custom assertion to verify the prese

    • Answered by AI
    • Q5. Webdriver questions

    Skills evaluated in this interview

    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    Not Selected

    I applied via Referral and was interviewed in May 2024. There was 1 interview round.

    Round 1 - One-on-one 

    (5 Questions)

    • Q1. SDLC , Defect management tool
    • Q2. Basic Java and selenium questions
    • Q3. Project related questions
    • Q4. Introduction of ourselves
    • Q5. What I like and dislike about IT
    • Ans. 

      I like the constant learning and problem-solving in IT, but dislike the long hours and high stress levels.

      • Like: Constant learning opportunities

      • Like: Problem-solving challenges

      • Dislike: Long working hours

      • Dislike: High stress levels

    • Answered by AI
    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    -
    Result
    No response

    I applied via Recruitment Consulltant and was interviewed in Apr 2024. There was 1 interview round.

    Round 1 - Technical 

    (4 Questions)

    • Q1. What is the difference between throw and throws in Java?
    • Ans. 

      throw is used to throw an exception in Java, while throws is used to declare an exception that a method might throw.

      • throw is used to explicitly throw an exception within a method.

      • throws is used in the method signature to declare that the method might throw a specific type of exception.

      • Example: throw new Exception("An error occurred!");

      • Example: public void method() throws IOException {}

    • Answered by AI
    • Q2. How will you handle multiple windows in Selenium?
    • Ans. 

      Handling multiple windows in Selenium can be achieved using window handles.

      • Use getWindowHandles() method to get all window handles

      • Switch between windows using switchTo().window() method

      • Perform actions on each window as needed

    • Answered by AI
    • Q3. What is 204 , 400 response code in REST apis?
    • Ans. 

      204 and 400 are HTTP response codes in REST APIs indicating success and client error, respectively.

      • 204 response code indicates that the server has successfully fulfilled the request and there is no content to send in the response.

      • 400 response code indicates that the server could not understand the request due to bad syntax or missing required parameters.

      • Example: If a client sends a request to update a resource and the ...

    • Answered by AI
    • Q4. Coding give the count of upper case and lower case letters in a string
    • Ans. 

      Count the number of upper case and lower case letters in a string using coding.

      • Iterate through each character in the string and check if it is upper case or lower case using built-in functions or ASCII values.

      • Keep track of the count of upper case and lower case letters separately.

      • Return the counts of upper case and lower case letters.

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    1
    Bad
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in May 2024. There were 2 interview rounds.

    Round 1 - Aptitude Test 

    Practice quantitative aptitude questions by RS Agarwal

    Round 2 - Technical 

    (2 Questions)

    • Q1. Tell me about yourself
    • Q2. Explain the final year project?

    Interview Preparation Tips

    Topics to prepare for TCS Automation Engineer interview:
    • Java
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Aptitude Test 

    Multiple choice questions and answers given

    Round 2 - HR 

    (2 Questions)

    • Q1. Ready to relocate
    • Ans. 

      Yes, I am open to relocating for the right opportunity.

      • I am willing to relocate for the right job opportunity that aligns with my career goals.

      • I am open to exploring new locations and experiencing different cultures.

      • I understand the importance of being flexible and adaptable in the field of automation engineering.

      • I have relocated for previous job opportunities and have successfully adjusted to new environments.

    • Answered by AI
    • Q2. About projects and assignments
    Interview experience
    4
    Good
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    No response

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

    Round 1 - Technical 

    (1 Question)

    • Q1. Basics oops selenium waits exception handling

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare basics of java selenium
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (1 Question)

    • Q1. Questions related to oops concepts

    Applitech Infotech Interview FAQs

    How many rounds are there in Applitech Infotech Automation Engineer interview?
    Applitech Infotech interview process usually has 2 rounds. The most common rounds in the Applitech Infotech interview process are Resume Shortlist and Technical.
    What are the top questions asked in Applitech Infotech Automation Engineer interview?

    Some of the top questions asked at the Applitech Infotech Automation Engineer interview -

    1. Which PLC have you worked on? And which software are you using to develop progr...read more
    2. How many types of analog singal can be used in Micrologix 14...read more
    3. How many types of 4-20 mA type transmitte...read more

    Tell us how to improve this page.

    Applitech Infotech Automation Engineer Salary
    based on 7 salaries
    ₹2.5 L/yr - ₹4.2 L/yr
    50% less than the average Automation Engineer Salary in India
    View more details

    Applitech Infotech Automation Engineer Reviews and Ratings

    based on 2 reviews

    4.2/5

    Rating in categories

    3.4

    Skill development

    4.8

    Work-life balance

    3.2

    Salary

    5.0

    Job security

    5.0

    Company culture

    4.2

    Promotions

    4.2

    Work satisfaction

    Explore 2 Reviews and Ratings
    Automation Engineer
    7 salaries
    unlock blur

    ₹2.5 L/yr - ₹4.2 L/yr

    US IT Recruiter
    6 salaries
    unlock blur

    ₹2 L/yr - ₹4.2 L/yr

    Senior Automation Engineer
    3 salaries
    unlock blur

    ₹3.4 L/yr - ₹6.8 L/yr

    Explore more salaries
    Compare Applitech Infotech with

    TCS

    3.7
    Compare

    Accenture

    3.9
    Compare

    Wipro

    3.7
    Compare

    Cognizant

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