Upload Button Icon Add office photos

L&T Technology Services

Compare button icon Compare button icon Compare

Filter interviews by

L&T Technology Services C Developer Interview Questions and Answers

Updated 1 Nov 2022

9 Interview questions

A C Developer was asked
Q. Write a C++ class that implements debit, credit, and balance check functionalities.
Ans. 

A class for debit, credit and balance check functionalities

  • Create a class with member variables for balance

  • Add member functions for debit, credit and balance check

  • Ensure proper validation and error handling

  • Consider using exception handling for errors

A C Developer was asked
Q. Write a function to convert a string to an integer.
Ans. 

Convert string to integer in C++.

  • Use stoi() function to convert string to integer.

  • Include <string> header file.

  • stoi() function throws an exception if the string is not a valid integer.

  • Use stol() or stoll() for long integers.

  • Use atoi() for C-style strings.

C Developer Interview Questions Asked at Other Companies

asked in UBS
Q1. String Transformation Problem Given a string (STR) of length N, y ... read more
asked in UBS
Q2. Merge K Sorted Arrays Problem Statement Given 'K' different array ... read more
asked in UBS
Q3. Sort 0 1 2 Problem Statement Given an integer array arr of size ' ... read more
asked in UBS
Q4. Find Maximum Number by At-most K Swaps Given an array of non-nega ... read more
asked in UBS
Q5. BST Node Deletion Problem Given a binary search tree (BST) and a ... read more
A C Developer was asked
Q. Explain the Abstract Factory design pattern.
Ans. 

Abstract design pattern is a way to define a blueprint for a group of objects with common characteristics.

  • It allows creating objects without specifying their concrete classes.

  • It promotes loose coupling between classes.

  • It is implemented using abstract classes and interfaces.

  • Example: Shape is an abstract class and Circle, Square, Triangle are its concrete subclasses.

  • Example: JDBC API uses abstract classes and interf...

A C Developer was asked
Q. How do you add an external API to a project?
Ans. 

To add an external API to a project, you need to first obtain the API documentation and credentials.

  • Obtain API documentation and credentials

  • Integrate API into project using appropriate libraries or frameworks

  • Test API functionality and handle errors appropriately

A C Developer was asked
Q. What is IPC?
Ans. 

IPC stands for Inter-Process Communication, which allows processes to communicate and share data with each other.

  • IPC enables processes to exchange data and information with each other.

  • Common IPC mechanisms include pipes, message queues, shared memory, and sockets.

  • Examples of IPC usage include communication between a parent and child process, or between different processes on a network.

A C Developer was asked
Q. What is dynamic memory allocation in C?
Ans. 

Dynamic memory allocation in C allows for allocating memory at runtime, enabling flexibility in memory usage.

  • Dynamic memory allocation is done using functions like malloc(), calloc(), realloc() in C.

  • It allows for allocating memory as needed during program execution.

  • Dynamic memory allocation helps in managing memory efficiently by allocating and deallocating memory as required.

  • Example: int *ptr = (int*)malloc(5 * s...

A C Developer was asked
Q. What is a zombie process?
Ans. 

A zombie process is a process that has completed execution but still has an entry in the process table.

  • Zombie processes occur when a child process finishes execution before the parent process can collect its exit status.

  • Zombie processes consume system resources and should be cleaned up by the parent process using wait() or waitpid() system calls.

  • Zombie processes can be identified using tools like ps command in Uni...

Are these interview questions helpful?
🔥 Asked by recruiter 2 times
A C Developer was asked
Q. What is the difference between a structure and a union in C++?
Ans. 

Structures in C++ allow for multiple data types to be grouped together, while unions share the same memory space for all members.

  • Structures in C++ can hold multiple data types, each with its own memory allocation.

  • Unions in C++ share the same memory space for all members, allowing only one member to be active at a time.

  • Structures are used when different types of data need to be stored together, while unions are use...

A C Developer was asked
Q. Convert a value from Big Endian format to Little Endian format.
Ans. 

To convert a value from Big Endian to Little Endian format, reverse the order of bytes.

  • Iterate through the bytes of the value in reverse order

  • Swap the positions of each byte to convert from Big Endian to Little Endian

  • Example: Big Endian value 0x12345678 becomes Little Endian value 0x78563412

L&T Technology Services C Developer Interview Experiences

3 interviews found

C Developer Interview Questions & Answers

user image Anonymous

posted on 1 Nov 2022

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 

(5 Questions)

  • Q1. 1. Singleton patter: private constructor + Static function
  • Q2. 2. Convert string to integer.
  • Ans. 

    Convert string to integer in C++.

    • Use stoi() function to convert string to integer.

    • Include <string> header file.

    • stoi() function throws an exception if the string is not a valid integer.

    • Use stol() or stoll() for long integers.

    • Use atoi() for C-style strings.

  • Answered by AI
  • Q3. 3. Write a class to debit, credit and balance check functionalities
  • Ans. 

    A class for debit, credit and balance check functionalities

    • Create a class with member variables for balance

    • Add member functions for debit, credit and balance check

    • Ensure proper validation and error handling

    • Consider using exception handling for errors

  • Answered by AI
  • Q4. Explain Abstract design pattern.
  • Ans. 

    Abstract design pattern is a way to define a blueprint for a group of objects with common characteristics.

    • It allows creating objects without specifying their concrete classes.

    • It promotes loose coupling between classes.

    • It is implemented using abstract classes and interfaces.

    • Example: Shape is an abstract class and Circle, Square, Triangle are its concrete subclasses.

    • Example: JDBC API uses abstract classes and interfaces ...

  • Answered by AI
  • Q5. How to add external API to project
  • Ans. 

    To add an external API to a project, you need to first obtain the API documentation and credentials.

    • Obtain API documentation and credentials

    • Integrate API into project using appropriate libraries or frameworks

    • Test API functionality and handle errors appropriately

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics of pointers, static functions and virtual functions

Skills evaluated in this interview

C Developer Interview Questions & Answers

user image Anonymous

posted on 4 Apr 2022

I appeared for an interview in Oct 2021.

Round 1 - Video Call 

(5 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on Core C concepts, OS mainly.

  • Q1. What is the difference between a structure and a union in C++?
  • Ans. 

    Structures in C++ allow for multiple data types to be grouped together, while unions share the same memory space for all members.

    • Structures in C++ can hold multiple data types, each with its own memory allocation.

    • Unions in C++ share the same memory space for all members, allowing only one member to be active at a time.

    • Structures are used when different types of data need to be stored together, while unions are used whe...

  • Answered by AI
  • Q2. What is dynamic memory allocation in C?
  • Ans. 

    Dynamic memory allocation in C allows for allocating memory at runtime, enabling flexibility in memory usage.

    • Dynamic memory allocation is done using functions like malloc(), calloc(), realloc() in C.

    • It allows for allocating memory as needed during program execution.

    • Dynamic memory allocation helps in managing memory efficiently by allocating and deallocating memory as required.

    • Example: int *ptr = (int*)malloc(5 * sizeof...

  • Answered by AI
  • Q3. What is a zombie process?
  • Ans. 

    A zombie process is a process that has completed execution but still has an entry in the process table.

    • Zombie processes occur when a child process finishes execution before the parent process can collect its exit status.

    • Zombie processes consume system resources and should be cleaned up by the parent process using wait() or waitpid() system calls.

    • Zombie processes can be identified using tools like ps command in Unix/Lin...

  • Answered by AI
  • Q4. Convert a value from Big Endian format to Little Endian format.
  • Ans. 

    To convert a value from Big Endian to Little Endian format, reverse the order of bytes.

    • Iterate through the bytes of the value in reverse order

    • Swap the positions of each byte to convert from Big Endian to Little Endian

    • Example: Big Endian value 0x12345678 becomes Little Endian value 0x78563412

  • Answered by AI
  • Q5. What is IPC?
  • Ans. 

    IPC stands for Inter-Process Communication, which allows processes to communicate and share data with each other.

    • IPC enables processes to exchange data and information with each other.

    • Common IPC mechanisms include pipes, message queues, shared memory, and sockets.

    • Examples of IPC usage include communication between a parent and child process, or between different processes on a network.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAL&T Technology Services Ltd interview preparation:Topics to prepare for the interview - C, C++, OS, DBMS, Data Structures, Algorithms, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

C Developer Interview Questions & Answers

user image Anonymous

posted on 29 Nov 2021

I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic C questions, Structures vs Unions, Dynamic memory allocation,convert Big endian to little endian, code to replace repetition value with 0,ISR,Zombie process,IPC, Shared memory, working of system call...

Interview Preparation Tips

Interview preparation tips for other job seekers - If your well with basic, it's enough get to the Next round.

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about L&T Technology Services?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Product owner Skills related questions
Round 2 - Technical 

(1 Question)

  • Q1. Product owner questions, domain related questions, regulatory related queries,logical reasoning questions,problem solving ability related questions
Round 3 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. Why are you looking for a change?
  • Q4. Where do you see yourself in 5 years?
  • Q5. What are your strengths and weaknesses?
  • Ans. 

    My strengths include strong analytical skills, excellent communication, and problem-solving abilities. My weaknesses include being overly critical of my own work and sometimes taking on too much responsibility.

    • Strength: Strong analytical skills

    • Strength: Excellent communication

    • Strength: Problem-solving abilities

    • Weakness: Being overly critical of my own work

    • Weakness: Sometimes taking on too much responsibility

  • Answered by AI
  • Q6. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for LTIMindtree Consultant interview:
  • Product Management
  • Product Development
  • Data engineering
  • Data Analytics
  • Problem Solving
  • Logical reasoning
  • Architecture
  • Advanced Java
  • SQL
Interview preparation tips for other job seekers - Please prepare more on Domain skills and product owner Skills and also architecture level understanding of a project is alway good .
It's good if you have done any domain specific certification or specialization to stand out .

I applied via Naukri.com and was interviewed before Sep 2019. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. IQ Test
  • Q2. Machine Test
  • Q3. Face To Face

Interview Preparation Tips

Interview preparation tips for other job seekers - basically there are 3 rounds:-
1. IQ Test
2. Machine Test
3. Face to Face

IQ Test is not so tough but prepare well Machine Test
Machine Test Question are like :-
Q.1 - We declare a variable in C++ like "is_this_a_variable" and in Java like "IsThisAVariable". There is underscore in between every word and first alphabet of every word is in lowercase in C++ and in Java first alphabet is in capital without underscore. Create a program in which if user input a string in a C++ variable format it will convert the input in java variable format.

Q2. Count the frequency of a string.
user input string - pqhphi
output-
p - 2
q - 1
h - 2
i - 1

Be strong in algorithms and data structure.

Interview Questionnaire 

1 Question

  • Q1. All about SQL joins,data warehouse.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and answer only if you know the concept clearly.

Interview Preparation Tips

Round: Test
Experience: It was similar to CAT's aptitude test.
Tips: Going through the preparation material for CAT and working a bit with your speed during the test would surely help

Round: HR Interview
Experience: It was mostly a HR round with a few guesstimated and cases. They just want to know your thought process rather than judging you on the basis of your end results

College Name: IIT KANPUR
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. A company XYZ has 50 % shares in a mall. Some B company has 30% shares. A foreign company comes and buys company B. Now company XYZ comes to you and asks what should XYZ do? What would you advise?
  • Ans. 

    XYZ must assess its options after B's acquisition, considering strategic partnerships or potential buyout.

    • Evaluate the new foreign company's intentions and strategies regarding the mall.

    • Consider forming a strategic alliance with the foreign company to leverage their resources.

    • Assess the possibility of acquiring additional shares from Company B to increase influence.

    • Analyze the potential impact on mall operations and te...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The test is similar to CAT. 30 minutes are given to solve 30 questions.

Round: Interview
Experience: HR questions and a case study. Asked about BTP (which was related to analytics and optimization).It went about for 45 minutes.

Round: Interview
Experience: HR questions were asked. Gave 2-3 probability problems to solve .

General Tips: High CGPA will be usefulGood PORs will help
Skills: Quantitative Ability, Analytics
College Name: IIT-Madras

Interview Questionnaire 

2 Questions

  • Q1. Recent developments in analytics
  • Ans. 

    Recent developments in analytics

    • Advancements in machine learning algorithms

    • Increased use of artificial intelligence in data analysis

    • Emergence of big data analytics

    • Integration of analytics with Internet of Things (IoT)

    • Growing importance of predictive analytics

    • Rise of real-time analytics

  • Answered by AI
  • Q2. Usage analytics to increase outreach. How ?
  • Ans. 

    Usage analytics can increase outreach by providing insights on user behavior and preferences.

    • Analyze user data to identify patterns and trends

    • Use analytics tools to track user engagement and conversion rates

    • Segment users based on their behavior and preferences

    • Tailor marketing campaigns and outreach strategies to target specific user segments

    • Monitor the effectiveness of outreach efforts through analytics metrics

    • Continuo...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Analytic fundamentals are not expected. But, resume should be pitched impressively. SL: 20 based on resume ,written: LR,english & quantitative aptitude.

Round: Test
Experience: LR, English and quantitative aptitude

General Tips: Cat preparation helps a lot
Puzzles practice (techinterview.org)
Decision modelling course in economics minor(helps in analytics)
Probability(Decent fundaes upto binomial distributions)
Skill Tips: Analytic fundamentals are not expected.
Skills:
College Name: IIT MADRAS

Consultant Interview Questions & Answers

EXL Service user image Rahul Bhattacharyya

posted on 19 Feb 2015

Interview Preparation Tips

Round: Test
Experience: SIMPLER THAN THE CAT APTITUDE SECTION
Tips: JUST KEEP ON PRACTICING APTITUDE PROBLEMS FROM VARIOUS CAT WORKBOOKS
Duration: 40 minutes
Total Questions: 40

Round: Puzzle Interview
Experience: I HAD PURELY FINANCE BASED CV,SO I WAS ASKED QUESTIONS LIKE CALCULATING THE EMI ON A LOAN.ONE OR TWO QUESTIONS WERE ASKED ON P&C.INTERVIEWER MOSTLY TRIED TO PUT ME OFF BY TELLING ME I WASA BETTER FIT FOR OTHER COMPANIES AND NOT EXL.I HAD TO CONVINCE HIM OTHERWISE.
Tips: RELAX DURING THE INTERVIEW.MOST PEOPLE WERE BEING ASKED PUZZLES.VERY COMMON PUZZLES WERE BEING ASKED.REFER TO TECH INTERVIEW FOR PUZZLE PREPARATION.

Round: HR Interview
Experience: VERY CHILL INTERVIEW WITH A SENIOR EMPLOYEE(VP, MOST PROBABLY).JUST SAT THERE STARING AT HIS PHONE AND TOLD ME TO LEAVE AFTER 10 MINUTES

General Tips: EASY TO CRACK.PRACTICE PLENTY OF PUZZLES.
Skill Tips: PRACTICE FROM CAR PREP MATERIAL
Skills: APTITUDE
College Name: IIT KANPUR
Motivation: SENDS YOU ABROAD AFTER 1.5-2 YEARS.VERY REPUTED COMPANY.SENIORS&#44; PLACED IN GOOD POSITIONS IN THE COMPANY, PROVIDE VERY GOOD FEEDBACK.

L&T Technology Services Interview FAQs

How many rounds are there in L&T Technology Services C Developer interview?
L&T Technology Services interview process usually has 2 rounds. The most common rounds in the L&T Technology Services interview process are Resume Shortlist and Technical.
What are the top questions asked in L&T Technology Services C Developer interview?

Some of the top questions asked at the L&T Technology Services C Developer interview -

  1. 3. Write a class to debit, credit and balance check functionalit...read more
  2. How to add external API to proj...read more
  3. Explain Abstract design patte...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.7
 • 3k Interviews
Mphasis Interview Questions
3.3
 • 847 Interviews
DXC Technology Interview Questions
3.7
 • 839 Interviews
EXL Service Interview Questions
3.7
 • 804 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
NTT Data Interview Questions
3.8
 • 659 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
View all
L&T Technology Services C Developer Salary
based on 8 salaries
₹4.4 L/yr - ₹7.3 L/yr
5% more than the average C Developer Salary in India
View more details
Senior Engineer
6.2k salaries
unlock blur

₹6 L/yr - ₹13.3 L/yr

Engineer
4.8k salaries
unlock blur

₹4 L/yr - ₹8.2 L/yr

Technical Lead
2.3k salaries
unlock blur

₹13.5 L/yr - ₹23.5 L/yr

Project Lead
1.6k salaries
unlock blur

₹10.3 L/yr - ₹18 L/yr

Software Engineer
1.5k salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Explore more salaries
Compare L&T Technology Services with

LTIMindtree

3.7
Compare

DXC Technology

3.6
Compare

Mphasis

3.3
Compare

EXL Service

3.7
Compare
write
Share an Interview