At Westonci.ca, we provide clear, reliable answers to all your questions. Join our vibrant community and get the solutions you need. Connect with a community of experts ready to help you find accurate solutions to your questions quickly and efficiently. Connect with a community of professionals ready to provide precise solutions to your questions quickly and accurately.

What will the following code display?

1. object* o;
2. object* p = new object();
3. p->SetScore(100);
4. o = p;
5. delete p;
6. cout << o->GetScore();