LTI Interview Experience

LTI Interview Experience 2023

Find all attributes regarding the LTI interview process along with their latest exam pattern, Interview questions with answers, syllabus, Interview experiences, and so on.

Page highlights:

  • About LTI
  • LTI Interview Experience
  • LTI Interview Questions with Answers
  • LTI Interview preparation courses
  • LTI FAQs
LTI

About LTI

Larsen and Toubro Infotech (LTI) was established on 23 December 1996 as an Indian Multinational Information Technology service and consulting firm headquartered in Mumbai, Maharashtra. To read more about Larsen and Toubro visit: www.lntinfotech.com

Recruitment Process

LTI recruits through the following processes:-

  • Off-Campus drives
  • On-Campus drives
  • Employee referrals

Rounds:

  • Written assessment
  • Technical Round
  • HR Round

Eligibility Criteria:

  • 60% in 10th, 12th and in Graduation
  • No pending backlogs

LTI On-Campus Interview Experience

Larsen and Toubro Infotech visited our campus for their hiring drive.

There was an online round which was conducted over two days.

Day 1: Online test

Cognitive Assessment

On clearing this round we would get a package of 4 LPA. The questions include:-

  • verbal questions:- 12
  • logical questions:- 12
  • numerical questions:- 12
  • CMCQ:- 20 
  • Pseudo code:- 20
  •  Automata:- 2

Day 2: Online test

  • Level 1:- English Communication and Coding question  1
  • Level 2:- Coding  question 2

Question: Check if a Year is a Leap Year or Not.

This is the coding that was asked in Level 1 in coding. The package on clearing this round 5 LPA. 

Code: 

#include <stdio.h>

int main ()

{

int year;

scanf("%d",&year);

if(year % 400 == 0)

printf("%d is a Leap Year",year);

else if(year % 4 == 0  && year % 100 != 0)

printf("%d is a Leap Year",year);

else

printf("%d is not a Leap Year",year);

return 0;

}						

Once clearing Level 1 you will be eligible to attend Level 2.

Level 2: Coding 

Package: 6.5 LPA

  • Coding:
    • Total Question: 1 Question
    • Total Time- 45 mins

Question: Program to Reverse a Given Number

Code:

#include<stdio.h>

using namespace std;

 

//main program

int main ()

{

//variables initialization

int num, reverse = 0, rem;

 

printf("Enter a number: ");

scanf("%d",&num);

 

//loop to find reverse number

while(num != 0)

{

rem = num % 10;

reverse = reverse * 10 + rem;

num /= 10;

};

 

//output

printf("Reverse: %d",reverse);

 

return 0;

}

// Time complexity O(N)

// Space complexity : O(1)						

Another coding question that was asked to my friend in level 2 coding.

Question: Program for Octal to Decimal Conversion

Code: 

#include<stdio.h>

#include<math.h>

 

// function to convert octal to decimal

int convert(long long num)

{

int i = 0, decimal = 0;

 

// will only work for bases 2 - 10

int base = 8;

 

//converting octal to decimal

while (num!=0)

{

int digit = num % 10;

decimal += digit * pow(base, i);

 

num /= 10;

i++;

}

return decimal;

}

 

//main program

int main()

{

// long used rather than int to store large values

long long octal;

 

printf("Enter Octal Number: ");

scanf("%lld", &octal);

 

printf("Decimal: %lld", convert(octal));

 

return 0;

}						

Soon after clearing the online test, I was invited to the technical round 

Round 2: Technical Round

Questions asked were subjective sections along with some puzzle questions.

Duration: 20minutes

1. Introduce yourself.

2. How many programming languages do you know?

3. What do you know about AI/ML/DL?

4. What is DBMS?

DBMS is a collection of programs that provides users to create and maintain a database. It manages incoming data, Organizes to provide a better and easy way to users. Or in a Simpler way, DBMS provides us an interface or tool for performing different operations such as the creation of a database, inserting data into it, deleting data from it, updating the data, etc. DBMS is a software in which data is stored in a more secure way as compared to the file-based system. Using DBMS, we can overcome many problems such as data redundancy, data inconsistency, easy access, more organized and understandable, and so on.

5. Who do you keep in mind while you solve a problem? The end-user, the business, or yourself, and why?

6. Which technical skill do you wish to maintain?

7. What Is The Difference Between A Stack And An Array?

StackArray
Stack is a dynamic object whose size is constantly changing as items are pushed and popped.An array is a static object, i.e. a number of items are fixed and are assigned by the declaration of the array.
The stack may contain different data types.Arrays contain the same data types.
A stack is declared as a structure containing an array to hold the element of the stack, and an integer to indicate the current stack top within the array.Array can be a home of a stack i.e., an array can be declared large enough for the maximum size of the stack.

8. Some puzzle questions.

Round 3: HR Round

Duration: 15minutes

  1. Tell me about yourself.
  2. Why do you want to work with our corporation?
  3. Rate yourself on a scale of 1- 5.
  4. What are all difficulties you face while making projects?
  5. Do you have any educational gaps?
  6. Any questions?

Thank you

To read other companies’ interview experiences, visit Interview Dashboard: https://prepinsta.com/interview-experience/   

LTI Interview Preparation Course

Check out our LTI Interview Preparation Course on Prime, which includes:-

  • LTI Technical Interview Questions and Answers
  • LTI HR Interview Questions and Answers
  • LTI Certification Questions
  • Written LTI Interview Experience
  • and more.

FAQ on LTI Interview Experience

Question: How can I prepare for the LTI interview?

Answer:-

Visit prepinsta.com and prepinstaprime.com for interview questions from scratch.

Question: Is LTI technical interview easy?

Answer:-

Yes, LTI technical Interview is easy but you have the right preparation and guidance to crack.