Problem:
Question 1: Write a program that inserts 25 random numbers between 0 and 100 in order into a linked-list object. You'll need to modify the List class to maintain ordered list.
Question 2: Write a program that reads a string consisting of a positive integer or a positive decimal number and converts the number to the numeric format. If the string consists of a decimal number, the program must use a stack to convert the decimal number to the numeric format.
Show the code, demonstrate it works properly and describe what it is doing.