Questions: 338

Answers by our Experts: 279

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

1) Write a program in assembly language using emu8086 to the handle following cases.



The program takes a character input.


Enter any character From A-Z :


  • If the user enters an uppercase alphabet simply show the message “This is upper case letter”
  • If the user enters a lowercase alphabet, then simply show the message “This is lower case letter”
  • If the user enters any other character its shows the wrong input.


The program must be compatible with emu8086.


1) Convert the following pseudo-code to assembly language using em8086:


a = 0 b=2


for (i=0, i<=9 , i+2)


{


a=a+b


cout<<"number="<

a++


}


The program must be compatible with emu8086.


1) Write a program in assembly language using emu8086 to create the following Fibonacci series.


{0,1, 1, 2, 3, 5, 8}


The program must be compatible with emu8086.


Create an array of size 10. Take inputs from the user and populate the array. The inputs will be numerical values ranging from [1-9]. Now, you are to find all the pairs of numbers whose sum is equal to 10.


If there are no such pairs then print “SORRY! No Such Pairs”


Remember that a number can be used to form multiple pairs



Sample Input 01: 

1 2 3 4 5 6 7 8 9 1


Sample Output 01:

19

28

37

46


Sample Input 02: 

1 2 3 4 5 1 2 3 4 1


Sample Output 02:

SORRY! No Such Pairs




1) Write a program in assembly language to the handle following cases.


The program takes a character input.

Enter any character From A-Z :


  • If the user enters an uppercase alphabet simply show the message “This is upper case letter”
  • If the user enters a lowercase alphabet, then simply show the message “This is lower case letter”
  • If the user enters any other character its shows the wrong input.

1) Convert the following pseudo-code to assembly language:


a = 0 b=2

for (i=0, i<=9 , i+2)

{

a=a+b

cout<<"number="<<a<<endl;

a++

}


1) Write a program in assembly language to create the following Fibonacci series.

{0,1, 1, 2, 3, 5, 8}


Take 4 value in floating point double precision and compare which one is smaller and display the output using MIPS

in segment 2b43 we have the instruction MOV AL, [0104]. identify physical and logical address.


The program you will develop needs to accept input from a source, run the input through several comparisons, and then calculate an output. You will use variables, assignments, if-else functions, and arrays.

In this scenario, you need to create a program that will take a user's age and determine a ticket price based on their age.

  • The standard ticket price is $10.00.
  • Minors (those under the age of 18) will pay $1.00 less than the standard ticket price.
  • Seniors (those over the age of 65) will receive a 15% discount.

has to be done in .asm // mips assembly code


LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS