Premium Employer

Infosys

3.6
based on 37.9k Reviews
Filter interviews by

10+ Blue Dart Express Interview Questions and Answers

Updated 18 Jun 2024
Popular Designations

Q1. Why do we need normalization in DBMS? What are its advantages and disadvantages?

Ans.

Normalization in DBMS is important to reduce data redundancy and improve data integrity.

  • Normalization helps in organizing data in a structured manner.

  • It reduces data redundancy and improves data integrity.

  • It helps in efficient storage and retrieval of data.

  • Normalization can also help in avoiding update anomalies.

  • However, over-normalization can lead to complex queries and slower performance.

View 1 answer

Q2. Difference between TCP and UDP protocol and also which is the better one.

Ans.

TCP is a connection-oriented protocol while UDP is connectionless. Both have their own advantages and disadvantages.

  • TCP provides reliable, ordered, and error-checked delivery of data while UDP does not guarantee any of these.

  • TCP is slower but more reliable while UDP is faster but less reliable.

  • TCP is used for applications that require high reliability and accuracy while UDP is used for applications that require speed and efficiency.

  • Examples of TCP-based applications include e...read more

Add your answer

Q3. Find out the maximum possible average value of sub-sequences of an array a.

Ans.

Find the maximum possible average value of sub-sequences of an array.

  • Calculate the prefix sum of the array.

  • Iterate through all possible sub-sequences and calculate their average.

  • Return the maximum average value.

Add your answer

Q4. the difference between list and tuple in Python along with their time complexities.

Ans.

List and tuple are both used to store collections of data in Python, but have different properties and time complexities.

  • Lists are mutable, while tuples are immutable

  • Lists use more memory than tuples

  • Lists have a variety of built-in methods, while tuples have fewer

  • Accessing an element in a tuple is faster than in a list

  • Appending to a list is faster than appending to a tuple

Add your answer
Discover Blue Dart Express interview dos and don'ts from real experiences

Q5. Difference between TCP/IP model and OSI model in computer networks.

Ans.

TCP/IP and OSI are two different models used for computer networks.

  • TCP/IP has 4 layers while OSI has 7 layers.

  • TCP/IP is used in the internet while OSI is used in academic and research environments.

  • TCP/IP is more flexible while OSI is more rigid.

  • TCP/IP is a practical model while OSI is a theoretical model.

  • Examples of TCP/IP protocols include HTTP, FTP, and SMTP while examples of OSI protocols include X.25 and ISDN.

Add your answer

Q6. Explain method overloading and method overriding in detail with examples.

Ans.

Method overloading and overriding are two concepts in object-oriented programming that allow for the creation of multiple methods with the same name.

  • Method overloading is when multiple methods have the same name but different parameters.

  • Method overriding is when a subclass provides a specific implementation of a method that is already defined in its superclass.

  • Overloading is resolved at compile-time while overriding is resolved at runtime.

  • Example of overloading: public void p...read more

Add your answer
Are these interview questions helpful?

Q7. Explain block size and paging in the operating system.

Ans.

Block size is the amount of data that can be stored in a single block of memory. Paging is a memory management technique used by the operating system.

  • Block size determines the amount of data that can be read or written to a storage device at once.

  • Paging divides memory into fixed-size blocks called pages.

  • When a program needs to access a page, the operating system loads it into memory.

  • This allows programs to use more memory than is physically available.

  • Examples of operating sys...read more

Add your answer

Q8. Jump game in which every elements have maximum jump from given index

Ans.

The task is to implement a jump game where each element specifies the maximum jump from that index.

  • Iterate through the array and keep track of the maximum reachable index at each step.

  • If the current index exceeds the maximum reachable index, return false.

  • If the loop completes without any issues, return true.

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. What is virtual memory?

Ans.

Virtual memory is a memory management technique that allows a computer to use more memory than physically available.

  • Virtual memory uses a combination of RAM and hard disk space to store data.

  • It allows multiple programs to run simultaneously without running out of memory.

  • When RAM is full, the operating system moves some data from RAM to the hard disk, freeing up space in RAM.

  • This process is called paging.

  • Virtual memory can slow down a computer if the hard disk is slow or if th...read more

Add your answer

Q10. Reverse a linked list of k-groups

Ans.

Reverse a linked list in groups of k

  • Divide the linked list into groups of k nodes

  • Reverse each group using iterative or recursive approach

  • Connect the reversed groups to form the final linked list

  • Handle edge cases like incomplete groups or empty list

  • Example: Input: 1->2->3->4->5, k=2, Output: 2->1->4->3->5

Add your answer

Q11. Explain about the Incremental Model.

Ans.

Incremental model is a software development model where the product is developed in small parts and each part is delivered incrementally.

  • The product is divided into small parts or modules.

  • Each module is developed and delivered incrementally.

  • Each increment adds new functionality to the product.

  • Testing is done after each increment is delivered.

  • Examples include Agile and Scrum methodologies.

View 1 answer

Q12. Write a code that return 2nd most value from 2 arrays

Ans.

Code to return 2nd most value from 2 arrays of strings

  • Merge both arrays into one

  • Remove duplicates

  • Sort the array in descending order and return the second element

Add your answer

Q13. Sliding Window Algorithm problem

Ans.

Sliding Window Algorithm is used to solve problems where we need to find a substring or subarray of fixed size in a larger string or array.

  • The window size should be fixed and not change during the algorithm

  • The window should slide through the larger string or array one element at a time

  • The algorithm should keep track of the maximum or minimum value in the current window

  • Examples: Maximum Sum Subarray of Size K, Smallest Subarray with a given sum

Add your answer

Q14. tree diagram from the data structures

Ans.

A tree diagram is a data structure that represents a hierarchical structure.

  • Nodes represent elements of the structure

  • Edges represent relationships between elements

  • Root node is the topmost node

  • Leaf nodes have no children

  • Examples include binary trees, AVL trees, and B-trees

Add your answer

Q15. features of python from the python

Ans.

Python is a high-level, interpreted programming language known for its simplicity and ease of use.

  • Python has a large standard library with built-in modules for various tasks

  • It supports multiple programming paradigms including object-oriented, functional and procedural programming

  • Python is dynamically typed and garbage-collected

  • It has a simple and easy-to-learn syntax, making it a popular choice for beginners

  • Python is widely used in web development, scientific computing, data ...read more

Add your answer

Q16. Greedy Algorithm

Ans.

Greedy algorithm is a technique to make locally optimal choices at each step to find a global optimum.

  • Greedy algorithm is used in optimization problems where the goal is to find the best solution among many possible solutions.

  • It works by making the best possible choice at each step, without considering the future consequences.

  • Examples include finding the shortest path in a graph, scheduling tasks to minimize completion time, and Huffman coding.

  • Greedy algorithm may not always ...read more

Add your answer

Q17. Write a sorting technique

Ans.

Bubble Sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order.

  • Compare each pair of adjacent elements in the array and swap them if they are in the wrong order

  • Repeat this process for each element in the array until no swaps are needed

  • Time complexity of O(n^2) makes it inefficient for large datasets

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Blue Dart Express

based on 15 interviews
3 Interview rounds
Coding Test Round
Technical Round - 1
Technical Round - 2
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter