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 Lead Engineer Interview Questions and Answers

Updated 22 Jan 2024

LG Soft India Lead Engineer Interview Experiences

1 interview found

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

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

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

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

Interview Questionnaire 

1 Question

  • Q1. A-Z in MySQL, programming languages(only concepts)

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Self introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - say individual ideas,plans, story's.say different opinions,speek confidentially, correctly answer Yes or no questions, correctly say interested and confidential job,

I applied via Campus Placement and was interviewed in Nov 2020. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are oops concept
  • Ans. 

    OOPs concepts are the fundamental principles of object-oriented programming.

    • Encapsulation - binding data and functions that manipulate the data

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on many forms

    • Abstraction - hiding implementation details and showing only functionality

  • Answered by AI
  • Q2. What is storage classes in c
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • There are four storage classes in C: auto, register, static, and extern.

    • Auto variables are local to a block and have automatic storage duration.

    • Register variables are stored in CPU registers for faster access.

    • Static variables have a lifetime throughout the program and are initialized only once.

    • Extern variables are declared outside any function and can be a

  • Answered by AI
  • Q3. Describe about your final year project and internship

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence,and positive and answer your question confidently.

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

1.It covers all aptitude topics, and English sentences
2.Essay writing
3.Coding

Round 2 - Technical 

(2 Questions)

  • Q1. In TR , languages which u mentioned in resume they will ask Basic programing Questions on Btech project They will say one idea , we need to tell the logic how can we develop (it may varies)
  • Q2. Testing questions Polymorphism, abstraction,constructors, SQL basics
Round 3 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. Tell me about yourself.
  • Q4. What are your strengths and weaknesses?
  • Q5. Knowledge about updated technologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume is important for your TR. Mention only languages u know well.

LG Soft India Interview FAQs

How many rounds are there in LG Soft India Lead Engineer interview?
LG Soft India interview process usually has 2 rounds. The most common rounds in the LG Soft India interview process are Coding Test and One-on-one Round.
What are the top questions asked in LG Soft India Lead Engineer interview?

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

  1. write Singleton pattern which is thread s...read more
  2. what is a functor and when is it u...read more
  3. What is OOP...read more

Tell us how to improve this page.

LG Soft India Lead Engineer Interview Process

based on 2 interviews

Interview experience

1
  
Bad
View more
LG Soft India Lead Engineer Salary
based on 9 salaries
₹20 L/yr - ₹34 L/yr
67% more than the average Lead Engineer Salary in India
View more details

LG Soft India Lead Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

3.0

Work-life balance

1.0

Salary

3.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Test Engineer
381 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Research Engineer
377 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
297 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Research Engineer
278 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Test Engineer
252 salaries
unlock blur

₹0 L/yr - ₹0 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