Question: 1. Write a program in Assembly language to input 2 integer number and compute the GCF of the int. Example: First Number: 2 Second Number:



1. Write a program in Assembly language to input 2 integer number and compute the GCF of the int. Example: First Number: 2 Second Number: 3 GCF: 6 2. Write a program in assembly language to read a HEX number and print the binary of that number. Example: Number in HEX: 56 Number in Binary: 1010110 3. The Lucas sequence of numbers is generated by always adding the previous two numbers of the sequence. The first two numbers of the sequence is initialized to 2 and 1. So the next number of the sequence will be 2+1=3 and so on. Example: 21,3,4,7,11,18. First two numbers are 2, 1. The next number is generated by adding the previous two numbers) Write a program, in assembly language, that will generate the first 10 Lucas Numbers. Assume that the first two numbers are included
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
