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
....... is a set of nodes and a set of edges that connect the nodes
Anonymous Quiz
85%
graph
12%
network
3%
weight
........ is a special type of graph where each of the edges is assigned a weight
Anonymous Quiz
10%
Graph
54%
network
36%
weight
.......... is associated with a cost for using that edge to move from one node to another
Anonymous Quiz
8%
Graph
16%
network
76%
weight
Nonlinear collections can be .....
Anonymous Quiz
11%
hierarchical
9%
grouped
80%
hierarchical or grouped