Assignment 3
Assignment 3
Assignment 3
Instructions:
Write a Java program for each of the below question
In your source code add header code containing your name as well as the
corresponding question text
Submit the assignment in given time limit
Date of submission: 9-1-2025
1. Create doubly linked list of strings and use it to edit the text in the paragraph. The editing
should involve:
a. Insertion of a new word in a paragraph
b. Removal of the unwanted word from a paragraph
c. Updating an existing word in a paragraph
Once all editing is over finally display the original paragraph text as well as edited paragraph
text.
2. Write a recursive algorithm for nth number of a Fibonacci number and display the
Fibonacci series up to given number by the user.
3. Write a recursive algorithm as well as program for the reversing an array of
characters.