Upload Button Icon Add office photos

L&T Technology Services

Compare button icon Compare button icon Compare

Filter interviews by

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

Updated 3 Oct 2024

L&T Technology Services Python Automation Engineer Interview Experiences

2 interviews found

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

Based on list, then Selenium x path

I applied via Approached by Company and was interviewed in May 2022. There were 3 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 

(3 Questions)

  • Q1. Robotframework Architecture, Data types in RF, set suite & teardown, conditions in RF,
  • Q2. How to write test cases & action, How to create list & dict [Data operations on it],
  • Ans. 

    To write test cases, identify scenarios, create test data, and execute tests. For data operations on list & dict, use built-in functions.

    • For test cases, identify positive and negative scenarios, boundary conditions, and edge cases.

    • Create test data that covers all possible scenarios and edge cases.

    • Use assert statements to verify expected results.

    • For data operations on list & dict, use built-in functions like append(), p...

  • Answered by AI
  • Q3. Python - Write program from Prime numbers between 1 to 100
  • Ans. 

    Python program to print prime numbers between 1 to 100

    • Loop through numbers 1 to 100

    • Check if number is prime using modulus operator

    • Print the prime numbers

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Package, namespace, hashable objects in dict, heap space, garbage colector
  • Q2. Familiarity with Networking concepts, WIFI, 5G ,...

Interview Preparation Tips

Topics to prepare for L&T Technology Services Python Automation Engineer interview:
  • python
  • Robotframework
  • OOPS
Interview preparation tips for other job seekers - This was for a Python Automation engineer using RF.

Skills evaluated in this interview

Python Automation Engineer Interview Questions Asked at Other Companies

asked in Calsoft
Q1. Find the largest no. to be created from the list of numbers in th ... read more
Q2. How to write test cases & action, How to create list & di ... read more
Q3. Python - Write program from Prime numbers between 1 to 100
Q4. Reverse the string without using slicing method? Missing numbers ... read more
asked in Capgemini
Q5. 1. What is Selenium? 2. What are the processes behind initiating ... read more

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Best sorting although and its working they asked
  • Q2. Write a program to replace the character with another character in java.
  • Ans. 

    A program to replace a character with another character in Java.

    • Create a string variable with the original text

    • Use the replace() method to replace the character with another character

    • Print the new string with the replaced character

  • Answered by AI
  • Q3. SQL queries on order by, group by, and it's difference they asked.
  • Q4. Project management experience they asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare on the basis concepts and be perfect on your resume they are not expecting much from you as you are a fresher.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Case Study 
Round 2 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process is smooth and majorly asked direct questions and some scenarios

I applied via Campus Placement and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. Tell me about yourself
  • Q2. Write a program to print unique elements in an array in java
  • Ans. 

    Program to print unique elements in an array in Java

    • Create a HashSet to store unique elements

    • Iterate through the array and add each element to the HashSet

    • Print the HashSet to get the unique elements

  • Answered by AI
  • Q3. Types of data structures
  • Ans. 

    Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Arrays - a collection of elements of the same type

    • Linked Lists - a sequence of nodes where each node contains a reference to the next node

    • Stacks - a collection of elements with two main operations: push (add) and pop (remove)

    • Queues - a collection of elements with two main operations: enqueue (add) and d...

  • Answered by AI
  • Q4. Tree traversal
  • Q5. What is oops
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPs focuses on creating objects that contain both data and functions.

    • It emphasizes on encapsulation, inheritance, and polymorphism.

    • Examples of OOPs languages are Java, C++, Python, etc.

  • Answered by AI
  • Q6. Applications of oops
  • Ans. 

    OOPs is used for creating modular, reusable and maintainable code.

    • Encapsulation: Hiding implementation details and exposing only necessary information.

    • Inheritance: Reusing code and creating a hierarchy of classes.

    • Polymorphism: Using a single interface to represent multiple entities.

    • Abstraction: Reducing complexity by hiding unnecessary details.

    • Examples: Java, C++, Python, Ruby, etc.

  • Answered by AI
  • Q7. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add its own unique properties and ...

  • Answered by AI
  • Q8. What is polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • It allows objects of different classes to be treated as if they were objects of the same class.

    • It is achieved through method overriding and method overloading.

    • Example: A parent class Animal can have child classes like Dog, Cat, and Bird, each with their own unique implementation of the method 'makeSound'.

    • Polymorphism makes code more flexible and reusable.

  • Answered by AI
  • Q9. What is abstraction? Explain with example
  • Ans. 

    Abstraction is the process of hiding complex implementation details and exposing only the necessary information.

    • Abstraction helps in reducing complexity and increasing efficiency.

    • It allows us to focus on the essential features of an object or system.

    • For example, a car can be abstracted as a vehicle with certain properties like speed, fuel efficiency, and seating capacity.

    • Abstraction can be achieved through interfaces,

  • Answered by AI
  • Q10. What is encapsulation
  • Ans. 

    Encapsulation is the process of hiding implementation details and providing a public interface for accessing the functionality.

    • Encapsulation helps in achieving data abstraction and information hiding

    • It prevents unauthorized access to the internal details of an object

    • It allows for easy modification of implementation without affecting the external code

    • Example: A class with private variables and public methods

    • Example: A b...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - As I'm from ECE background it's little bit easy for me because they ask basic questions. If we are good enough in basics it's easy to crack Mindtree interview

Skills evaluated in this interview

I applied via Job Portal and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. How do you configure and verify custom DNS in Azure AD?
  • Ans. 

    To configure and verify custom DNS in Azure AD, follow these steps:

    • Create a DNS zone in Azure DNS

    • Add a custom domain to Azure AD

    • Create a CNAME record in the DNS zone that points to the Azure AD domain

    • Verify the custom domain in Azure AD

    • Update the DNS registrar to use the Azure DNS name servers

    • Test the custom DNS by accessing Azure AD resources using the custom domain

  • Answered by AI
  • Q2. Supported authentication types in Azure AD
  • Ans. 

    Azure AD supports various authentication types for secure access to resources.

    • Azure AD supports password-based authentication, multi-factor authentication, certificate-based authentication, and federated authentication.

    • It also supports OAuth 2.0 and OpenID Connect for secure authentication and authorization.

    • Examples of supported protocols include SAML, WS-Federation, and OAuth 2.0/OpenID Connect.

    • Azure AD also supports ...

  • Answered by AI
  • Q3. Hybrid scenarios regarding Azure AD using Azure AD Connect
Round 2 - One-on-one 

(3 Questions)

  • Q1. What if someone asks you your salary?
  • Q2. How would you react if someone lured into giving up some secrets
  • Q3. Are you ready for relocation??
Round 3 - HR 

(4 Questions)

  • Q1. Salary discussion, Joining bonus discussion
  • Q2. Explanation of salary breakup in hand
  • Q3. Any gaps in education, experience explanation
  • Q4. Confirmation about previous work experiences

Interview Preparation Tips

Topics to prepare for LTIMindtree Senior Engineer interview:
  • Azure Active Directory
  • Azure
  • Deployments in Azure
Interview preparation tips for other job seekers - If they want the opening to be filled immediately, then they will anyhow select you if you have even 30% to 40% of the required skillset required for the job and good communication. If your previous experiences are from startups, then also they will consider you. But if they are willing to wait for your notice period to end and offering you desired salary, beware then they will crunch the best out of you during interviews, they will ensure that they are hiring the right person.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

The first round was an aptitude test with questions ranging from basic mathematical concepts to logical/analytical questions. English was also included in the test. The difficulty was medium and I was able to solve 70-80% of the questions.

Round 2 - Coding Test 

Two coding questions were the part of the test. I was supposed to solve and pass all the test cases for both the questions. The coding questions tested my knowledge in the field of arrays, loops and pointers. I was able to solve one and partially solve another.

Round 3 - Technical 

(1 Question)

  • Q1. The interview was a mixture of both HR as well as Technical. I was asked decent questions and tested my knowledge in the fundamentals of programming.

Interview Preparation Tips

Topics to prepare for LTIMindtree Software Engineer interview:
  • Python
  • Java
  • Full Stack
Interview preparation tips for other job seekers - Make sure that you are good in the fundamentals of Programming(if you are looking for an IT job) or just be good at a particular thing which perfectly suites your current necessities and also helps your career to grow in the future. Do not be disheartened if things do not go your way, there is always hope and a lot of companies would like to hire an intelligent candidate like you.
Cheers :)

I applied via Campus Placement and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Prepare normal for aptitude - maths, quant, analytic

Round 2 - Group Discussion 

My GD topic was Is internet good for students or not

Round 3 - Coding Test 

I didn't attempt this as I was noob back in third year Engg

Round 4 - HR 

(1 Question)

  • Q1. Basic questions can you relocate, tell me about ur GD and composition

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy peasy give ur best. Prepare well. Hope u get the job. Phir tho google ka hi dream rhe gaya he mera.

I applied via Campus Placement and was interviewed before Oct 2021. There were 4 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 

Aptitude test has aptitude, logical and 2 coding questions

Round 3 - Technical 

(1 Question)

  • Q1. Asked about the basics of c, data structures, aptitude questions and questions related to your major
Round 4 - HR 

(1 Question)

  • Q1. General hr discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you keep in resume what you know. Most of the questions will be from your resume

Interview Questionnaire 

1 Question

  • Q1. Mainframe questions, some direct and some scenario based.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good experience. Interview process was smoothly. There were 3 rounds.
1. Technical ( lasted for 1 hour)
2. Techno manageria( 30 mins)
3. HR(30 mins)

Project based questions and scenario based questions were asked.
Hike was also good.

L&T Technology Services Interview FAQs

How many rounds are there in L&T Technology Services Python Automation 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, Resume Shortlist and Coding Test.
What are the top questions asked in L&T Technology Services Python Automation Engineer interview?

Some of the top questions asked at the L&T Technology Services Python Automation Engineer interview -

  1. How to write test cases & action, How to create list & dict [Data operations on...read more
  2. Python - Write program from Prime numbers between 1 to ...read more
  3. Robotframework Architecture, Data types in RF, set suite & teardown, conditions...read more

Tell us how to improve this page.

L&T Technology Services Python Automation Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.7
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 805 Interviews
DXC Technology Interview Questions
3.7
 • 802 Interviews
Nagarro Interview Questions
4.0
 • 763 Interviews
NTT Data Interview Questions
3.8
 • 627 Interviews
Publicis Sapient Interview Questions
3.5
 • 620 Interviews
View all
L&T Technology Services Python Automation Engineer Salary
based on 21 salaries
₹4 L/yr - ₹12.8 L/yr
7% more than the average Python Automation Engineer Salary in India
View more details

L&T Technology Services Python Automation Engineer Reviews and Ratings

based on 5 reviews

3.2/5

Rating in categories

2.7

Skill development

3.1

Work-life balance

2.6

Salary

3.3

Job security

2.7

Company culture

1.6

Promotions

2.7

Work satisfaction

Explore 5 Reviews and Ratings
Senior Engineer
5.9k salaries
unlock blur

₹5 L/yr - ₹17.1 L/yr

Engineer
4.6k salaries
unlock blur

₹2.6 L/yr - ₹8.2 L/yr

Technical Lead
2.2k salaries
unlock blur

₹8.5 L/yr - ₹30 L/yr

Project Lead
1.5k salaries
unlock blur

₹6 L/yr - ₹22.1 L/yr

Software Engineer
1.4k salaries
unlock blur

₹2.8 L/yr - ₹9.8 L/yr

Explore more salaries
Compare L&T Technology Services with

LTIMindtree

3.7
Compare

DXC Technology

3.7
Compare

Mphasis

3.4
Compare

Sutherland Global Services

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