What do you understand by true copy of a list? How is it different
from shallow copy?
Answers
Answer:
A shallow copy constructs a new compound object and then (to the extent possible) inserts references into it to the objects found in the original. A deep copy constructs a new compound object and then, recursively, inserts copies into it of the objects found in the original.
A certified true copy is a copy of a document that a notary has verified and certified (stamped and signed) as a true copy of the original document. ... Voilà, a certified true copy of an original document
Explanation:
Essentially, there are just two core differences and they're linked with each other: Deep copy stores copies of an object's values, whereas shallow copy stories references to the original memory address. Deep copy doesn't reflect changes made to the new/copied object in the original object; whereas, shallow copy does.
plz mark as brainliest and follow me