NPTEL Programming, Data Structures and Algorithms using Python Week 6 Assignment Answers 2024
1. Suppose u and v both denote sets in Python. What is the most general condition that guarantees that u – (v – u) == u?
- The sets u and v should be disjoint.
- The set v should be a subset of the set u.
- The set u should be a subset of the set v.
- This is true for any u and v.
Answer :- For Answers Click Here
2. Suppose u and v both denote sets in Python. What is the most general condition that guarantees that u|v == u^v?
- The sets u and v should be disjoint.
- The set u should be a subset of the set v.
- The set v should be a subset of the set u.
- This is true for any u and v.
Answer :- For Answers Click Here
3. Suppose we insert 19 into the min heap [17,25,42,67,38,89,54,98,89]. What is the resulting heap?
Answer :- For Answers Click Here
4. Suppose we execute delete-min twice on the min-heap [13,29,24,67,52,89,45,98,79,58]. What is the resulting heap?
Answer :- For Answers Click Here