1. A palindrome is a character string that reads the same in forward and backward. Write a program in assembly language [10] a) let the user input a string b) print it forward and backward on successive lines. c) Decide whether it is palindrome and print the conclusion. 2.The Fibonacci sequence of numbers is generated by always adding the previous two numbers of the sequence. The first two numbers of the sequence are initialized to 1. So, the next number of the sequence will be 1+1=2 and so on. [10]
Example: 1,1,2,3,5,8,13.... (First two numbers are 1, The next number is generated by adding the previous two numbers)
Write a program, in assembly language, that will generate the first 1o Fibonacci Numbers and print it. Assume that the first two numbers are included.