

InterviewSolution
Saved Bookmarks
1. |
Which of the following statements is used to create an empty set?(a) { }(b) set()(c) [ ](d) ( ) |
Answer» Correct option is (b) set() To explain: { } creates a dictionary not a set. Only set() creates an empty set. |
|