Computer Science, asked by deepugrover21, 3 months ago

All pandas data structures are ___ mutable but not always _______mutable.
a) size, value
b) semantic, size
c) value, size
d) none of the mentioned ​

Answers

Answered by HarshRoheda1234
2

Answer:

(a) size, value

Explanation:

a is the correct answer....

~~All pandas data structures are _size_ mutable but not always _value_ mutable .

Answered by aditijaink283
0

Answer:

All pandas data structures are Value mutable but not always Size mutable.

Explanation:

Although not always size-mutable, all pandas data structures are value-mutable (the values they contain can be changed). A Series' length cannot be altered, although a DataFrame, for instance, can have columns added. The great majority of methods, however, create new objects and ignore the input data. However, in general, we try to promote immutability when it makes sense. Except for Series, all Pandas data structures have mutable values (may be altered) and mutable sizes. Series is unchanging in size.

Hence , the answer to this question is (c) Value , Size .

#SPJ3

Similar questions