Skip to content
main-logo
  • +91 637-050-2482
  • santuitreturns@gmail.com
Menu
Menu
  • Home
  • Income Tax
    • Income From Salary
    • Profit or gain from Business/Profession.
    • Capital Gain
    • Income From Other Sources
    • 80C to 80U
    • TDS & TCS
    • ITR FORMS
  • International Taxation
    • Transfer Pricing
    • Non-Resident Taxation
    • Foreign Tax Credit (FTC)
    • Model Tax Convention
    • Base Erosion and Profit Shifting (BEPS)
  • GST
  • Accounting
  • MCQs
    • NEET
    • NEET QUIZ TEST
    • NEET PG MCQ’s
    • NEET PG QUIZ TEST
    • Civil Engineering
    • Mechanical Engineering MCQs
    • CHSL EXAM
      • Logical Reasoning
  • Others
    • Job Tips
  • CA Courses
    • CA Inter/IPCC

TOP 20+ MCQs on D-ary Heap Data Structure with Answers

Posted on November 28, 2023

1. d-heap is similar to that of a?

a) binary heap
b) fibonacci heap
c) leftist heap
d) treap

View Answer

Answer: a

Explanation: 

 A d-heap is similar to that of a binary heap except that binary heaps have two children and d-heaps have d children.

2. d-heap is shallower than a binary heap.

a) true
b) false

View Answer

Answer: a

Explanation:

 d-heap is much shallower than a binary heap with respect to performance efficiency of insert and delete operations.

3. Which operation cannot be directly performed in a d-heap?

a) insert
b) delete
c) find
d) create

View Answer

Answer: c

Explanation:

Find operation in a d-heap cannot be performed as in other heaps. This is the main weakness of d-heap.

4. Which operation is not efficiently performed in a d-heap?

a) insert
b) delete
c) find
d) merge

View Answer

Answer: d

Explanation:

Unlike find operation, which cannot be performed in a d-heap, the task of merging two d-heaps is very difficult.

5. What is the run time efficiency of an insertion algorithm in d-heap?

a) O(N)
b) O(log N)
c) O(logd N)
d) O(Nd)

View Answer

Answer: c

Explanation:

The run time efficiency of an insertion algorithm in a d-heap is found to be O(logd N) where d is the number of children.

6. How many comparisons will occur while performing a delete-min operation?

a) d
b) d-1
c) d+1
d) 1

View Answer

Answer: b

Explanation:

Since, the delete-min operation is more expensive and the heap is shallow, the minimum of d elements can be found using d-1 comparisons.

7. How many basic operations can be performed in a d-heap?

a) 1
b) 2
c) 3
d) 4

View Answer

Answer: b

Explanation:

The two basic operations performed in a d-heap are insert and delete-min operations.

8. What is the run time efficiency of delete-min operation?

a) O(log N)
b) O(logd N)
c) O(d logd N)
d) O(d)

View Answer

Answer: c

Explanation:

The run time efficiency of a delete-min algorithm using d-1 comparisons is mathematically found to be O(d logd N).

 

9. The Statement “Fibonacci heap has better amortized running time in compare to a binomial heap”.

a) True
b) False

View Answer

Answer: a

Explanation:

Overall complexity of insertion, merging, deleting is in order of O((a+b)logn) For Fibonacci the complexity reduces to O(a+ blogn).

10. Multiplication and division to find children and parents cannot be implemented in a d-heap.

a) true
b) false

View Answer

Answer: b

Explanation:

Multiplication and division for finding children and parents can be implemented in a d-heap but d should be a power of 2.

11. How many secondary operations are performed in a d-heap?

a) 1
b) 2
c) 3
d) 4

View Answer

Answer: d

Explanation:

The other operations that can be performed in a d-heap are increasekey, decreasekey, buildheap and delete.

12. On which data structure is a d-ary heap based?

a) stack
b) queue
c) linked list
d) priority queue

View Answer

Answer: d

Explanation:

d-ary heap is a priority queue based data structure that is a generalization of binary heaps.

13. What will be the order of new heap created after union of heap H1 and H2 when created by the following code.Initially both are of the order n.
	FIB_UNION(H1,H2)
	{
		H =MAKE_HEAP()
		min[H]= min[H1]
		concatenate the root list of H2 with the root list of H
		if (min[H1] = NIL) or (min[H2]!= NIL and min[H2] < min[H1])
		then min[H] = min[H2]
		n[H]=  n[H1] + n[H2]
		free the objects H1 and H2
		return H
	}

a) n+1
b) n+n/2
c) nlogn
d) 2*n

View Answer

Answer: a

Explanation:

 Union of two trees increase the order of the resultant by atmost value 1.

14. Who invented k-d trees?

a) Arne Andersson
b) Jon Bentley
c) Jon Von Newmann
d) Rudolf Bayer

View Answer

Answer: b

Explanation:

 Jon Bentley found k-d trees. Rudolf Bayer found red black trees. Arne Andersson found AA- trees.

15. What is the condition for an equivalence relation if two cities are related within a country?

a) the two cities should have a one-way connection
b) the two cities should have a two-way connection
c) the two cities should be in different countries
d) no equivalence relation will exist between two cities

View Answer

Answer: b

Explanation:

 If the two towns are in the same country and have a two-way road connection between them, it satisfies equivalence property.

16. Reversal algorithm and juggling algorithm for array rotation have the same time complexity.

a) True
b) False

View Answer

Answer: a

Explanation:

 Time complexity of juggling algorithm is O(n) which like that of reversal algorithm. They also have the same space complexity

    You May Also Like...

  • Know About Famous Chilika Lake And Its Stories[New]
  • Top 10 Reasons for Leaving Your Current Job
  • Why China Bans Ivory Business Trade?
  • Top 100+ Cyber Security Interview Questions and Answer for 2023
  • RRB Exam Question With Answers 2023
  • TOP 20+ MCQs on Decimal to Binary using Stacks Data Structure with Answers
  • TOP MCQs on Parallel Array Data Structure with Answers
  • TOP MCQs on Self Organizing List Structure with Answers

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Quick Links

  • Home
  • About Us
  • Privacy Policy
  • Terms of Use
  • Disclaimer
  • Contact Us

Categories

  • Income Tax
  • International Taxation
  • GST
  • MCQs
  • Others
  • CA Courses

Latest Posts

  • Five changes in ITR forms of FY 2024-25 (AY 2025-26)
  • Form 10-IEA: Option to Choose Old Tax Regime
  • What is Section 54EC of the Income Tax Act?
  • What is Section 54F of the Income Tax Act?
©2025 Online Solves. All rights Reserved | Developed by AlgoPage IT Solutions Pvt. Ltd.
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
Cookie SettingsAccept All
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT