Consider the following C++ code snippet where a slotted page…
Consider the following C++ code snippet where a slotted page is updated by deleting tuples and then the changes are written back to disk. The page is then reloaded to verify the updates: std::cout deleteTuple(0); loadedPage->deleteTuple(7); loadedPage->write(filename); // Deserialize again from disk — page is updated this time auto loadedPage2 = SlottedPage::deserialize(filename); loadedPage2->print(); What does this process demonstrate about data synchronization in the context of slotted pages?