Upload Button Icon Add office photos

Filter interviews by

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

Updated 26 Mar 2022

L&T Technology Services Manual Test Engineer Interview Experiences

1 interview found

Manual Test Engineer Interview Questions & Answers

user image Venkata padmavathi alle

posted on 26 Mar 2022

I applied via Walk-in and was interviewed in Feb 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 - Aptitude Test 

About software skill,Regression Testing,smoke Testing,Usability Testing,GUI Testing,sanity testing

Interview Preparation Tips

Topics to prepare for L&T Technology Services Manual Test Engineer interview:
  • Retesting
  • Regression Testing
  • Bug Reporting
  • Ajail
  • Sanity Testing
  • Smoke Testing
Interview preparation tips for other job seekers - Ajail methodology,jira,Validation and verification,Black Box Testing,white box Testing,Waterfall model,monkey or gorilla Testing

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Difference between Sit and Uat
  • Ans. 

    SIT and UAT are two different types of testing in software development.

    • SIT stands for System Integration Testing and focuses on testing the integration of different components or systems.

    • UAT stands for User Acceptance Testing and involves testing the software from the end user's perspective.

    • SIT is performed by the development team, while UAT is typically performed by the end users or client.

    • SIT ensures that the individ...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Tell me About yourself
  • Ans. HI I am Gopinaath,I Have Completed BTech Computer science Engineering sastra University 2011 year Passing out ,Total 10Years Experience in Manual Testing &My Annual
  • Answered by Gopinaath Vijayaraghavan

Skills evaluated in this interview

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

(1 Question)

  • Q1. Sdlc, bug life cycle, sanity testing, smoke testing
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 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. Tell me something about yourseld
  • Q2. Why you left your prevous job

Interview Preparation Tips

Interview preparation tips for other job seekers - nothing is to share
dont join exlerx they dont have proper projects

I applied via Referral and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is system testing
  • Ans. 

    System testing is a type of testing that verifies the behavior of a complete and fully integrated software system.

    • It is performed on a complete system, not individual components

    • It tests the system's compliance with functional and non-functional requirements

    • It includes testing of system performance, security, reliability, and scalability

    • It can be manual or automated

    • Examples include end-to-end testing, regression testing

  • Answered by AI
  • Q2. Difference between rest and soap
  • Ans. 

    REST is an architectural style for web services while SOAP is a protocol for exchanging structured information.

    • REST uses HTTP protocol while SOAP can use any protocol

    • REST is lightweight and easy to implement while SOAP is more complex

    • REST supports multiple data formats like JSON, XML, etc. while SOAP only supports XML

    • REST is stateless while SOAP can maintain state between requests

    • REST is preferred for mobile and web ap...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, answer the questions clearly, ask if you don't get it and do your best

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain sdlc and regression testing
  • Ans. 

    SDLC is a process followed for software development. Regression testing is a type of testing done to ensure that changes made to the software do not affect the existing functionality.

    • SDLC stands for Software Development Life Cycle

    • It consists of phases like planning, analysis, design, implementation, testing, and maintenance

    • Regression testing is done to ensure that changes made to the software do not affect the existing...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - learn throughly to prepare interviews

Skills evaluated in this interview

I was interviewed in Mar 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 
Round 3 - Aptitude Test 
Round 4 - Aptitude Test 

Interview Preparation Tips

Topics to prepare for GlobalLogic Manual Test Engineer interview:
  • SDLC
  • Types of testing
  • Regression Testing
  • Levels of testing
  • Exetra
Interview preparation tips for other job seekers - I will share try my level best

I applied via Referral and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Agile testing,
  • Q2. Cycle in software testing
  • Ans. 

    Cycle in software testing refers to the process of repeating testing activities in a systematic manner.

    • The cycle includes planning, designing, executing, and reporting.

    • It helps to identify defects early and ensure the quality of the software.

    • Common cycles include the Waterfall model, Agile model, and V-model.

    • Each cycle may have different phases and activities depending on the methodology used.

    • The cycle may also involve...

  • Answered by AI
  • Q3. STLC, SDLC,
  • Q4. Regression testing
  • Q5. Basic understanding of the engineering subject concepts,
  • Q6. DBMS, your proficiency in the programming language
  • Q7. Etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Tests your basic understanding of the subjects and programming languages,

Skills evaluated in this interview

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
-
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

L&T Technology Services Interview FAQs

How many rounds are there in L&T Technology Services Manual 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 Aptitude Test and Resume Shortlist.

Tell us how to improve this page.

L&T Technology Services Manual Test Engineer Salary
based on 8 salaries
₹3 L/yr - ₹7.3 L/yr
9% more than the average Manual Test Engineer Salary in India
View more details

L&T Technology Services Manual Test Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.6

Salary

4.3

Job security

4.6

Company culture

4.0

Promotions

5.0

Work satisfaction

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

₹5 L/yr - ₹17 L/yr

Engineer
4.7k salaries
unlock blur

₹1.5 L/yr - ₹8.5 L/yr

Technical Lead
2k 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.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.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview