✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider this code:
Person P1(2);
P1.children_list[0]= "Aryan";
P1.children_list[1]= "Siya";
Person P2 = P1;
P2.children_list[0]= "Ananya";
What will be the content of P1.children_list[0] after this?