Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by L&T Finance Team. If you also belong to the team, you can get access from here

L&T Finance Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

L&T Finance Senior Software Engineer Interview Questions and Answers

Updated 2 Jul 2024

L&T Finance Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Pen paper test with 5 mcq and 3 coding questions mostly on array sorting etc

Round 2 - Technical 

(1 Question)

  • Q1. Write a code for concatenation of two arrays without using Math function
  • Ans. 

    Concatenate two arrays without using Math function

    • Create a new array with the combined length of the two input arrays

    • Iterate through the first array and copy elements to the new array

    • Continue iterating through the second array and copy elements to the new array

  • Answered by AI

Interview questions from similar companies

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

Basics of DSA, Computer Fundamentals etc

Round 2 - Technical 

(1 Question)

  • Q1. Tell me about your project
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Assignment 

Hackerrank test link

Round 2 - Coding Test 

System design interview

Interview Preparation Tips

Interview preparation tips for other job seekers - bad work culture, not recommended
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Aptitude Test 

Asked to hit an API using postman or any other tool.

Round 2 - Technical 

(1 Question)

  • Q1. Two coding questions of easy to medium level.
Round 3 - HR 

(1 Question)

  • Q1. Got selected without questions

I applied via Campus Placement and was interviewed before May 2021. 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 - Coding Test 

Discussion on Oops and asked to implement linked list and then asked to modify it to fit for a binary tree.

One qsts related to algos was asked too which I don't remember

Round 3 - HR 

(1 Question)

  • Q1. Formal introduction of ourselves . Followed by few qsts on family and why IIFL

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple interview process. Focus on algos and oops concepts more.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. 1)Project related,
  • Q2. What is the Polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance in object-oriented programming languages like Java allows for polymorphism.

  • Answered by AI
  • Q3. What is RestController?
  • Ans. 

    RestController is a class in Spring framework used to handle HTTP requests and return responses as JSON or XML.

    • Handles HTTP requests in Spring framework

    • Returns responses as JSON or XML

    • Annotate a class with @RestController to define it as a RestController

    • Example: @RestController public class UserController {}

  • Answered by AI
Round 2 - Coding Test 

Find the number of occurrences of each element in the given ArrayList

Round 3 - HR 

(1 Question)

  • Q1. Discussion with hr like reason to switch.

Interview Preparation Tips

Interview preparation tips for other job seekers - be good with basics

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 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 

(3 Questions)

  • Q1. Jdbc , Spring , Collection in java
  • Q2. Final vs finally . Explain
  • Ans. 

    Final and finally are two different words with different meanings.

    • Final is an adjective that means last or ultimate, as in final exam or final decision.

    • Finally is an adverb that means at last or in the end, as in finally, we reached our destination.

    • Final is used to describe something that is definitive or conclusive, while finally is used to describe the end of a process or event.

    • Examples: The final score of the game w...

  • Answered by AI
  • Q3. Abstraction and encapsulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Have edact knowledge as u mentioned in CV

I applied via Naukri.com

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 

(1 Question)

  • Q1. MSO365, Outlook, zscaler, McAfee DLP, Encryption, bit locker encryption, end user support, hardware and software installation & Support, Technical issue resolved by quickly, Asset management, camera knowle...
Round 3 - Technical 

(1 Question)

  • Q1. Customer support and manage the remote user and resolve issue quickly

Interview Preparation Tips

Interview preparation tips for other job seekers - I knowledge good for mention all interview questions and point
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Aptitude Test 

Maths
Logical
English
C

Interview Preparation Tips

Interview preparation tips for other job seekers - Based on projects
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test with questions on aptitude and coding problem solving with 15 test cases

Round 2 - One-on-one 

(2 Questions)

  • Q1. Rotation of array
  • Ans. 

    Rotate an array of strings by a specified number of positions.

    • Create a new array and copy elements from original array based on rotation index.

    • Use modulo operator to handle cases where rotation index exceeds array length.

    • Handle edge cases like empty array or negative rotation index.

    • Example: Original array ['a', 'b', 'c', 'd', 'e'] rotated by 2 positions becomes ['c', 'd', 'e', 'a', 'b'].

  • Answered by AI
  • Q2. Sql query for 2
  • Ans. 

    SQL query to retrieve data from 2 tables using a join condition.

    • Use JOIN keyword to combine data from 2 tables based on a related column

    • Specify the columns you want to retrieve using SELECT statement

    • Add the table names and join condition in the FROM clause

  • Answered by AI

Skills evaluated in this interview

L&T Finance Interview FAQs

How many rounds are there in L&T Finance Senior Software Engineer interview?
L&T Finance interview process usually has 2 rounds. The most common rounds in the L&T Finance interview process are Aptitude Test and Technical.

Tell us how to improve this page.

L&T Finance Senior Software Engineer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Muthoot Fincorp Interview Questions
4.5
 • 512 Interviews
Shriram Finance Interview Questions
4.1
 • 350 Interviews
Bajaj Finance Interview Questions
4.0
 • 315 Interviews
Muthoot Finance Interview Questions
3.6
 • 260 Interviews
IIFL Finance Interview Questions
4.0
 • 257 Interviews
SMFG India Credit Interview Questions
4.0
 • 163 Interviews
Mahindra Finance Interview Questions
4.1
 • 154 Interviews
TVS Credit Interview Questions
4.3
 • 107 Interviews
View all
L&T Finance Senior Software Engineer Salary
based on 17 salaries
₹8 L/yr - ₹28 L/yr
9% more than the average Senior Software Engineer Salary in India
View more details

L&T Finance Senior Software Engineer Reviews and Ratings

based on 5 reviews

2.5/5

Rating in categories

2.1

Skill development

2.3

Work-life balance

2.8

Salary

2.8

Job security

1.9

Company culture

2.6

Promotions

2.2

Work satisfaction

Explore 5 Reviews and Ratings
Senior Manager
390 salaries
unlock blur

₹8.1 L/yr - ₹26 L/yr

Manager
358 salaries
unlock blur

₹4.4 L/yr - ₹16.1 L/yr

Area Sales Manager
354 salaries
unlock blur

₹4 L/yr - ₹15 L/yr

Assistant Manager
306 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Collection Officer
286 salaries
unlock blur

₹1.2 L/yr - ₹3.8 L/yr

Explore more salaries
Compare L&T Finance with

Shriram Finance

4.1
Compare

Muthoot Fincorp

4.5
Compare

IIFL Finance

4.0
Compare

Muthoot Finance

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