Complete the sentence to describe a multi-page app.
A multi-page app loads a new [1] each time the user navigates.In a multi-page app, each navigation loads a new page from the server or app.
Complete the sentence to explain how multi-page apps handle navigation.
In multi-page apps, navigation causes the browser to [1] the entire page.Multi-page apps reload the entire page when navigating to a new page.
Fix the error in this description of multi-page apps.
Multi-page apps load all content at once and [1] new pages without reloading.
Multi-page apps reload new pages from the server; they do not load all content at once.
Fill both blanks to describe how multi-page apps differ from single-page apps.
Multi-page apps [1] a new page on each click, while single-page apps [2] content dynamically without full reloads.
Multi-page apps load new pages fully, while single-page apps update parts of the page dynamically.
Fill all three blanks to complete the explanation of multi-page app architecture.
In multi-page apps, each [1] is a separate HTML file, the browser [2] the file on navigation, and the server [3] the requested page.
Each page is a separate file, the browser loads it, and the server delivers it on request.