Report Bug
Qus : Which one the following is a mutable data type ?
Qusनिम्नलिखित में से कौन सा एक परिवर्तनशील डेटा प्रकार है?

A. set
B. tuple
C. string
D. None of These


Solution
A. set



Explanation

The set is a mutable data type. Sets are unordered collections of unique elements. The key characteristics of sets are:

Unordered

Mutable

Unique Elements





Report Bug