Write a program in assembly language to swap two variables.
Create an array of 150 items of type Word, leave the all the values uninitialized.
WRITE A PROGRAM ON EMU 8086
Create an array of 50 items of type Byte, assign value 50 to all of the Bytesin memory using Dup.
Write a Program that stores the marks of students in AL, and displays the grade of the student
Marks < 60 Fail
60 ≤Marks ≤ 69 C.
70 ≤Marks ≤ 79 B.
80 ≤Marks ≤ 89 B.
90 ≤Marks ≤ 100 A.
Write a program IN EMU 8086
Write a program that swaps two numbers if A > B.
Develope a Fibonacci series of 20 numbers. Now push these elements into stack and then pop them.After pop each element should get inserted into queue and after dequeuing each element get inserted in link list and then print that linked list.
What is the purpose of commenting and how should it be done?
Each frame except for the tenth consists of one or
two balls, or attempts to knock down the ten pins at the end of the alley. Doing so on the
first ball of the frame is called a strike, and the second ball of the frame is not rolled.
Knocking down all ten pins with both balls (having left some up with the first ball) is called a
spare. If both attempts to knock down the pins leave some standing, the frame is called an
open frame. A spare in the tenth frame gives the bowler one extra ball; a strike in the tenth
gives him or her two extra balls. A bowling score is computed as follows. A strike counts as
10 points plus the sum of the next two balls. A spare counts as 10 points plus the next ball.
Suppose for example that the sequence of balls was
9 1 10 10 10 6 2 7 3 8 2 10 9 0 9 1 1 0
The score for the ten frames would be
Frame score
----- ----- 1 10
2 30
3 56
4 74
5 82
6 100
7 120
8 139
9 148
10 168
Create a list named nums and initialize it with at least 3 numbers [1,2,3]. Create a list named
hobbies, initialize it with at least 3 of your hobbies, for example ['Playing Cricket', 'Reading
Books', 'Cooking']. Iterate over the list nums and print hobbies for each list element, so that
the output looks like this:
AL = 10101111b BL = 00001010b TEST AL, BL; Status of FLAGS =?
Example: Determine whether a character is uppercase or lowercase.
Example: Checking a sign or value:
Example: Determine whether a number is even or odd.