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

Updated 2 Mar 2023

Loadshare Networks Software Development Engineer II Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Mar 2022. There were 5 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 

(4 Questions)

  • Q1. Java related basic program questions
  • Q2. Some design pattern related questions
  • Q3. Sql queries related basic to mid level questions
  • Q4. Aws concept and it's services
  • Ans. 

    AWS is a cloud computing platform that offers a wide range of services for various purposes.

    • AWS offers services for computing, storage, databases, networking, analytics, machine learning, security, and more.

    • Some popular AWS services include EC2, S3, RDS, Lambda, DynamoDB, and CloudFront.

    • AWS also offers tools for deployment, management, and monitoring of applications and infrastructure.

    • AWS provides a pay-as-you-go prici...

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. Java related mid level coding questions
  • Q2. Sql queries related basic questions
  • Q3. Aws concepts and it's services related questions
  • Q4. Design pattern related questions and used in existing project queestion
Round 4 - HR 

(3 Questions)

  • Q1. HR related basic general questions
  • Q2. Salary discussion and basic expectations
  • Q3. Policies explanation and general discussion
Round 5 - HR 

(1 Question)

  • Q1. Call with VP engineering for project discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - always be ready with what you used in previous projects if experienced candidate and if fresher then clear with basic concept and coding logic

Skills evaluated in this interview

Interview questions from similar companies

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...

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

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 Walk-in and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Prime number star pattern Js basics form validations

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn all basics of JS and node
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Mar 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on Django middleware, models and queries
Round 2 - Technical 

(1 Question)

  • Q1. Design an algorithm to efficiently to send office bus to all location in the city
  • Ans. 

    Use a greedy algorithm to send the office bus to all locations in the city efficiently.

    • Start from the office location and pick the nearest location to visit next.

    • Continue picking the nearest unvisited location until all locations are covered.

    • Repeat the process until all locations are visited.

    • Consider using Dijkstra's algorithm or a similar approach for finding the nearest location.

    • Optimize the route by considering traf

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

(1 Question)

  • Q1. Round with CTO, mostly behavioural and expected pay

Skills evaluated in this interview

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

The exam duration is one and a half hours.

Round 2 - Coding Test 

The total exam time is one and a half hours.

Round 3 - Group Discussion 

It encompasses all topics related to full stack development.

Round 4 - Technical 

(2 Questions)

  • Q1. Asks questions on SQL
  • Q2. Asks question in typical topics
Round 5 - HR 

(1 Question)

  • Q1. Where do you see yourself in two years?
  • Ans. 

    In two years, I see myself as a senior software developer leading a team on innovative projects.

    • Advancing to a senior software developer role

    • Leading a team on new and innovative projects

    • Continuing to enhance my technical skills through ongoing learning and training

  • Answered by AI
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.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell what is your name
  • Ans. 

    My name is John Smith.

    • Full name is John Smith

    • Common name in English-speaking countries

    • No middle name or initial

  • Answered by AI
  • Q2. What do you do in free time
  • Ans. 

    In my free time, I enjoy hiking, playing video games, and learning new programming languages.

    • Hiking in local trails and national parks

    • Playing video games like Overwatch and Minecraft

    • Learning new programming languages like Python and JavaScript

  • Answered by AI
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 II interview?
Loadshare Networks interview process usually has 5 rounds. The most common rounds in the Loadshare Networks interview process are Technical, HR and Resume Shortlist.
How to prepare for Loadshare Networks Software Development Engineer II 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 RDBMS, Algorithms, Data Structures, Java and OOPS.
What are the top questions asked in Loadshare Networks Software Development Engineer II interview?

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

  1. aws concept and it's servi...read more
  2. design pattern related questions and used in existing project queest...read more
  3. sql queries related basic to mid level questi...read more

Recently Viewed

JOBS

GSPANN Technologies

No Jobs

JOBS

GSPANN Technologies

No Jobs

INTERVIEWS

Loadshare Networks

No Interviews

INTERVIEWS

Loadshare Networks

No Interviews

JOBS

Datamatics Global Services

No Jobs

INTERVIEWS

Wintax Solution

No Interviews

SALARIES

Venus Remedies

INTERVIEWS

Wintax Solution

No Interviews

INTERVIEWS

Wintax Solution

No Interviews

SALARIES

Venus Remedies

Tell us how to improve this page.

Loadshare Networks Software Development Engineer II 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 II Salary
based on 5 salaries
₹9.5 L/yr - ₹25 L/yr
34% less than the average Software Development Engineer II Salary in India
View more details
Operations Associate
86 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
77 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

Shadowfax Technologies

3.6
Compare

XpressBees

3.6
Compare

BlackBuck

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