Upload Button Icon Add office photos

Filter interviews by

L&T Technology Services Senior Software Test Engineer Interview Questions and Answers

Updated 20 Apr 2024

L&T Technology Services Senior Software Test Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions from resume especially related to skill sets and acinario based and at end I wrote 2 programs in java language which was preferred by myself.
Round 2 - HR 

(1 Question)

  • Q1. Very few questions if you perform well in last 2 rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on skill sets you have mentioned on resume.

Interview questions from similar companies

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

(2 Questions)

  • Q1. Explain the framework that you developed?
  • Ans. 

    I developed a modular automation framework using Java, TestNG, and Selenium WebDriver.

    • Used Java as the programming language for writing test scripts

    • Utilized TestNG for test case management and execution

    • Implemented Selenium WebDriver for browser automation

    • Followed Page Object Model design pattern for better code organization

    • Used Maven for project management and dependency resolution

  • Answered by AI
  • Q2. OOPS concept REST API basic questions Selenium Basic questions
Round 2 - HR 

(1 Question)

  • Q1. Checking if the candidate is company fit or not

Skills evaluated in this interview

Senior Software Test Engineer Interview Questions & Answers

Mphasis user image Prathmesh Rangnath Bargaje

posted on 6 Dec 2024

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

Strings question and selenium questions were asked in the interview.

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Mar 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Asked to write a code on iframes
  • Q2. Duplicate occurrence
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Moderate tuff level and can be cracked.

Round 2 - Coding Test 

Moderate. Requires application of real time knowledge to clear the test.

Round 3 - Technical 

(1 Question)

  • Q1. Face 2 Face technical hr, It was quite easier and friendly.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

30 question based on core java , math, logical reasoning

Round 2 - Technical 

(2 Questions)

  • Q1. Sql queries on joins
  • Q2. Selenium question and core java concept
Round 3 - Technical 

(2 Questions)

  • Q1. Selenium concept related questions
  • Q2. XPath and testng related
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Framework and Coding
  • Q2. What is Cucumber
  • Ans. 

    Cucumber is a testing tool that supports Behavior Driven Development (BDD) by allowing tests to be written in plain English.

    • Cucumber uses Gherkin syntax to define test cases in a human-readable format

    • It allows collaboration between non-technical stakeholders and technical team members

    • Cucumber tests are written in feature files with scenarios and steps

    • It can be integrated with various programming languages like Java, Ru

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

(1 Question)

  • Q1. Asked very simple question

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

20 aptitude questions and 50 technical questions

Round 2 - One-on-one 

(10 Questions)

  • Q1. Tell me about your self
  • Q2. Explain automation framework
  • Ans. 

    Automation framework is a set of guidelines, rules, and tools that help in creating and executing automated tests.

    • Automation framework provides structure and guidelines for creating automated tests

    • It helps in organizing test scripts, data, and results

    • Frameworks can be data-driven, keyword-driven, or hybrid

    • Examples of automation frameworks include Selenium WebDriver, TestNG, and Robot Framework

  • Answered by AI
  • Q3. Java code for sorting without using built in function
  • Ans. 

    Sorting array of strings in Java without using built-in functions

    • Create a custom sorting algorithm like bubble sort, selection sort, or insertion sort

    • Compare each pair of strings and swap them if necessary to sort in ascending order

    • Repeat the process until the array is fully sorted

  • Answered by AI
  • Q4. Explain testng annotations and how will we use annotation in our framework
  • Ans. 

    TestNG annotations are used to control the flow of test methods and provide additional information about the test methods.

    • TestNG annotations are used to mark methods as test methods, setup methods, teardown methods, etc.

    • Annotations like @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite are commonly used in TestNG framework.

    • Annotations help in organizing and prioritizing test metho...

  • Answered by AI
  • Q5. What is testng listener
  • Ans. 

    TestNG listener is an interface that allows users to customize the test execution process.

    • TestNG listeners can be used to perform actions before or after a test method is run.

    • Listeners can be used to generate logs, take screenshots, or perform other custom actions during test execution.

    • Examples of TestNG listeners include ITestListener, ISuiteListener, and IInvokedMethodListener.

  • Answered by AI
  • Q6. What is overriding and where it is used in automation framework
  • Ans. 

    Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Overriding allows a subclass to provide a specific implementation of a method that is already provided by its superclass

    • It is used in automation frameworks to customize or extend the functionality of existing methods or classes

    • In automation testing, overriding...

  • Answered by AI
  • Q7. Explain bdd hooks and tags
  • Ans. 

    BDD hooks and tags are used in Behavior-Driven Development to set up preconditions and execute actions before or after scenarios, and to categorize and filter scenarios.

    • BDD hooks are used to set up preconditions and execute actions before or after scenarios

    • Tags are used to categorize and filter scenarios based on certain criteria

    • Hooks can be used to perform setup and teardown actions, such as initializing test data or ...

  • Answered by AI
  • Q8. Explain bdd background keyword
  • Ans. 

    BDD background keyword is used to define common preconditions for all scenarios in a feature file.

    • Used at the beginning of a feature file to define common preconditions

    • Helps in setting up the initial state for all scenarios in the feature file

    • Reduces duplication of steps in scenarios by defining them once in the background

  • Answered by AI
  • Q9. Explain ci/cd pipeline using jenkins
  • Ans. 

    CI/CD pipeline using Jenkins automates the process of integrating code changes and deploying them to production.

    • Jenkins is a popular automation server used for CI/CD

    • CI/CD stands for Continuous Integration/Continuous Deployment

    • In a CI/CD pipeline, code changes are automatically built, tested, and deployed

    • Jenkins pipelines can be defined using a Jenkinsfile which specifies the stages and steps of the pipeline

    • Example: Che...

  • Answered by AI
  • Q10. Explain rest assured and write a code for post and verify the response
  • Ans. 

    Rest Assured is a Java library for testing RESTful APIs. It simplifies API testing by providing a fluent interface to make HTTP requests and validate responses.

    • Rest Assured is commonly used in API automation testing to validate the functionality of RESTful APIs.

    • It allows testers to easily make HTTP requests, set headers, parameters, and body, and validate the response.

    • Here is an example code snippet for posting data an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all concepts in framwork

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic SDET related Manual and Automation Codes
  • Q2. Manager Round is about your work nature attentiveness in work
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Fibonacci seriers
  • Q2. Oops concepts java
Round 2 - Technical 

(2 Questions)

  • Q1. Find min and max number in an array
  • Ans. 

    Find min and max number in an array of strings

    • Convert array elements to integers for comparison

    • Use built-in functions like Math.min() and Math.max()

    • Handle edge cases like empty array or non-numeric elements

  • Answered by AI
  • Q2. Test scenario for elevator
Round 3 - HR 

(1 Question)

  • Q1. Tell me about your self

Skills evaluated in this interview

L&T Technology Services Interview FAQs

How many rounds are there in L&T Technology Services Senior Software Test Engineer interview?
L&T Technology Services interview process usually has 2 rounds. The most common rounds in the L&T Technology Services interview process are Technical and HR.
What are the top questions asked in L&T Technology Services Senior Software Test Engineer interview?

Some of the top questions asked at the L&T Technology Services Senior Software Test Engineer interview -

  1. Questions from resume especially related to skill sets and acinario based and a...read more
  2. Very few questions if you perform well in last 2 roun...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 L&T Technology Services interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
L&T Technology Services Senior Software Test Engineer Salary
based on 15 salaries
₹6.5 L/yr - ₹14.5 L/yr
16% more than the average Senior Software Test Engineer Salary in India
View more details

L&T Technology Services Senior Software Test Engineer Reviews and Ratings

based on 4 reviews

2.7/5

Rating in categories

3.1

Skill development

3.4

Work-Life balance

2.7

Salary & Benefits

3.1

Job Security

3.1

Company culture

2.1

Promotions/Appraisal

3.1

Work Satisfaction

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

₹5 L/yr - ₹17 L/yr

Engineer
4.5k salaries
unlock blur

₹1 L/yr - ₹8.8 L/yr

Technical Lead
2k salaries
unlock blur

₹8.5 L/yr - ₹28 L/yr

Project Lead
1.6k salaries
unlock blur

₹6 L/yr - ₹22.1 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹4.8 L/yr - ₹18.8 L/yr

Explore more salaries
Compare L&T Technology Services with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

Tech Mahindra

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview