Premium Employer

i

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

LeadSoc Technologies India Verified Tick

Compare button icon Compare button icon Compare
4.3

based on 44 Reviews

Filter interviews by

LeadSoc Technologies India Senior Software Engineer Interview Questions and Answers

Updated 23 Mar 2023

LeadSoc Technologies India Senior Software Engineer Interview Experiences

2 interviews found

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

I was interviewed in Feb 2023.

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 - Coding Test 

C Programming, OS Concepts, RTOS, Project Explanation.

Round 3 - HR 

(2 Questions)

  • Q1. Introduction. General awareness questions.
  • Q2. Introduction. General talk.

Interview Preparation Tips

Topics to prepare for LeadSoc Technologies India Senior Software Engineer interview:
  • C
  • RTOS Concepts
  • Embedded Systems
  • Embedded C
Interview preparation tips for other job seekers - Very helpful people they are very much supportive while interviewing process also.

I applied via Naukri.com and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Find first two numbers in an array for a given sum.
  • Ans. 

    Algorithm to find first two numbers in an array for a given sum.

    • Loop through the array and check if the difference between the sum and each element exists in the array.

    • Use a hash table to store the elements and their indices for faster lookup.

  • Answered by AI
  • Q2. Design a data pipeline for a given situation
  • Ans. 

    Design a data pipeline for a given situation

    • Identify data sources and their formats

    • Choose appropriate data storage and processing technologies

    • Define data processing steps and their order

    • Ensure data quality and consistency

    • Implement data validation and error handling

    • Monitor and optimize pipeline performance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Depends on the client you are being hired for. I would say, stay away from such contract to hire arrangements. You will be in between a venomous snake and a fierce tiger. Both trying to kill you on the first attempt

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is a ... read more

Interview questions from similar companies

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

(2 Questions)

  • Q1. Add two linked list
  • Ans. 

    To add two linked lists, iterate through both lists simultaneously and add corresponding nodes, considering carry from previous addition.

    • Create a dummy node to hold the result.

    • Initialize current node to dummy node.

    • Iterate through both lists, adding values and carry from previous addition.

    • Move to next nodes in both lists.

    • Handle cases where one list is longer than the other.

    • Handle final carry if present.

  • Answered by AI
  • Q2. Find shortest path in graph
  • Ans. 

    Use Dijkstra's algorithm to find the shortest path in a graph

    • Implement Dijkstra's algorithm to find the shortest path between two nodes in a graph

    • Maintain a priority queue to keep track of the shortest distance to each node

    • Update the shortest distance to each node as you traverse the graph

    • Track the path by storing the previous node for each node visited

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Check tree is BST
  • Ans. 

    Check if a binary tree is a Binary Search Tree (BST)

    • Perform an in-order traversal of the tree and check if the resulting array is sorted

    • Keep track of the previous node value during traversal to compare with the current node value

    • Ensure that each node's value is greater than the previous node's value in the in-order traversal

  • Answered by AI
  • Q2. Check substring palindrome or not
  • Ans. 

    Check if a substring in an array of strings is a palindrome or not.

    • Iterate through each string in the array

    • For each string, check if any of its substrings are palindromes

    • Return true if a palindrome substring is found, false otherwise

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Nov 2023. There were 6 interview rounds.

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 - Coding Test 

Duration: 1Hour 30 Minutes, 2 Coding Questions of Total 175 Marks. 1st Question has 75 marks and 2nd Question has 100 marks.

Round 3 - Technical 

(2 Questions)

  • Q1. 1. Find the smallestMissingNumber in given array using Bitwise OR operation alone 2. Based on Array data Manipulation.
  • Ans. 

    Using Bitwise OR operation to find the smallest missing number in an array.

    • Iterate through the array and perform Bitwise OR operation with each element to set corresponding bit in a bitmask

    • Iterate through the bitmask to find the first unset bit, which represents the smallest missing number

    • Example: Array [0, 1, 3, 4, 6] would have a bitmask of 10101, smallest missing number is 2

  • Answered by AI
  • Q2. Q2: Customized Data Extraction From Given Dynamic Array & Perform Some Math Operations On the Extracted Data
Round 4 - Technical 

(1 Question)

  • Q1. Write a Pseudo code for given scenario?
  • Ans. 

    Pseudo code for a scenario

    • Define variables and data structures needed

    • Write the main logic using conditional statements and loops

    • Handle edge cases and error conditions

    • Test the pseudo code with sample inputs

  • Answered by AI
Round 5 - Technical 

(1 Question)

  • Q1. System Design & Design Pattern based questions
Round 6 - HR 

(1 Question)

  • Q1. Not Applicable (Yet to be scheduled)

Skills evaluated in this interview

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

Major questions were around problem solving, strings

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Selenium xpath and dynamic loading of elements
  • Ans. 

    Selenium xpath is used to locate elements on a web page, especially useful for dynamic loading scenarios.

    • Use xpath to locate elements based on their attributes or position on the page

    • For dynamic loading, use explicit waits to ensure elements are present before interacting with them

    • Consider using relative xpath expressions to make your tests more robust and maintainable

  • Answered by AI
  • Q2. Java programs on strings
  • Q3. Test Ng architecture explain
  • Ans. 

    TestNG is a testing framework inspired by JUnit and NUnit, with more advanced features for test automation.

    • TestNG uses annotations to define test methods and test configurations.

    • It supports parameterized tests, test dependencies, and test groups.

    • TestNG allows parallel execution of tests, making it faster than other testing frameworks.

    • It provides detailed test reports and supports data-driven testing.

    • TestNG can be integ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and go for interview

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Some technical question on advanced java
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question design swiggy app on microservice architecture
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your Protect?
  • Q2. Questions on C++
Round 2 - Technical 

(2 Questions)

  • Q1. Day to day tasks
  • Ans. 

    Day to day tasks involve coding, debugging, testing, and collaborating with team members.

    • Writing code for new features or fixing bugs

    • Debugging and troubleshooting issues

    • Testing code to ensure quality and functionality

    • Collaborating with team members on projects

    • Participating in code reviews and providing feedback

  • Answered by AI
  • Q2. Team management questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiations
  • Q2. Bahaviour questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

I interviewed with Mediatek having just 1 year of experience. It was for outsourcing position.

They asked me concepts from C language, writing code for data structures (LinkedIn list), and a question on string which I can't remember. This was pre COVID days.

Round 3 - Technical 

(1 Question)

  • Q1. Write code to insert a node to the middle of linked list
  • Ans. 

    Insert a node to the middle of a linked list

    • Find the middle node using slow and fast pointers

    • Create a new node with the data to be inserted

    • Adjust the pointers to insert the new node in the middle

  • Answered by AI

Interview Preparation Tips

Topics to prepare for MediaTek India Technology Senior Software Engineer interview:
  • C
  • Operating Systems
  • Multithreading
  • TCP
  • IPV4
  • IPV6
  • Data Structures
Interview preparation tips for other job seekers - Study concepts of C language thoroughly. All questions on pointers, double pointers, bit manipulation and memory management.

Study questions on data structures like Linked list, stacks, queues, arrays, and strings. Practice writing code in C.

Study operating system and Unix concepts like processes, threads, deadlock, mutex, semaphores, IPC mechanisms etc. Practice problems on concurrent programming.

Study networking concepts like OSI model, TCP, UDP, IP (v4 and v6) and socket programming. Practice socket programming in C.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Coding Test 

OOPS Principle.
SQL
Java Coding Round - with easy level of questions

LeadSoc Technologies India Interview FAQs

How many rounds are there in LeadSoc Technologies India Senior Software Engineer interview?
LeadSoc Technologies India interview process usually has 3 rounds. The most common rounds in the LeadSoc Technologies India interview process are Resume Shortlist, Coding Test and HR.
What are the top questions asked in LeadSoc Technologies India Senior Software Engineer interview?

Some of the top questions asked at the LeadSoc Technologies India Senior Software Engineer interview -

  1. Find first two numbers in an array for a given s...read more
  2. Design a data pipeline for a given situati...read more
  3. Introduction. General awareness questio...read more

Tell us how to improve this page.

LeadSoc Technologies India Senior Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join LeadSoc Technologies India Partnering Your Success
LeadSoc Technologies India Senior Software Engineer Salary
based on 5 salaries
₹14.2 L/yr - ₹22 L/yr
10% more than the average Senior Software Engineer Salary in India
View more details
Physical Design Engineer
23 salaries
unlock blur

₹9.6 L/yr - ₹23.5 L/yr

Software Engineer
13 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Technical Lead
12 salaries
unlock blur

₹19 L/yr - ₹28 L/yr

Engineer
7 salaries
unlock blur

₹6.6 L/yr - ₹24 L/yr

Embedded Engineer
7 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Explore more salaries
Compare LeadSoc Technologies India with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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