This document provides code to sort a linked list in ascending order using bubble sort. It defines a Node class with data and pointer properties. It then prompts the user to enter nodes, stores them in a linked list, and displays the unsorted list. The code implements bubble sort to iterate through the list, compare adjacent nodes, and swap values if out of order. Finally, it displays the sorted linked list.