You have a web page corpus at hand. It's constructed as a graph where each node has an ID, rank, and list of outbound links to other nodes in the graph. What will be the resulting output of the following MapReduce job?

- Calculates the ranking of each page based on the inbound links. The result is a new rank and a list of outbound links.
- Calculates the ranking of each page based on the outbound links. The result is a new rank and a list of outbound links.
- Calculates the ranking of each page based on the inbound links. The result is a new rank of each page.
- Calculates the ranking of each page based on the outbound links. The result is a new rank of each page.