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, Process, and Tips

Updated 21 Feb 2025

Top LG Soft India Interview Questions and Answers

View all 42 questions

LG Soft India Interview Experiences

Popular Designations

89 interviews 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 Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude Test is based on C/C++

Round 2 - Technical 

(4 Questions)

  • Q1. Here They asked about C & C++ briefly and DSA and Communication protocols
  • Q2. About 2D arrays , Advance pointers
  • Q3. Shell scripting, Virtual function, Structure padding
  • Q4. Code to write list creation in dsa and so many
  • Ans. 

    Implement list creation in data structures and algorithms

    • Use an array to store the elements of the list

    • Implement functions to add, remove, and access elements in the list

    • Consider using a linked list for more efficient insertion and deletion operations

  • Answered by AI

Skills evaluated in this interview

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
Add answer
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I was interviewed 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.
  • Q2. Implement a linked list
  • Q3. 5 to 10 oops questions
  • Q4. 2-3 Basic OS questions
Round 3 - One-on-one 

(2 Questions)

  • Q1. Compilation stages of c++
  • 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

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

c++ intern Interview Questions & Answers

user image Munna Suprathik

posted on 5 Jul 2024

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

C++ basics such as oops, mcqs and input output based questions

Round 2 - Technical 

(2 Questions)

  • Q1. Overriding in oops concept
  • Q2. Copy constructor

Interview Preparation Tips

Topics to prepare for LG Soft India c++ intern interview:
  • C++
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Simple questions on reasoning.

Round 2 - Coding Test 

Beginner-level Python questions.

Round 3 - HR 

(1 Question)

  • Q1. Package discussions and location

Automation Engineer Interview Questions asked at other Companies

Q1. 16) What is modbus ? Types of modbus? How many slaves we can connect to one master
View answer (1)

LG Soft India interview questions for popular designations

 Research Engineer

 (11)

 Software Engineer

 (9)

 Test Engineer

 (8)

 Software Developer

 (5)

 Senior Research Engineer

 (4)

 C Developer

 (3)

 Embedded Software Engineer

 (3)

 Software Tester

 (3)

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
  • 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

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping & closing coil of vcb?
View answer (8)

Get interview-ready with Top LG Soft India Interview Questions

Interview experience
4
Good
Difficulty level
Moderate
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 - Technical 

(2 Questions)

  • Q1. Difference b/w List and Tuple? what is class and self? Inheritance related questions? Garbage Collector? OOPS Related Questions? etc..
  • Q2. Reverse the string without using slicing method? Missing numbers in the list? Ascending order of list without using sorting method?
  • Ans. 

    Reverse string without slicing, find missing numbers, sort list without sorting method

    • To reverse a string without slicing, you can use a loop to iterate through the characters and build a new string in reverse order.

    • To find missing numbers in a list, you can iterate through the list and check for gaps between consecutive numbers.

    • To sort a list in ascending order without using sorting method, you can implement a sorting

  • Answered by AI
Round 2 - Coding Test 

Python related Questions?
Find the Prime numbers Using Java script?
Multiple Inheritance code and explanation?
etc..
Some Linux related questions like
What are commands to create files?
Grep command?
etc..

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Python related and Linux and Java scripts questions.. All the Best.

Python Automation Engineer Interview Questions asked at other Companies

Q1. Find the largest no. to be created from the list of numbers in the string format. Example ['234', 56','100'] -> 56234100
View answer (2)

Jobs at LG Soft India

View all
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

Software Tester Interview Questions asked at other Companies

Q1. Which is a best technique to generate automated test report ?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Engineering (NIE) and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 hour, Basic DSA technical MCQ's

Round 2 - Technical 

(2 Questions)

  • Q1. Questions about Dynamic Allocation
  • Q2. Questions about Java OOPS

Junior Developer Interview Questions asked at other Companies

Q1. If a client website is in trouble, they are bleeding money, would you show the client the watch and say my time is over, or are you someone who will stay up all night unless problem is solved?
View answer (1)
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

Research Engineer Interview Questions asked at other Companies

Q1. Why did you use such a high degree polynomial fit?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Searching and sorting algorithms

LG Soft India Interview FAQs

How many rounds are there in LG Soft India interview?
LG Soft India interview process usually has 2-3 rounds. The most common rounds in the LG Soft India interview process are Technical, Coding Test and Aptitude Test.
How to prepare for LG Soft India interview?
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, Java and RTOS.
What are the top questions asked in LG Soft India interview?

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

  1. what do you know about testi...read more
  2. Tell me something that is not in res...read more
  3. write Singleton pattern which is thread s...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.

LG Soft India Interview Process

based on 74 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 902 Interviews
Google Interview Questions
4.4
 • 870 Interviews
Samsung Research Interview Questions
3.2
 • 130 Interviews
View all

LG Soft India Reviews and Ratings

based on 544 reviews

3.1/5

Rating in categories

2.9

Skill development

3.2

Work-life balance

3.0

Salary

3.6

Job security

2.9

Company culture

2.7

Promotions

2.9

Work satisfaction

Explore 544 Reviews and Ratings
Functional Safety Engineer

Bangalore / Bengaluru

2-7 Yrs

Not Disclosed

General Admin Team Leader

Bangalore / Bengaluru

4-7 Yrs

Not Disclosed

Automotive Cyber Security Architect- TARA

Bangalore / Bengaluru

3-8 Yrs

₹ 10-20 LPA

Explore more jobs
Test Engineer
383 salaries
unlock blur

₹2.8 L/yr - ₹5.1 L/yr

Research Engineer
358 salaries
unlock blur

₹4.8 L/yr - ₹14.3 L/yr

Softwaretest Engineer
297 salaries
unlock blur

₹2.5 L/yr - ₹7 L/yr

Senior Research Engineer
275 salaries
unlock blur

₹12 L/yr - ₹39 L/yr

Senior Test Engineer
247 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Explore more salaries
Compare LG Soft India with

Samsung Research

3.2
Compare

IBM

4.0
Compare

Microsoft Corporation

4.0
Compare

Oracle

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