Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by LG Soft India Team. If you also belong to the team, you can get access from here

LG Soft India Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

LG Soft India Interview Questions and Answers for Experienced

Updated 8 Jul 2025
Popular Designations

18 Interview questions

An IT Analyst was asked 1mo ago
Q. What are your qualifications?
Ans. 

I hold a degree in Computer Science and have certifications in ITIL and Agile methodologies, enhancing my analytical skills.

  • Bachelor's degree in Computer Science, providing a solid foundation in programming and systems analysis.

  • ITIL certification, which equips me with best practices for IT service management.

  • Agile certification, allowing me to effectively manage projects and adapt to changing requirements.

  • Experien...

View all IT Analyst interview questions
A Softwaretest Engineer was asked 4mo ago
Q. Find the frequency of each digit or character in the given number or string and print each uniquely.
Ans. 

The task is to find the frequency of each digit or character in a given number or string and print each uniquely.

  • Iterate through the number or string and count the frequency of each digit or character

  • Store the frequencies in a map or dictionary

  • Convert the map or dictionary into an array of strings with unique characters and their frequencies

View all Softwaretest Engineer interview questions
A Softwaretest Engineer was asked 4mo ago
Q. Implement a linked list.
Ans. 

A linked list is a data structure where each element points to the next element in the sequence.

  • Create a Node class with data and next pointer

  • Initialize a head pointer to the first node

  • Traverse the list by following the next pointers

  • Insert new nodes by updating next pointers

  • Delete nodes by updating next pointers

View all Softwaretest Engineer interview questions
A Softwaretest Engineer was asked 4mo ago
Q. What are the compilation stages of C++?
Ans. 

Compilation stages of C++ involve preprocessing, compiling, assembling, linking.

  • Preprocessing: Includes header file inclusion, macro expansion.

  • Compiling: Translates source code to assembly code.

  • Assembling: Converts assembly code to machine code.

  • Linking: Combines object files and libraries to generate executable.

  • Example: g++ -E main.cpp (preprocessing), g++ -S main.cpp (compiling), g++ -c main.s (assembling), g++ m...

View all Softwaretest Engineer interview questions
A Research Engineer was asked 12mo ago
Q. Explain smart pointers.
Ans. 

Smart pointers are objects that manage the memory of dynamically allocated objects in C++ to prevent memory leaks.

  • Smart pointers automatically handle memory deallocation

  • Types of smart pointers include unique_ptr, shared_ptr, and weak_ptr

  • Example: unique_ptr ptr(new int(5));

View all Research Engineer interview questions
A Research Engineer was asked 12mo ago
Q. Explain C++ concepts.
Ans. 

C++ concepts include object-oriented programming, classes, inheritance, polymorphism, templates, and memory management.

  • Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

  • Classes are user-defined data types that contain data members and member functions.

  • Inheritance allows a class to inherit properties...

View all Research Engineer interview questions
A Software Tester was asked
Q. What is a Test Plan?
Ans. 

A test plan is a document that outlines the scope, approach, resources, and schedule of testing activities.

  • Test plan defines the testing activities to be performed, such as test objectives, test strategies, and test deliverables.

  • It includes details on the test environment, test tools, test data, and risks.

  • Test plan also specifies the roles and responsibilities of team members involved in testing.

  • It serves as a gui...

View all Software Tester interview questions
Are these interview questions helpful?
A Lead Engineer was asked
Q. Write a thread-safe Singleton pattern.
Ans. 

A thread-safe implementation of the Singleton pattern ensures that only one instance of a class is created in a multi-threaded environment.

  • Use double-checked locking to minimize the use of synchronization and improve performance.

  • Declare the instance variable as volatile to ensure visibility across threads.

  • Use synchronized block to create the instance if it doesn't exist.

  • Return the instance variable in the getInsta...

View all Lead Engineer interview questions
A Lead Engineer was asked
Q. What is OOPS?
Ans. 

OOPS stands for Object-Oriented Programming System. It is a programming paradigm that uses objects to represent and manipulate data.

  • OOPS is a programming paradigm that focuses on the concept of objects.

  • It allows for the creation of reusable and modular code.

  • Objects have properties (attributes) and behaviors (methods).

  • Encapsulation, inheritance, and polymorphism are key principles of OOPS.

  • Example: In a banking syst...

View all Lead Engineer interview questions
A Lead Engineer was asked
Q. What is a functor and when is it used?
Ans. 

A functor is an object that can be treated as a function or a function pointer. It is used to encapsulate a function or a callable object.

  • Functors are often used in C++ to implement function objects.

  • They can be used as arguments to algorithms or as template parameters.

  • Functors provide a way to customize behavior in generic programming.

  • They can be used to define custom comparison functions for sorting or searching.

  • ...

View all Lead Engineer interview questions

LG Soft India Interview Experiences for Experienced

29 interviews found

Web Developer Interview Questions & Answers

user image Anonymous

posted on 13 Jan 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Case Study 

Html. Css, js, and python only

Round 2 - Group Discussion 

Basics of above language

Interview Preparation Tips

Topics to prepare for LG Soft India Web Developer interview:
  • Python
  • HTML
  • CSS
  • Javascript
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. C++ related question
  • Q2. C related question
Round 2 - Technical 

(2 Questions)

  • Q1. Qt related question
  • Q2. Qml related question
Round 3 - Technical 

(2 Questions)

  • Q1. Qt related question
  • Q2. Qml related question
Round 4 - Technical 

(2 Questions)

  • Q1. C++ related question
  • Q2. Qml related question
Round 5 - HR 

(2 Questions)

  • Q1. No salary discussed, they just decided by their own
  • Q2. Just normal HR discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Recruited for Project Manager, and doing a work of below freshers.. not good company for experienced person
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Coding Test 

A collection of questions based on C/C++ programming language and Object-Oriented Programming (OOP) concepts.

Round 2 - Technical 

(4 Questions)

  • Q1. Find the frequency of each digit or character in the given number or string and print each uniquely.
  • Ans. 

    The task is to find the frequency of each digit or character in a given number or string and print each uniquely.

    • Iterate through the number or string and count the frequency of each digit or character

    • Store the frequencies in a map or dictionary

    • Convert the map or dictionary into an array of strings with unique characters and their frequencies

  • Answered by AI
  • Q2. Implement a linked list
  • Ans. 

    A linked list is a data structure where each element points to the next element in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to the first node

    • Traverse the list by following the next pointers

    • Insert new nodes by updating next pointers

    • Delete nodes by updating next pointers

  • Answered by AI
  • Q3. 5 to 10 oops questions
  • Q4. 2-3 Basic OS questions
Round 3 - One-on-one 

(2 Questions)

  • Q1. Compilation stages of c++
  • Ans. 

    Compilation stages of C++ involve preprocessing, compiling, assembling, linking.

    • Preprocessing: Includes header file inclusion, macro expansion.

    • Compiling: Translates source code to assembly code.

    • Assembling: Converts assembly code to machine code.

    • Linking: Combines object files and libraries to generate executable.

    • Example: g++ -E main.cpp (preprocessing), g++ -S main.cpp (compiling), g++ -c main.s (assembling), g++ main.o...

  • Answered by AI
  • Q2. Coding good practices

Interview Preparation Tips

Interview preparation tips for other job seekers - If u are joining for permanent position then fine.Go ahead

IT Analyst Interview Questions & Answers

user image Anonymous

posted on 9 Jun 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. What your colification
  • Ans. 

    I hold a degree in Computer Science and have certifications in ITIL and Agile methodologies, enhancing my analytical skills.

    • Bachelor's degree in Computer Science, providing a solid foundation in programming and systems analysis.

    • ITIL certification, which equips me with best practices for IT service management.

    • Agile certification, allowing me to effectively manage projects and adapt to changing requirements.

    • Experience wi...

  • Answered by AI
  • Q2. What your name
  • Ans. 

    My name is [Your Name], a dedicated IT Analyst with a passion for technology and problem-solving.

    • I have a background in computer science and experience in data analysis.

    • I enjoy collaborating with teams to improve IT systems and processes.

    • In my previous role, I successfully implemented a new software solution that increased efficiency by 20%.

    • I am always eager to learn about emerging technologies and trends in the IT ind...

  • Answered by AI
  • Q3. What went will
  • Ans. 

    The project was successful due to effective teamwork, clear communication, and timely delivery of milestones.

    • Strong collaboration among team members led to innovative solutions, such as implementing Agile methodologies.

    • Regular check-ins and updates ensured everyone was aligned on project goals, reducing misunderstandings.

    • Utilized project management tools like Jira to track progress and address issues promptly, enhancin...

  • Answered by AI
  • Q4. Why are you choose this job
  • Ans. 

    I chose this job to leverage my analytical skills in IT, drive innovation, and contribute to impactful projects that enhance user experiences.

    • Passion for technology: I have always been fascinated by how technology can solve real-world problems, like streamlining processes in businesses.

    • Analytical mindset: My background in data analysis allows me to identify trends and insights, which can lead to better decision-making.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard work Hunest True

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Jan 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Basic C++ questions , Threading design patterns
Functors
Std:: function
Std::move and modern c++ features
Moving a threading
Vectors
Smart pointers
Design a smart pointers
Design a vector

Round 2 - One-on-one 

(5 Questions)

  • Q1. Design patterns singleton factory observer Threading Strong problems like palindrome C++ output problems Recursive functions Linkedlist
  • Q2. Write Singleton pattern which is thread safe
  • Ans. 

    A thread-safe implementation of the Singleton pattern ensures that only one instance of a class is created in a multi-threaded environment.

    • Use double-checked locking to minimize the use of synchronization and improve performance.

    • Declare the instance variable as volatile to ensure visibility across threads.

    • Use synchronized block to create the instance if it doesn't exist.

    • Return the instance variable in the getInstance()...

  • Answered by AI
  • Q3. Observer design pattern sample program
  • Ans. 

    The Observer pattern allows objects to subscribe and receive updates from a subject when its state changes.

    • Decouples the subject from its observers, promoting loose coupling.

    • Useful in event-driven systems, like GUI applications.

    • Example: A news agency (subject) notifies subscribers (observers) about breaking news.

    • Supports multiple observers, allowing for scalability.

    • Can be implemented using interfaces in languages like ...

  • Answered by AI
  • Q4. What is a functor and when is it used
  • Ans. 

    A functor is an object that can be treated as a function or a function pointer. It is used to encapsulate a function or a callable object.

    • Functors are often used in C++ to implement function objects.

    • They can be used as arguments to algorithms or as template parameters.

    • Functors provide a way to customize behavior in generic programming.

    • They can be used to define custom comparison functions for sorting or searching.

    • Examp...

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

    OOPS stands for Object-Oriented Programming System. It is a programming paradigm that uses objects to represent and manipulate data.

    • OOPS is a programming paradigm that focuses on the concept of objects.

    • It allows for the creation of reusable and modular code.

    • Objects have properties (attributes) and behaviors (methods).

    • Encapsulation, inheritance, and polymorphism are key principles of OOPS.

    • Example: In a banking system, a...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for LG Soft India Lead Engineer interview:
  • C++
  • Multithreading
Interview preparation tips for other job seekers - The LG HR calls and conducts interview. Waste of time and energy even after you have cleared the technical rounds . The HR would request to give the entire offer letter along with company logo for getting the counter offer which even if you provide nothing will yield out of it . Simply a waste of time . Just a look into how the company treats its employees

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test consist of 25-30 questions (I don’t remember exactly) and most of all questions are related to software testing

Round 2 - Technical 

(4 Questions)

  • Q1. 1.What is Test Plan?
  • Ans. 

    A test plan is a document that outlines the scope, approach, resources, and schedule of testing activities.

    • Test plan defines the testing activities to be performed, such as test objectives, test strategies, and test deliverables.

    • It includes details on the test environment, test tools, test data, and risks.

    • Test plan also specifies the roles and responsibilities of team members involved in testing.

    • It serves as a guide fo...

  • Answered by AI
  • Q2. 2.Test Secnario & Test Cases (Diff & Definition)
  • Q3. 3.Types of Testing
  • Ans. 

    Types of testing include functional testing, non-functional testing, manual testing, automated testing, and more.

    • Functional Testing: Testing the functionality of the software against the requirements.

    • Non-Functional Testing: Testing aspects like performance, usability, security, etc.

    • Manual Testing: Testing done manually by testers without the use of automation tools.

    • Automated Testing: Testing done using automation tools...

  • Answered by AI
  • Q4. 4.Agile methodology

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain about C++ concepts
  • Ans. 

    C++ concepts include object-oriented programming, classes, inheritance, polymorphism, templates, and memory management.

    • Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • Classes are user-defined data types that contain data members and member functions.

    • Inheritance allows a class to inherit properties and ...

  • Answered by AI
  • Q2. Explain about the smart pointers
  • Ans. 

    Smart pointers are objects that manage the memory of dynamically allocated objects in C++ to prevent memory leaks.

    • Smart pointers automatically handle memory deallocation

    • Types of smart pointers include unique_ptr, shared_ptr, and weak_ptr

    • Example: unique_ptr ptr(new int(5));

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Selected Selected
  • Q1. Markdown related questions
  • Q2. What all the challenges you have faced
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About java basics like strings , arrays
  • Q2. Collections, map , hasmap

Team Lead Interview Questions & Answers

user image Anonymous

posted on 24 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Linux security details and indepth

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 LG Soft India?
Ask anonymously on communities.

LG Soft India Interview FAQs

How many rounds are there in LG Soft India interview for experienced candidates?
LG Soft India interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the LG Soft India interview process for experienced candidates are Technical, HR and Resume Shortlist.
How to prepare for LG Soft India interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at LG Soft India. The most common topics and skills that interviewers at LG Soft India expect are C++, Linux, C, RTOS and Debugging.
What are the top questions asked in LG Soft India interview for experienced candidates?

Some of the top questions asked at the LG Soft India interview for experienced candidates -

  1. Tell me something that is not in res...read more
  2. write Singleton pattern which is thread s...read more
  3. what is a functor and when is it u...read more
How long is the LG Soft India interview process?

The duration of LG Soft India interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.4/5

based on 20 interview experiences

Difficulty level

Moderate 92%
Hard 8%

Duration

Less than 2 weeks 64%
2-4 weeks 18%
6-8 weeks 9%
More than 8 weeks 9%
View more

Interview Questions from Similar Companies

OPPO Interview Questions
4.0
 • 230 Interviews
LG Electronics Interview Questions
3.9
 • 228 Interviews
Blue Star Interview Questions
4.0
 • 178 Interviews
HP India Interview Questions
4.0
 • 151 Interviews
Voltas Interview Questions
4.0
 • 149 Interviews
Samsung Research Interview Questions
3.2
 • 140 Interviews
Bajaj Electricals Interview Questions
4.0
 • 133 Interviews
Whirlpool Interview Questions
3.9
 • 107 Interviews
View all

LG Soft India Reviews and Ratings

based on 620 reviews

3.1/5

Rating in categories

2.8

Skill development

3.2

Work-life balance

3.0

Salary

3.6

Job security

2.8

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 620 Reviews and Ratings
BSP Developer

Bangalore / Bengaluru

4-6 Yrs

Not Disclosed

Explore more jobs
Test Engineer
419 salaries
unlock blur

₹2.8 L/yr - ₹5.1 L/yr

Research Engineer
410 salaries
unlock blur

₹7.2 L/yr - ₹15.5 L/yr

Senior Research Engineer
321 salaries
unlock blur

₹19.2 L/yr - ₹34.4 L/yr

Softwaretest Engineer
288 salaries
unlock blur

₹3 L/yr - ₹5.7 L/yr

Senior Test Engineer
263 salaries
unlock blur

₹2.9 L/yr - ₹6.8 L/yr

Explore more salaries
Compare LG Soft India with

OPPO

4.0
Compare

LG Electronics

3.9
Compare

Bajaj Electricals

4.0
Compare

Voltas

4.0
Compare
write
Share an Interview