Add office photos
Employer?
Claim Account for FREE

L&T Technology Services

3.3
based on 4.8k Reviews
Video summary
Filter interviews by

300+ Exl India Interview Questions and Answers

Updated 25 Feb 2025
Popular Designations

Q301. What is python

Ans.

Python is a high-level, interpreted programming language known for its simplicity, readability, and versatility.

  • Python is used for web development, data analysis, artificial intelligence, and more.

  • It has a large standard library and supports multiple programming paradigms.

  • Python code is often shorter and easier to read than other languages.

  • It uses indentation to indicate code blocks instead of curly braces or keywords.

  • Python is open-source and has a large and active community...read more

Add your answer

Q302. data analytics explain

Ans.

Data analytics is the process of analyzing raw data to draw conclusions and make informed decisions.

  • Data analytics involves collecting, cleaning, and transforming data into insights.

  • It uses statistical analysis, machine learning, and data visualization techniques.

  • Examples include analyzing sales data to identify trends, predicting customer behavior, and optimizing marketing campaigns.

Add your answer

Q303. types of constructors

Ans.

Types of constructors include default constructor, parameterized constructor, copy constructor, and conversion constructor.

  • Default constructor: Constructor with no parameters.

  • Parameterized constructor: Constructor with parameters to initialize object properties.

  • Copy constructor: Constructor that creates a new object as a copy of an existing object.

  • Conversion constructor: Constructor that converts one data type to another.

Add your answer

Q304. Projects explanation

Ans.

I have worked on various projects during my academic and professional career, ranging from software development to mechanical design.

  • Developed a mobile application for tracking fitness goals using Java and Android Studio

  • Designed a prototype for a new type of solar panel using SolidWorks and conducted performance testing

  • Collaborated with a team to optimize a manufacturing process using Six Sigma methodologies

Add your answer
Discover Exl India interview dos and don'ts from real experiences

Q305. Process of wtp and stp

Ans.

WTP and STP refer to water treatment plant and sewage treatment plant processes.

  • WTP involves processes like coagulation, flocculation, sedimentation, filtration, and disinfection to treat water for consumption.

  • STP involves processes like screening, primary treatment, secondary treatment, and disinfection to treat sewage before releasing it back into the environment.

  • Both processes are essential for maintaining clean water sources and protecting the environment.

  • Examples of WTP ...read more

Add your answer

Q306. Shuffle and merge in Haddop

Ans.

Shuffle and merge are key processes in Hadoop for distributing data across nodes and combining results.

  • Shuffle is the process of transferring data from mappers to reducers in Hadoop.

  • Merge is the process of combining the output from multiple reducers into a single result.

  • Shuffle and merge are essential for parallel processing and efficient data analysis in Hadoop.

  • Example: In a word count job, shuffle will group words by key and send them to reducers, while merge will combine t...read more

Add your answer
Are these interview questions helpful?

Q307. Control valve trim material

Ans.

Control valve trim material selection is crucial for optimal performance and longevity.

  • Control valve trim material should be selected based on the process fluid properties and operating conditions.

  • Common materials for control valve trim include stainless steel, carbon steel, and various alloys.

  • Factors to consider when selecting trim material include corrosion resistance, erosion resistance, and temperature limitations.

  • Trim material selection can impact valve performance, main...read more

Add your answer

Q308. Heat exchanger design

Ans.

Heat exchanger design involves selecting the appropriate type, size, and materials to efficiently transfer heat between two fluids.

  • Consider the type of heat exchanger needed (e.g. shell and tube, plate heat exchanger)

  • Calculate the required heat transfer area based on heat load and temperature difference

  • Select materials compatible with the fluids and operating conditions

  • Optimize flow rates to maximize heat transfer efficiency

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q309. Switchgear selection process

Ans.

Switchgear selection process involves evaluating electrical requirements, environmental conditions, and safety standards to choose the appropriate equipment.

  • Evaluate electrical requirements such as voltage, current, and fault levels

  • Consider environmental conditions like temperature, humidity, and altitude

  • Ensure compliance with safety standards such as ANSI, IEEE, and IEC

  • Select the appropriate type of switchgear based on the above factors, such as air-insulated, gas-insulated,...read more

Add your answer

Q310. Sfd bmd for portal frame

Ans.

Sfd bmd for portal frame refers to shear force diagram and bending moment diagram for a portal frame structure.

  • SFD (Shear Force Diagram) shows the variation of shear force along the length of the portal frame.

  • BMD (Bending Moment Diagram) shows the variation of bending moment along the length of the portal frame.

  • Portal frame structures are commonly used in industrial buildings and warehouses.

  • Calculating SFD and BMD helps in determining the internal forces and moments acting on...read more

Add your answer

Q311. Earth pressure diagram

Ans.

Earth pressure diagram shows the distribution of lateral earth pressure on a retaining wall.

  • Earth pressure diagram helps in designing retaining walls and other earth retaining structures.

  • It shows the variation of lateral earth pressure with depth along the height of the wall.

  • The diagram typically consists of a triangular or trapezoidal shape, representing the pressure distribution.

  • The diagram is important for determining the stability and design of the retaining wall.

  • Factors ...read more

Add your answer

Q312. Selection of chain drive

Ans.

The selection of chain drive depends on factors like load capacity, speed, environment, maintenance requirements, and cost.

  • Consider the load capacity and torque requirements of the application

  • Evaluate the speed and acceleration requirements to determine the appropriate chain size

  • Take into account the operating environment (e.g. temperature, moisture) to choose the right material and coating

  • Assess the maintenance requirements and choose a chain drive system that aligns with th...read more

View 1 answer

Q313. Explain P2P process

Ans.

P2P process stands for Procure-to-Pay process, which involves all steps from requisition to payment for goods or services.

  • P2P process starts with a purchase requisition being created by the requester.

  • The requisition is then approved by the appropriate authority.

  • A purchase order is generated and sent to the supplier.

  • Goods or services are received and inspected.

  • An invoice is received from the supplier.

  • The invoice is matched with the purchase order and goods receipt.

  • Payment is m...read more

Add your answer

Q314. Code:square of n number

Ans.

Code to find the square of a given number.

  • Declare a variable to store the number

  • Multiply the number by itself to get the square

  • Return the square value

Add your answer

Q315. Reverse a string?

Ans.

To reverse a string, iterate through the characters and swap the characters from start to end.

  • Iterate through the characters of the string

  • Swap the characters from start to end until reaching the middle of the string

  • Return the reversed string

Add your answer

Q316. EVM to be studied

Ans.

EVM stands for Earned Value Management, a project management technique to track project performance and progress.

  • EVM compares actual work completed and costs incurred to the planned work and costs

  • Key EVM metrics include CPI (Cost Performance Index) and SPI (Schedule Performance Index)

  • EVM helps in forecasting project outcomes and identifying potential issues early on

Add your answer

Q317. Reverse the string

Ans.

Reverse a given string

  • Use a loop to iterate through the characters of the string and build the reversed string

  • Alternatively, you can use built-in functions like reverse() in some programming languages

  • Example: Input 'hello', Output 'olleh'

Add your answer

Q318. Property of class

Ans.

Properties of a class are characteristics or attributes that define the class and its objects.

  • Properties define the state of an object

  • Properties can have different access levels (public, private, protected)

  • Properties can have default values

  • Properties can be read-only or write-only

  • Examples: class Car { private string color; public int speed; }

Add your answer
1
2
3
4
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Exl India

based on 489 interviews
Interview experience
4.0
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

3.8
 • 1.7k Interview Questions
4.1
 • 279 Interview Questions
3.4
 • 278 Interview Questions
3.9
 • 168 Interview Questions
4.0
 • 136 Interview Questions
View all
Top L&T Technology Services Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter