Upload Button Icon Add office photos

Filter interviews by

LG Electronics Senior Software Developer Interview Questions and Answers

Updated 19 Feb 2024

LG Electronics Senior Software Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I was interviewed in Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Stl, types of pointer, bitwise, heap sort

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy but deep knowledge required

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Write program on binary search in java

Round 2 - Technical 

(2 Questions)

  • Q1. Asked on oops concepts
  • Q2. Asked on java collections, patters
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Aptitude Test 

A standard aptitude test consisting of multiple-choice questions that needed to be completed within a specific time frame was administered. It has been four years, so I do not recall the details.

Round 2 - Coding Test 

Samsung's coding test consists of solving a single complex question over a duration of four hours. The time complexity typically holds less significance; some questions can even be tackled with O(n^3) complexity. The emphasis is on our understanding of the problem statement and our approach to coding the solution. Since the solution tends to be quite extensive, requiring substantial code, optimization is not generally the primary focus. It is important to offer a reasonable solution. Topics such as graphs, binary search, and object-oriented programming are commonly featured in the test.

Round 3 - Technical 

(3 Questions)

  • Q1. It was a technical discussion round. Usually Java & Android are a plus to have because Samsung focuses on it a lot. But, becasue I was experienced in Python, Django and Machine Learning instead, I asked i...
  • Q2. I remember only 1 question from Data Structures which is : Detecting a cycle in Linked list. I gave a solution to that. After that, I was asked to write a proof why does this concept works. After soem thin...
  • Q3. There were a lot of questions on Operating Systems like on Deadlock, Partitionn and Scheduling related questions. At the end, I was given a small problem with jobs coming in a queue at certain timestamps, ...
Round 4 - HR 

(1 Question)

  • Q1. I'll never forget this interview. It was a roast session 😂 Interviewer roasted the hell out of me. At that time, I remembered I read about Stress Interviews in the management subject and that exactly was ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patient, prepare thoroughly and strategically. Never postpone tasks for tomorrow; your opportunity will arrive as well.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to design apis
  • Ans. 

    Designing APIs involves defining endpoints, request/response formats, authentication, versioning, and documentation.

    • Define clear and consistent endpoints for different functionalities

    • Design request and response formats that are easy to understand and work with

    • Implement authentication mechanisms to secure the API

    • Consider versioning to support backward compatibility

    • Provide comprehensive documentation for developers to ea

  • Answered by AI
  • Q2. How to structure databases for data collection
  • Ans. 

    Structure databases by identifying data entities, relationships, and attributes.

    • Identify data entities (e.g. customers, products) and their attributes

    • Define relationships between entities (e.g. one-to-many, many-to-many)

    • Normalize data to reduce redundancy and improve data integrity

    • Use primary keys to uniquely identify each record

    • Consider indexing for faster data retrieval

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. In detail questions related to the exp
  • Q2. In detail hr related question

Interview Preparation Tips

Interview preparation tips for other job seekers - please be confident be prepared

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Array topics - 2 question from this topic
  • Q2. Linkedlist coding problem - 1 problem from this topic
Round 2 - Coding Test 

Sql problem solving - 2 problem from this topic

Round 3 - Behavioral 

(1 Question)

  • Q1. Project discussion - projects you worked on
  • Ans. 

    I have worked on various projects including a web application for a retail company and a mobile app for a fitness tracker.

    • Developed a web application for a retail company to manage inventory and sales

    • Created a mobile app for a fitness tracker to track workouts and progress

    • Collaborated with team members to design and implement features

    • Utilized technologies such as React, Node.js, and MongoDB

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Python and sql questions
Round 2 - Technical 

(1 Question)

  • Q1. Client interview
Round 3 - HR 

(1 Question)

  • Q1. General discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. OOPS concepts with DSA in java
  • Ans. 

    OOPS concepts in Java are principles like Inheritance, Encapsulation, Polymorphism, and Abstraction. DSA involves data structures and algorithms.

    • OOPS concepts in Java include Inheritance, where a class inherits properties and behaviors from another class.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Polymorphism allows objects to be treated as instances of their parent cla...

  • Answered by AI
  • Q2. Questions related to resume projects and tech stacks used.
Round 2 - HR 

(1 Question)

  • Q1. Questions related to previous experiences in team oriented internships

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have good basics of DSA and OOPS in JAVA

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude train, time and work distance

Round 2 - Technical 

(1 Question)

  • Q1. Basics about my project and 3 eazy level coding question
Round 3 - HR 

(1 Question)

  • Q1. Discuss about salary and work cultrue
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

About ai
today generation

Interview Preparation Tips

Interview preparation tips for other job seekers - find well
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(4 Questions)

  • Q1. Why to join WD?
  • Ans. 

    WD offers exciting opportunities for growth and innovation in the software engineering field.

    • Opportunity to work on cutting-edge technologies

    • Collaborative and supportive work environment

    • Career development and growth opportunities

    • Strong company culture and values

    • Global presence and diverse projects

  • Answered by AI
  • Q2. Detect loop in linked list
  • Ans. 

    Use Floyd's Tortoise and Hare algorithm to detect loop in linked list.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps.

    • If they meet at any point, there is a loop in the linked list.

  • Answered by AI
  • Q3. What are different product of WD?
  • Ans. 

    WD offers a variety of products including external hard drives, internal hard drives, SSDs, and network attached storage devices.

    • External hard drives

    • Internal hard drives

    • SSDs

    • Network attached storage devices

  • Answered by AI
  • Q4. Do you want to ask any questions?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't know result yet

Skills evaluated in this interview

LG Electronics Interview FAQs

How many rounds are there in LG Electronics Senior Software Developer interview?
LG Electronics interview process usually has 1 rounds. The most common rounds in the LG Electronics interview process are Technical.

Tell us how to improve this page.

LG Electronics Senior Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Samsung Interview Questions
4.0
 • 554 Interviews
Dell Interview Questions
4.0
 • 391 Interviews
HARMAN Interview Questions
3.8
 • 257 Interviews
OPPO Interview Questions
4.0
 • 208 Interviews
Vivo Interview Questions
4.1
 • 190 Interviews
Philips Interview Questions
3.9
 • 155 Interviews
Blue Star Interview Questions
4.0
 • 154 Interviews
Apple Interview Questions
4.3
 • 141 Interviews
Daikin Interview Questions
4.2
 • 140 Interviews
HP India Interview Questions
4.1
 • 138 Interviews
View all
LG Electronics Senior Software Developer Salary
based on 4 salaries
₹14 L/yr - ₹42 L/yr
94% more than the average Senior Software Developer Salary in India
View more details
Assistant Manager
323 salaries
unlock blur

₹7 L/yr - ₹17.1 L/yr

Sales Executive
304 salaries
unlock blur

₹1.2 L/yr - ₹6 L/yr

Senior Engineer
299 salaries
unlock blur

₹3.6 L/yr - ₹13 L/yr

Deputy Manager
299 salaries
unlock blur

₹8.6 L/yr - ₹22.4 L/yr

Team Lead
215 salaries
unlock blur

₹1.5 L/yr - ₹6.2 L/yr

Explore more salaries
Compare LG Electronics with

Samsung

4.0
Compare

Whirlpool

4.0
Compare

Voltas

4.0
Compare

Panasonic

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