Upload Button Icon Add office photos

Filter interviews by

DSV - Global Transport and Logistics Elastic Search Developer Interview Questions and Answers for Freshers

Updated 9 Apr 2024

DSV - Global Transport and Logistics Elastic Search Developer Interview Experiences for Freshers

1 interview found

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

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1. When elastic luster will be in red 2. Types of phases/nodes in elastic cluster 3. what is shard and replica 4. elastic agents and beats agents 5. types of elastic subscriptions 6. frozen tire details 7...
  • Ans. 

    Answers to various questions related to Elastic Search development.

    • 1. An elastic cluster will be in red when all primary shards and their replicas are unavailable.

    • 2. Types of phases/nodes in elastic cluster include master-eligible nodes, data nodes, and client nodes.

    • 3. A shard is a basic unit of data in Elasticsearch, while a replica is a copy of a shard for redundancy.

    • 4. Elastic agents are used for monitoring and coll...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Reason to change
  • Q2. 1. Tell about your professional and personal life

Interview Preparation Tips

Topics to prepare for DSV - Global Transport and Logistics Elastic Search Developer interview:
  • elastic search
  • logstash
  • Kibana
  • Azure
  • kubernettes
Interview preparation tips for other job seekers - Be strong in the role your looking for be confident with what you know and be prompt while answering and dont fake about anything be true to yourself.

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. What is callback function
  • Ans. 

    A callback function is a function passed as an argument to another function, which is then invoked inside the outer function.

    • Callback functions are commonly used in asynchronous programming.

    • They allow a function to call another function when a certain task is completed.

    • Callback functions can be anonymous or named functions.

    • Examples of callback functions include event handlers and AJAX requests.

  • Answered by AI
  • Q2. Arrow function
  • Q3. Call,apply,bind

I applied via Approached by Company and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Have you used multithreading?
  • Ans. 

    Yes, I have used multithreading in software development.

    • Multithreading is the ability of a central processing unit (CPU) to execute multiple threads concurrently.

    • It allows for parallel execution of tasks, improving performance and responsiveness in applications.

    • Multithreading can be used to perform tasks in the background while the main thread handles user interactions.

    • Examples of multithreading in software development...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical interview is not tough

Skills evaluated in this interview

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

The aptitude test consists of pen and paper method. They have asked the mcqs of the concepts Networking,Database, Basic Aptitude, and one program.

Round 2 - Technical 

(1 Question)

  • Q1. 1) Tell me about your self 2) Tell me about your projects and what is your contribution in your projects 3) What is the difference between global variables and local variables in c 4) Difficulties faced i...
Round 3 - HR 

(1 Question)

  • Q1. 1) Tell me about your self that is not in the resume 2) Why did you choose Engineering 3) Are you available to work in night shifts 4) How did you hear about us? 5) Are you willing to relocate? 6) What is...
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was for about 20 minutes for 20 questions

Round 2 - Coding Test 

Coding test was for 20 minutes with few code snippets and one design question

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

(1 Question)

  • Q1. Basic tech questions
Round 2 - HR 

(1 Question)

  • Q1. Salary negotiation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Including coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Basics of python
  • Q2. Data base questions

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. There questions were on java mainly focusing on oops concept followed my exception handling concept
  • Q2. What is checked and unchecked exception demonstrate with an example
  • Ans. 

    Checked and unchecked exceptions are used in Java to handle errors. Checked exceptions must be handled, while unchecked exceptions do not.

    • Checked exceptions are checked at compile-time and must be handled using try-catch or throws keyword

    • Unchecked exceptions are not checked at compile-time and do not require handling

    • Example of checked exception: IOException

    • Example of unchecked exception: NullPointerException

  • Answered by AI
  • Q3. They asked questions on html
Round 2 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy only if one knows java they can easily get in to this company

Skills evaluated in this interview

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 95 minutes
Round difficulty - Medium

The 1st round was online coding + MCQ round. It had 3 sections in total to be solved in 95 mins.
Next comes the technical interview. 
The technical interview lasted for about 45 minutes. It started with a basic introduction. Then, she framed some questions from my resume and projects which I have mentioned. Questions were mainly from Data structure, OS, DBMS, SQL. She told me to rate my data structure skill on a scale of 1 to 5.
My interview was at 10:30 am and the interviewer was really nice. She was helping me wherever I was getting stuck.

  • Q1. 

    Fourth Largest Element in the Array

    Given an array consisting of integers, your task is to determine the fourth largest element in the array. If the array does not contain at least four distinct elements,...

  • Ans. 

    Find the fourth largest element in an array, return -2147483648 if not enough distinct elements.

    • Sort the array in descending order

    • Return the fourth element if it exists, else return -2147483648

  • Answered by AI
Round 2 - Face to Face 

(5 Questions)

Round duration - 45 minutes
Round difficulty - Medium

The technical interview lasted for about 45 minutes. It started with a basic introduction. Then, she framed some questions from my resume and projects which I have mentioned. Questions were mainly from Data structure, OS, DBMS, SQL. She told me to rate my data structure skill on a scale of 1 to 5.

  • Q1. 

    Sort 0s, 1s, and 2s Problem Statement

    You are provided with an integer array/list ARR of size 'N' which consists solely of 0s, 1s, and 2s. Your task is to write a solution to sort this array/list.

    Input:

    ...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time with a single scan approach.

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

    • Iterate through the array once and swap elements based on their values and the pointers.

    • After the single scan, the array will be sorted in place with 0s, 1s, and 2s in order.

  • Answered by AI
  • Q2. 

    Remove Duplicates Problem Statement

    You are given an array of integers. The task is to remove all duplicate elements and return the array while maintaining the order in which the elements were provided.

    ...

  • Ans. 

    Remove duplicates from an array while maintaining order.

    • Use a set to keep track of unique elements.

    • Iterate through the array and add elements to the set if not already present.

    • Convert the set back to an array to maintain order.

  • Answered by AI
  • Q3. Can you describe all the joins in SQL and illustrate them with a Venn diagram?
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them.

    • Inner Join: Returns rows when there is at least one match in both tables.

    • Left Join: Returns all rows from the left table and the matched rows from the right table.

    • Right Join: Returns all rows from the right table and the matched rows from the left table.

    • Full Outer Join: Returns rows when there is a match in one of the tabl...

  • Answered by AI
  • Q4. 

    Binary Tree Node Presence Problem

    Determine if a node with a given integer value X exists in a specified binary tree.

    Input:

    The first line of each test case contains the binary tree nodes in level orde...
  • Ans. 

    Check if a node with a given value exists in a binary tree.

    • Traverse the binary tree using depth-first search (DFS) or breadth-first search (BFS) to search for the node with the given value.

    • Use a recursive or iterative approach to implement the search algorithm.

    • Return 'true' if the node with the given value is found, otherwise return 'false'.

  • Answered by AI
  • Q5. 

    Shortest Path in an Unweighted Graph

    The city of Ninjaland is represented as an unweighted graph with houses and roads. There are 'N' houses numbered 1 to 'N', connected by 'M' bidirectional roads. A road...

  • Ans. 

    Find the shortest path in an unweighted graph from house 'S' to house 'T'.

    • Use Breadth First Search (BFS) algorithm to find the shortest path in an unweighted graph.

    • Create a queue to store the current house and its neighbors, and a visited set to keep track of visited houses.

    • Start BFS from house 'S' and stop when reaching house 'T'.

    • Return the path from 'S' to 'T' once 'T' is reached.

    • If multiple shortest paths exist, ret

  • Answered by AI

Interview Preparation Tips

Eligibility criteria7 cgpa and no backlogsMaersk interview preparation:Topics to prepare for the interview - Aptitude, SQL, Data structure, Dynamic Programming, Recursion, C++, Logical reasoningTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Read interview experience before interview
Tip 2 : Think loud about each coding question.

Application resume tips for other job seekers

Tip 1 : No spelling mistake in resume.
Tip 2 : Resume should be in proper format

Final outcome of the interviewSelected

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Deep dive into the technical areas. Some questions were challenging but overall it was great.
Round 2 - Behavioral 

(1 Question)

  • Q1. Few technical questions were asked. Rest of the questions were mainly based on work experience, responsibilities, project management etc.
Round 3 - HR 

(1 Question)

  • Q1. Standard HR questions, company policies

Interview Preparation Tips

Interview preparation tips for other job seekers - Please have your basics strong and be confident.

DSV - Global Transport and Logistics Interview FAQs

How many rounds are there in DSV - Global Transport and Logistics Elastic Search Developer interview for freshers?
DSV - Global Transport and Logistics interview process for freshers usually has 2 rounds. The most common rounds in the DSV - Global Transport and Logistics interview process for freshers are Technical and HR.

Tell us how to improve this page.

DSV - Global Transport and Logistics Elastic Search Developer Interview Process for Freshers

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Maersk Interview Questions
4.2
 • 201 Interviews
DTDC Express Interview Questions
3.7
 • 151 Interviews
Exl India Interview Questions
3.5
 • 102 Interviews
FedEx Express Interview Questions
4.0
 • 94 Interviews
DP World Interview Questions
3.9
 • 63 Interviews
DHL Express Interview Questions
4.1
 • 62 Interviews
Maersk Line Interview Questions
4.1
 • 29 Interviews
FM LOGISTIC Interview Questions
3.8
 • 24 Interviews
View all
Assistant Manager
107 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Member
70 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
58 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
42 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

IT Developer
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare DSV - Global Transport and Logistics with

Kuehne + Nagel

4.0
Compare

DB Schenker

4.3
Compare

Expeditors International

3.8
Compare

CEVA Logistics

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