t = ('a', 'b', 'c', 'd', 'e') t[0] = 'A'
Anonymous Quiz
4%
('a', 'b', 'c', 'd', 'e')
44%
('A', 'b', 'c', 'd', 'e')
39%
Error
13%
['A']
t = ('a', 'b', 'c', 'd', 'e')
t = ('A',) + t[1:]
t
t = ('A',) + t[1:]
t
Anonymous Quiz
7%
('a', 'b', 'c', 'd', 'e')
49%
('A', 'b', 'c', 'd', 'e')
44%
Error
To copy the contents of an object, including any references to embedded objects
Anonymous Quiz
67%
deep copy
33%
shallow copy
To copy the contents of an object as well as any embedded objects, and any objects
embedded in them, and so on
embedded in them, and so on
Anonymous Quiz
35%
shallow copy
65%
deep copy
t = ('a', 'b', 'c', 'd', 'e')
t = ('A') + t[1:]
t
t = ('A') + t[1:]
t
Anonymous Quiz
10%
('a', 'b', 'c', 'd', 'e')
55%
('A', 'b', 'c', 'd', 'e')
35%
Error
.............is an array that grows dynamically as more space is needed.
Anonymous Quiz
5%
Array
32%
ListArray
45%
ArrayList
18%
None Of them
string is a collection of characters that can be accessed based on their index.
Anonymous Quiz
83%
True
17%
False
operations on strings Can be .....
Anonymous Quiz
5%
concatenation
1%
returning substrings
3%
Inserting characters
91%
All of Them
......... is a group of items divided into levels. An item at one level can have successor items located at the next lower level
Anonymous Quiz
16%
Diagram Collection
84%
hierarchical collection