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 C Developer Interview Questions and Answers

Updated 21 Sep 2024

LG Soft India C Developer Interview Experiences

3 interviews found

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

Hacker rank based test , 3 codings from various topics like arrays ,strings , recursion .

Round 2 - Technical 

(1 Question)

  • Q1. Indepth questions from C/C++,Linux internals
Round 3 - Technical 

(1 Question)

  • Q1. Again coding problems and c/c++ theory questions

C Developer Interview Questions & Answers

user image madhumathi raju

posted on 30 May 2024

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

FULLY C ++ mcq , time complexity in ds

Round 2 - Technical 

(1 Question)

  • Q1. C++ programs, encapsulation,polymorphism,virtual

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

C Developer Interview Questions & Answers

user image Anonymous

posted on 21 Sep 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Nothing much, standard easy DSA.

Round 2 - Technical 

(3 Questions)

  • Q1. Concurrency in C++
  • Ans. 

    Concurrency in C++ allows multiple tasks to run simultaneously, improving performance and efficiency.

    • Concurrency in C++ can be achieved using threads, mutexes, condition variables, and atomic operations.

    • Threads allow multiple functions to run concurrently within the same program.

    • Mutexes are used to protect shared data from being accessed by multiple threads simultaneously.

    • Condition variables allow threads to wait for a...

  • Answered by AI
  • Q2. Operating systems Dive in
  • Q3. C++ Internals was stressed
Round 3 - Technical 

(2 Questions)

  • Q1. Sorting techniques
  • Q2. Invert a binary Tree
  • Ans. 

    Invert a binary tree by swapping left and right child nodes recursively.

    • Start from the root node and swap its left and right child nodes.

    • Recursively invert the left and right subtrees.

    • Repeat the process for each node in the tree.

    • Example: Original tree - 1 / \ 2 3 Inverted tree - 1 / \ 3 2

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I appeared for an interview in Jun 2016.

Interview Preparation Tips

Round: Test
Experience: We had to code in the given duration. The question was a simple dynamic programming one. But the catch was that we could test our solution only a given number of times.
Tips: Make sure you're strong in your coding basics and have enough self confidence.
Duration: 3 hours
Total Questions: 1

Round: Technical Interview
Experience: The tech round was basically on the resume. There were a few questions about the projects I had done.
Tips: Know about everything you've written in your resume. Don't write anything that you're not very sure of.

Round: HR Interview
Experience: Questions were about my work and achievements in college and future plans.
Tips: Talk freely and don't be nervous. Don't reveal any future study plans to the HR!

College Name: Nitk surathkal

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

Have to attempt 2 programming questions within 2:30 hours. Can take any time over the weekend. Relatively easy problems. Questions were long, but the solution code was small.

  • Q1. 

    The Skyline Problem

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette when viewed from a distance. Each building is ...

  • Ans. 

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette.

    • Iterate through the buildings and create a list of critical points (x, y) where the height changes.

    • Sort the critical points based on x-coordinate and process them to generate the skyline.

    • Merge consecutive horizontal segments of equal height to ensure no duplicates in the output.

  • Answered by AI
  • Q2. 

    MergeSort Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to sort the list using the 'Merge Sort' algorithm.

    Input:

    The input consists of a single line contain...
  • Ans. 

    Sort a Singly Linked List using Merge Sort algorithm.

    • Implement the Merge Sort algorithm for linked lists.

    • Divide the list into two halves, sort each half recursively, then merge them.

    • Use a fast and slow pointer to find the middle of the list for splitting.

    • Handle the base case of a single node or empty list.

    • Example: Input: 4 3 2 1 -1, Output: 1 2 3 4

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 240 Minutes
Round difficulty - Medium

Had to solve 1 programming question in 4 hours. It was in the morning on a weekend. The environment was not so good. It was a small institute and got very crowded. The platform was also buggy. but the question was not difficult. Was able to solve it in just 1 hour and leave.

  • Q1. 

    Batch Photography Problem

    Alex has acquired a machine that can photocopy photos in batches of a minimum size 'K'. Given 'N' photos with resolutions represented in an integer array photos, the machine prod...

  • Ans. 

    Minimize maximum error by splitting photos into batches of size at least 'K'.

    • Sort the array of resolutions in ascending order.

    • Iterate through the array and calculate the error for each possible batch.

    • Return the minimum possible maximum error found.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

It was in the afternoon. The interviewer basically asked me what technologies I have worked on. Checked my knowledge of those technologies with simple questions. Told me what I'll be working on if I get selected.

  • Q1. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Maintain left pointer for 0s, right pointer for 2s, and current pointer for traversal.

    • Example: If current element is 0, swap it with element at left pointer and increment both pointers.

    • E...

  • Answered by AI
Round 4 - Video Call 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Hard

It was also in the afternoon. The interviewer was the member of the team I'll be working on if I get selected. He asked me some basic questions about related technologies.
Gave me 2-3 DS & Algo problems and asked me to solve them.

  • Q1. 

    Array Sum Calculation

    Calculate the sum of all elements in an array of length N.

    Input:

    Line 1: An integer N indicating the size of the array.
    Line 2: N integers, the elements of the array, separated by ...
  • Ans. 

    Calculate the sum of all elements in an array of length N.

    • Iterate through the array and add each element to a running sum.

    • Return the final sum as the output.

  • Answered by AI
  • Q2. 

    Ninja and Alien Language Order Problem

    An alien dropped its dictionary while visiting Earth. The Ninja wants to determine the order of characters used in the alien language, based on the given list of wor...

  • Ans. 

    Determine the order of characters in an alien language based on a list of words.

    • Create a graph where each character is a node and there is a directed edge from character 'a' to character 'b' if 'a' comes before 'b' in any word.

    • Perform a topological sort on the graph to get the order of characters.

    • Return the order as a string in lexicographical order.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo CriteriaSamsung R&D Institute interview preparation:Topics to prepare for the interview - Recursion, Backtracking, Dynamic Programming, Trees, ArrayTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : It's a Daily process. Not weekly, Not monthly. DAILY!
Tip 2 : Take part in Online Contests. HackerEarth is best for Contests posted by companies.
Tip 3 : Even after you have solved some problem, try to find a better solution for it online. Companies don't want a solution, they want optimized solution.

Application resume tips for other job seekers

Tip 1 : Modify resume for each job you are applying for. It should show why you are suitable for that particular job.
Tip 2 : Remove any extra things like interests and hobbies. No one cares.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Feb 2021.

Round 1 - Assignment 

Round duration - 120 minutes
Round difficulty - Easy

Round 2 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The round contains mcqs on core java , javascript , oops and two coding questions of data structures.
The exam was at 7pm
Platform was good

  • Q1. 

    Submatrix Sum Query

    Given a 2-dimensional array ARR with 'N' rows and 'M' columns, and a set of queries in a 2-dimensional array Queries of size 'K', each query contains four integers that denote the top-...

  • Ans. 

    Given a 2D array and a set of queries, find the sum of elements within specified submatrices for each query.

    • Parse input to get array dimensions, elements, and queries

    • Iterate through queries and calculate sum of elements within specified submatrix

    • Output the sum for each query

  • Answered by AI
  • Q2. 

    String Rotation Problem Statement

    You are given a string named str and an integer D. Your task is to perform both left (anticlockwise) and right (clockwise) rotations on the given string by D units, start...

  • Ans. 

    Implement functions to perform left and right rotations on a given string by a specified number of positions.

    • Implement a function leftRotate() to perform left rotation on the string by D units.

    • Implement a function rightRotate() to perform right rotation on the string by D units.

    • Return the modified string after each rotation.

    • Ensure to handle cases where D can be greater than the length of the string.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as Software Development in PuneEligibility criteriaNo backlogsBajaj Electricals Ltd interview preparation:Topics to prepare for the interview - Data Structures , JavaScript , SQL , Dynamic Programming , Core Java , APITime required to prepare for the interview - 2 weeksInterview preparation tips for other job seekers

Tip 1 : Good knowledge of basics of data structure.
Tip 2 : Question need to be done with optimized time complexity until you won't be able to pass all test cases.
 

Application resume tips for other job seekers

Tip 1 : Atleast one good project
Tip 2 : Specially mention Java and JavaScript

Final outcome of the interviewRejected
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

Normal quantitative and data analytics questions

Round 3 - Coding Test 

Implement a function to check if a given string is palindrome

Round 4 - Technical 

(1 Question)

  • Q1. Question on C++ / OOPs
Round 5 - HR 

(1 Question)

  • Q1. Why do you want to join this company ?

I applied via Company Website and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your company?
  • Ans. 

    Our company is a leading software development firm specializing in creating innovative solutions for businesses.

    • We have a team of highly skilled software developers who are experts in various programming languages and technologies.

    • We have successfully delivered projects for clients in various industries such as finance, healthcare, and e-commerce.

    • Our company values collaboration, creativity, and continuous learning to ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice good nonverbal communication.
Ask if They Have Any Hesitations
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Explain linked list
  • Ans. 

    A linked list is a linear data structure where each element is a separate object with a pointer to the next element.

    • Linked list is made up of nodes

    • Each node contains data and a pointer to the next node

    • Can be singly or doubly linked

    • Insertion and deletion is faster than arrays

    • Traversal is slower than arrays

  • Answered by AI
  • Q2. Interace and abstract class

Skills evaluated in this interview

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

3 coding questions 12 mcq's

Round 2 - Technical 

(2 Questions)

  • Q1. Stacks and implement stacks
  • Q2. Done with the two questions then CORE subjects
Round 3 - HR 

(2 Questions)

  • Q1. Ibiilvvivuovuolvul
  • Q2. Ihlvilh ihlvhlvlvul

Interview Preparation Tips

Interview preparation tips for other job seekers - be calm and face the interview

LG Soft India Interview FAQs

How many rounds are there in LG Soft India C Developer interview?
LG Soft India interview process usually has 2-3 rounds. The most common rounds in the LG Soft India interview process are Technical and Coding Test.
What are the top questions asked in LG Soft India C Developer interview?

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

  1. Invert a binary T...read more
  2. Concurrency in ...read more
  3. Again coding problems and c/c++ theory questi...read more

Tell us how to improve this page.

LG Soft India C Developer Interview Process

based on 3 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
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.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 852 Interviews
Google Interview Questions
4.4
 • 830 Interviews
OPPO Interview Questions
4.0
 • 211 Interviews
View all
Research Engineer
390 salaries
unlock blur

₹4.5 L/yr - ₹18 L/yr

Test Engineer
385 salaries
unlock blur

₹2.8 L/yr - ₹5 L/yr

Senior Research Engineer
307 salaries
unlock blur

₹11.2 L/yr - ₹39 L/yr

Softwaretest Engineer
293 salaries
unlock blur

₹2.5 L/yr - ₹6.2 L/yr

Senior Test Engineer
248 salaries
unlock blur

₹3 L/yr - ₹6.8 L/yr

Explore more salaries
Compare LG Soft India with

OPPO

4.0
Compare

LG Electronics

4.0
Compare

Bajaj Electricals

4.0
Compare

Voltas

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