Upload Button Icon Add office photos

Filter interviews by

L&T Technology Services Automation Test Engineer Interview Questions and Answers

Updated 4 Oct 2024

L&T Technology Services Automation Test Engineer Interview Experiences

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 in Sep 2024. There was 1 interview round.

Round 1 - Coding Test 

30 mins - interview duration
C# OOPS, Selenium and Manual testing concepts

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
  • Q2. Framework Structure
  • Q3. Code for sorting an array
  • Q4. Create Xpath
  • Q5. Few Appium related questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Few scenario based questions
  • Q2. Why GlobalLogic
Round 3 - Technical 

(1 Question)

  • Q1. Project related questions
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(7 Questions)

  • Q1. What is a constructor and it's purpose?
  • Ans. 

    A constructor is a special type of method in a class that is automatically called when an object of that class is created.

    • Constructors have the same name as the class they belong to

    • They are used to initialize the object's state or perform any necessary setup

    • Constructors can have parameters to customize the initialization process

    • Example: public class Car { public Car(String color) { this.color = color; } }

  • Answered by AI
  • Q2. Can you override a Static Method?
  • Ans. 

    Yes, a static method can be overridden in Java using the concept of method hiding.

    • In Java, static methods cannot be overridden in the traditional sense like instance methods.

    • When a subclass defines a static method with the same signature as a static method in the superclass, it is called method hiding.

    • Method hiding does not follow polymorphism and is resolved at compile time based on the reference type.

    • Example: class...

  • Answered by AI
  • Q3. Can you create a Static local variable inside a Static method
  • Ans. 

    Yes, a static local variable can be created inside a static method.

    • Yes, a static local variable can be declared inside a static method in programming languages like C++.

    • Static local variables retain their values between function calls.

    • Example: static void myStaticMethod() { static int count = 0; count++; }

  • Answered by AI
  • Q4. What is the memory allocation for a String?
  • Ans. 

    String memory allocation is dynamic and depends on the length of the string.

    • String memory allocation is dynamic and can change based on the length of the string.

    • In Java, a String object is stored in the heap memory.

    • Each character in a String typically takes up 2 bytes of memory.

    • String objects in Java are immutable, meaning once a String object is created, it cannot be changed.

  • Answered by AI
  • Q5. Can you create a Static method inside an Abstract class or Interface?
  • Ans. 

    Yes, you can create a static method inside an abstract class or interface.

    • Static methods can be defined in interfaces since Java 8.

    • Static methods in interfaces are used for providing utility methods that are not tied to any specific instance of the interface.

    • Static methods in abstract classes can be used for common functionality that does not require an instance of the class.

  • Answered by AI
  • Q6. What is the Parent class of Java?
  • Ans. 

    The parent class of Java is the Object class.

    • All classes in Java are directly or indirectly derived from the Object class.

    • The Object class is the root class in Java's class hierarchy.

    • It provides methods that are common to all objects in Java, such as toString(), equals(), and hashCode().

  • Answered by AI
  • Q7. What is Window Handles in Selenium?
  • Ans. 

    Window Handles in Selenium are unique identifiers used to handle multiple browser windows in a Selenium test script.

    • Window Handles are unique alphanumeric strings assigned to each browser window opened by Selenium.

    • They are used to switch between different browser windows during a test script execution.

    • Window Handles can be obtained using getWindowHandles() method in Selenium.

    • Example: Set handles = driver.getWindowHandl

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Mphasis Automation Test Engineer interview:
  • Selenium
  • Java
  • OOPS
  • Manual Testing
Interview preparation tips for other job seekers - Nowadays, the interviewers expect the same Java language of a Developer as a Tester. But, how will that be possible? If a Tester has the same knowledge as a Developer, then why would he/she become a Tester instead of a Developer? Please open up your thoughts to the Interviewer, so that they can think before confusing with the deep logical knowledge.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(7 Questions)

  • Q1. Appium architecture
  • Q2. Java oops concepts n where did u apply that in automation framework
  • Ans. 

    Java OOPs concepts are used in automation framework design for better code organization and reusability.

    • Encapsulation: Used to hide the internal implementation details of classes and provide access through methods.

    • Inheritance: Allows for code reuse by creating parent-child relationships between classes.

    • Polymorphism: Enables methods to behave differently based on the object they are called on.

    • Abstraction: Helps in defin...

  • Answered by AI
  • Q3. How to handle otp
  • Ans. 

    OTP can be handled by generating, sending, and verifying it in automated tests.

    • Generate OTP using a random number generator

    • Send OTP to the user via email, SMS, or any other communication channel

    • Verify OTP entered by the user against the generated OTP

  • Answered by AI
  • Q4. How start appium in automation
  • Ans. 

    To start Appium in automation, you need to install Appium server, set up desired capabilities, and run the server.

    • Install Appium server using npm install -g appium

    • Set up desired capabilities in your test script

    • Start the Appium server using the command appium

  • Answered by AI
  • Q5. What are the types of mobile apps
  • Ans. 

    Types of mobile apps include native apps, web apps, and hybrid apps.

    • Native apps are developed for specific platforms like iOS or Android

    • Web apps are accessed through a web browser and do not need to be downloaded from an app store

    • Hybrid apps combine elements of both native and web apps

    • Examples include Instagram (native), Twitter (web), and Uber (hybrid)

  • Answered by AI
  • Q6. Program to remove duplicate letters in a string
  • Ans. 

    Program to remove duplicate letters in a string

    • Iterate through the string and keep track of seen characters in a set

    • Append characters to a new string only if they are not already in the set

    • Return the new string without duplicate letters

  • Answered by AI
  • Q7. How to perform swipe action in mobile devices
  • Ans. 

    Swipe action in mobile devices can be performed using swipe() method in Appium or TouchAction class in Selenium.

    • Use swipe() method in Appium to perform swipe action in mobile devices

    • Alternatively, use TouchAction class in Selenium for swipe action

    • Specify the start and end coordinates for the swipe action

    • Adjust the duration and speed of the swipe as needed

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic selenium and Basic Java
Round 2 - Technical 

(1 Question)

  • Q1. Java Program - Reverse a string Selenium - stale element
  • Ans. 

    Reverse a string using Java program and handle stale element in Selenium

    • Create a Java program to reverse a string using StringBuilder or char array

    • In Selenium, handle stale element exception by refreshing the element or using WebDriverWait

    • Example: Java program - input: 'hello', output: 'olleh'; Selenium - handle stale element by refreshing the element before interacting with it

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What is your expected salary
  • Ans. 

    My expected salary is based on my experience, skills, and the market rate for Automation Test Engineers.

    • I have researched the average salary range for Automation Test Engineers in this location.

    • I am looking for a competitive salary that reflects my expertise in automation testing.

    • I am open to negotiation based on the overall compensation package offered.

  • Answered by AI
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me your Self introduce
  • Q2. Tell me project structure
  • Ans. 

    Project structure refers to the organization of files, folders, and resources within a software project.

    • Main folders like src (source code), test (test cases), lib (libraries), docs (documentation)

    • Subfolders for specific modules or components

    • Configuration files like pom.xml, package.json, etc.

    • Build scripts like Jenkinsfile, Dockerfile

    • Version control files like .gitignore, .gitattributes

    • README.md file for project overvi

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Skill preparation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain the framework structure
  • Ans. 

    Framework structure refers to the organization of test automation code, including folders, files, libraries, and configurations.

    • Framework structure typically includes folders for test scripts, test data, page objects, utilities, and configurations.

    • It may involve separation of concerns, such as using Page Object Model for better maintainability.

    • Frameworks like TestNG or JUnit provide annotations to structure test cases ...

  • Answered by AI
  • Q2. Tell me about yourself
  • Ans. 

    I am a dedicated Automation Test Engineer with 5 years of experience in creating and executing test cases for software applications.

    • Experienced in creating automated test scripts using tools like Selenium and Appium

    • Proficient in identifying bugs and issues in software applications

    • Skilled in writing test plans and test cases to ensure comprehensive test coverage

    • Strong knowledge of programming languages such as Java and ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Difference b/w Hashmap vs HashTable and which one is faster on basis of performance!
  • Ans. 

    HashMap allows null values and keys, while HashTable does not. HashMap is not synchronized, making it faster in performance compared to HashTable.

    • HashMap allows null values and keys, while HashTable does not.

    • HashMap is not synchronized, making it faster in performance compared to HashTable.

    • HashMap is preferred for non-thread-safe applications, while HashTable is preferred for thread-safe applications.

  • Answered by AI
  • Q2. Why Stale Element Reference Exception!
  • Ans. 

    Stale Element Reference Exception occurs when an element is no longer attached to the DOM.

    • Occurs when an element is located in the DOM, but later becomes detached or deleted

    • Common in dynamic web applications where elements are frequently changing

    • Can be resolved by re-locating the element before interacting with it

  • Answered by AI
  • Q3. Diff between Collection VS Collections
  • Ans. 

    Collection is an interface in Java that represents a group of objects, while Collections is a utility class in Java that contains static methods for operating on collections.

    • Collection is an interface in Java, while Collections is a utility class.

    • Collection is used to represent a group of objects, while Collections is used for operations on collections like sorting, searching, etc.

    • Example: List is a Collection interfac...

  • Answered by AI
  • Q4. What is POM ? Why we need !
  • Ans. 

    POM stands for Page Object Model. It is a design pattern used in test automation to create reusable and maintainable code.

    • POM helps in separating the test scripts from the web elements, making the code more organized and easier to maintain.

    • It improves code reusability by creating separate classes for each web page, containing all the elements and actions related to that page.

    • POM reduces code duplication and enhances te...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. What is singletion design pattern
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Ensures a class has only one instance

    • Provides a global point of access to that instance

    • Commonly used in scenarios where only one instance of a class is needed, such as database connections or logging

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Coforge Automation Test Engineer interview:
  • Java

Skills evaluated in this interview

L&T Technology Services Interview FAQs

How many rounds are there in L&T Technology Services Automation Test Engineer interview?
L&T Technology Services interview process usually has 1 rounds. The most common rounds in the L&T Technology Services interview process are Coding Test.

Tell us how to improve this page.

L&T Technology Services Automation Test Engineer Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more
L&T Technology Services Automation Test Engineer Salary
based on 134 salaries
₹3 L/yr - ₹8.2 L/yr
18% less than the average Automation Test Engineer Salary in India
View more details

L&T Technology Services Automation Test Engineer Reviews and Ratings

based on 9 reviews

3.4/5

Rating in categories

3.5

Skill development

3.2

Work-life balance

2.8

Salary

3.9

Job security

3.0

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 9 Reviews and Ratings
Senior Engineer
5.3k salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Engineer
4.8k salaries
unlock blur

₹3 L/yr - ₹8.2 L/yr

Technical Lead
2.1k salaries
unlock blur

₹8.5 L/yr - ₹30 L/yr

Project Lead
1.6k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹4.8 L/yr - ₹18.7 L/yr

Explore more salaries
Compare L&T Technology Services with

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

3.5
Compare

HCLTech

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