Premium Employer

i

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

Loadshare Networks Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Loadshare Networks Software Development Engineer Interview Questions and Answers

Updated 2 Mar 2023

Loadshare Networks Software Development Engineer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Mar 2022. There were 4 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. Java related basic concepts and coding questions
  • Q2. SQL related basic queries and advanced queries
  • Q3. Joins, CRUD, view, constrains
Round 3 - Technical 

(1 Question)

  • Q1. Advanced sql queries, joins, update
Round 4 - HR 

(2 Questions)

  • Q1. Salary discussion, hr basic questions
  • Q2. Policies explanation and hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basic concepts clear and give it in positive way

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is diameter of Binary Tree? Write full working code.
  • Ans. 

    Diameter of a binary tree is the longest path between any two leaf nodes.

    • Calculate the height of left and right subtrees recursively.

    • Calculate the diameter recursively using the formula max(left_height + right_height + 1, max(left_diameter, right_diameter)).

    • Return the maximum diameter.

  • Answered by AI
  • Q2. Find interchanged terms from an AP, where terms are arranged in series
  • Ans. 

    To find interchanged terms from an AP series

    • Identify the common difference between terms

    • Swap the positions of adjacent terms

    • Check if the new series is also an AP

    • Repeat until no more interchanged terms can be found

  • Answered by AI
  • Q3. Explain database indexing
  • Ans. 

    Database indexing is a technique to improve the performance of database queries.

    • Indexing creates a data structure that allows for faster retrieval of data.

    • Indexes are created on one or more columns of a table.

    • Queries that use indexed columns can be executed faster.

    • Indexes can be clustered or non-clustered.

    • Clustered indexes determine the physical order of data in a table.

    • Non-clustered indexes create a separate structure...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basic data structures, operating systems and database.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What is DHCP,DNS,etc
  • Ans. 

    DHCP is a protocol that assigns IP addresses to devices on a network. DNS is a system that translates domain names to IP addresses.

    • DHCP assigns IP addresses to devices on a network

    • DNS translates domain names to IP addresses

    • DHCP reduces the need for manual IP address configuration

    • DNS allows users to access websites using domain names instead of IP addresses

  • Answered by AI
  • Q2. Dynamics host configuration Protocol Domain Name System

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Design a stack that support getmin in O(1) time and O(1) space complexities
  • Ans. 

    Design a stack that supports getmin in O(1) time and O(1) space complexities.

    • Use two stacks, one for storing the actual values and the other for storing the minimum values.

    • When pushing a new value, check if it is smaller than the current minimum value and push it to the minimum stack if it is.

    • When popping a value, check if it is the current minimum value and pop it from the minimum stack if it is.

    • To get the minimum val...

  • Answered by AI
  • Q2. Questions related OS and DBMS
  • Q3. Binary tree traversal
  • Ans. 

    Binary tree traversal is the process of visiting each node in a binary tree exactly once in a specific order.

    • There are three main types of binary tree traversal: inorder, preorder, and postorder.

    • Inorder traversal visits the left subtree, then the root, then the right subtree.

    • Preorder traversal visits the root, then the left subtree, then the right subtree.

    • Postorder traversal visits the left subtree, then the right subt...

  • Answered by AI
  • Q4. LRU cache explanation
  • Ans. 

    LRU cache is a data structure that stores the most recently used items and discards the least recently used items.

    • LRU stands for Least Recently Used

    • It has a fixed size and when the cache is full, the least recently used item is removed to make space for a new item

    • It uses a combination of a doubly linked list and a hash map to achieve O(1) time complexity for both insertion and deletion

    • Example: A web browser cache that ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good with your programming skills and fundamentals.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. There was so many questions asked to me in interview, i had gone through four different rounds of interview.
  • Q2. I was well prepared for the interview. I didn't know that there will be four rounds. I have faced them confidently with accurate answers within a time. They had impressed on my confidence and my verbal com...
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Nodejs life cycle
  • Q2. Promise in nodejs
  • Ans. 

    Promise in Node.js is an object representing the eventual completion or failure of an asynchronous operation.

    • Used to handle asynchronous operations in a more readable and manageable way

    • Can be in one of three states: pending, fulfilled, or rejected

    • Can be chained together to handle multiple asynchronous operations sequentially

    • Example: fetching data from a database using a promise-based API

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Ask to find out count occurrences of anagram
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Writtern test related to coding
Round 2 - Technical 

(1 Question)

  • Q1. Questions related node js and sql
Round 3 - Technomangerial round 

(1 Question)

  • Q1. Scenarios based questions, technical discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Given 3 strings S, S1, S2 containgin M, N and k characters respectively, task is to modify string by replaicing all substring S1 with S2 and S

Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Introduce yourself.
  • Ans. 

    I am a software developer with 5 years of experience in Java and Python.

    • Experienced in Java and Python programming languages

    • Worked on various projects involving web development and data analysis

    • Familiar with Agile methodologies and version control systems like Git

  • Answered by AI
  • Q2. Project related questions.
Contribute & help others!
anonymous
You can choose to be anonymous

Loadshare Networks Interview FAQs

How many rounds are there in Loadshare Networks Software Development Engineer interview?
Loadshare Networks interview process usually has 4 rounds. The most common rounds in the Loadshare Networks interview process are Technical, Resume Shortlist and HR.
How to prepare for Loadshare Networks Software Development Engineer 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 Loadshare Networks. The most common topics and skills that interviewers at Loadshare Networks expect are AWS, Algorithms, Data Structures, Django and MongoDB.
What are the top questions asked in Loadshare Networks Software Development Engineer interview?

Some of the top questions asked at the Loadshare Networks Software Development Engineer interview -

  1. Java related basic concepts and coding questi...read more
  2. SQL related basic queries and advanced quer...read more
  3. advanced sql queries, joins, upd...read more

Recently Viewed

INTERVIEWS

Broadridge Financial Solutions

No Interviews

INTERVIEWS

Broadridge Financial Solutions

No Interviews

INTERVIEWS

Clearing Corporation of India

No Interviews

INTERVIEWS

Broadridge Financial Solutions

No Interviews

INTERVIEWS

Broadridge Financial Solutions

No Interviews

INTERVIEWS

Dalmia Bharat Cement

No Interviews

INTERVIEWS

Optum Global Solutions

No Interviews

INTERVIEWS

Securities and Exchange Board of India

No Interviews

SALARIES

Broadridge Financial Solutions

INTERVIEWS

Dalmia Bharat Cement

No Interviews

Tell us how to improve this page.

Loadshare Networks Software Development Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Join Loadshare Networks India's largest technology-driven logistics network

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 456 Interviews
ElasticRun Interview Questions
3.5
 • 250 Interviews
Ecom Express Interview Questions
3.8
 • 197 Interviews
BlackBuck Interview Questions
3.8
 • 175 Interviews
XpressBees Interview Questions
3.6
 • 159 Interviews
DTDC Express Interview Questions
3.7
 • 151 Interviews
Blue Dart Express Interview Questions
4.0
 • 102 Interviews
GATI-KWE Interview Questions
3.9
 • 86 Interviews
View all

Loadshare Networks Software Development Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

2.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Operations Associate
86 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
79 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
76 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
47 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

HUB Incharge
43 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Loadshare Networks with

Delhivery

3.9
Compare

Ecom Express

3.8
Compare

Shadowfax Technologies

3.6
Compare

XpressBees

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