Problem:
Question 1: Write a VBA program that calculates a factorial of a number. Assume the input is a positive integer between 1 and 7 that is originally in cell A1. The answer should be in Cell B1
Question 2: Write an HLA Assembly program that prompts for an int8 value to inspect and then prints it in binary format.
Gimme a decimal value to print: 15
15 is 0000_1111
Gimme a decimal value to print: 7
7 is 0000_0111
Use assembly language.
Write the code step by step and explain it.