Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Browse W

Alphabetical listing with fast deep pagination.
66619 items • Page 1178 / 1333

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Write an assembly language program that accumulates and reports the sales for th
Write an assembly language program that accumulates and reports the sales for the Dr. Pepper Corporation. The Dr. Pepper Company has four salespeople who sell five different produ…
Write an assembly language program that accumulates and reports the sales for th
Write an assembly language program that accumulates and reports the sales for the Albatross Corporation. The Albatross Company has four salespeople who sell five different product…
Write an assembly language program that accumulates and reports the sales for th
Write an assembly language program that accumulates and reports the sales for the Albatross Corporation. The Albatross Company has four salespeople who sell five different product…
Write an assembly language program that accumulates and reports the sales for th
Write an assembly language program that accumulates and reports the sales for the Albatross Corporation. The Albatross Company has four salespeople who sell five different product…
Write an assembly language program that accumulates and reports the sales for th
Write an assembly language program that accumulates and reports the sales for the Albatross Corporation. The Albatross Company has four salespeople who sell five different product…
Write an assembly language program that allows a user to enter any 5 numbers in
Write an assembly language program that allows a user to enter any 5 numbers in any order then display the largest and smallest entered number and the order from small to large an…
Write an assembly language program that corresponds to the following C program:
Write an assembly language program that corresponds to the following C program: char ch: int main () {scanf (# c*, & ch}: ch --; print f (c *, ch}; return 0; Write an assembly…
Write an assembly language program that corresponds to the following C++ program
Write an assembly language program that corresponds to the following C++ program. Comment each line except STOP & .END. Add something to the output that makes this program uni…
Write an assembly language program that corresponds to the following C++ program
Write an assembly language program that corresponds to the following C++ program: #include <iostream> using namespace std; const int amount = 20000; int num; int sum; int ma…
Write an assembly language program that corresponds to the following C++ program
Write an assembly language program that corresponds to the following C++ program: #include <iostream> using namespace std; int num; int main () { cin >> num; num = num…
Write an assembly language program that corresponds to the following C++ program
Write an assembly language program that corresponds to the following C++ program. Comment each line except STOP & .END. Add something to the output that makes this program uni…
Write an assembly language program that give the square rootof an integer (integ
Write an assembly language program that give the square rootof an integer (integer part only). Must use subroutines. Programstarts at address x3000. Input must come from the keybo…
Write an assembly language program that modifies the 10 elements of an array con
Write an assembly language program that modifies the 10 elements of an array containing scores in the range 0-100 by adding 5 to each element. The array elements must be processed…
Write an assembly language program that reads a positive 16-bit number and displ
Write an assembly language program that reads a positive 16-bit number and displays its binary, octal, and hexadecimal equivalent numbers using following algorithm: Algorithm: Dec…
Write an assembly language program that runs under MIPSym. It should input two n
Write an assembly language program that runs under MIPSym. It should input two numbers A and B from the keyboard, then calculate 6 different values as follows: 1) Y1 = A + B 2) Y2…
Write an assembly language program that runs under MIPSym. It should input two n
Write an assembly language program that runs under MIPSym. It should input two numbers A and B from the keyboard, then calculate 6 different values as follows: 1) Y1 = A + B 2) Y2…
Write an assembly language program that sorts a list of dates and then prints ou
Write an assembly language program that sorts a list of dates and then prints out the dates sorted oldest to newest. The dates are in the format of DD- MMM-YYYY, e.g. ?23-JUL-2010…
Write an assembly language program that sorts a list of dates and then prints ou
Write an assembly language program that sorts a list of dates and then prints out the dates sorted oldest to newest. The dates are in the format of DD- MMM-YYYY, e.g. ?23-JUL-2010…
Write an assembly language program that sorts a list of dates and then prints ou
Write an assembly language program that sorts a list of dates and then prints out the dates sorted oldest to newest. The dates are in the format of DD- MMM-YYYY, e.g. ?23-JUL-2010…
Write an assembly language program that will take an integerand find the largest
Write an assembly language program that will take an integerand find the largest prime number that will divide into it with noremainder. The result will be an integer. Must use Su…
Write an assembly language program that, when given an integer n, will calculate
Write an assembly language program that, when given an integer n, will calculate the value of the expression (n^2 + 1)^3 -3n^4. Your program is to get the value for n from ECX and…
Write an assembly language program to add all of the digits of D14643668 Solutio
Write an assembly language program to add all of the digits of D14643668
Write an assembly language program to add all of the digits of D14643668 Solutio
Write an assembly language program to add all of the digits of D14643668
Write an assembly language program to compute: y - (x - 4)(x - 14) for the range
Write an assembly language program to compute: y - (x - 4)(x - 14) for the range 0 x 10, by stepping one by one through the range. During each iteration, print out a message stati…
Write an assembly language program to copy the contents of one array to another
Write an assembly language program to copy the contents of one array to another array. Below are some declarations to help you get started. Use indirect addressing to reference th…
Write an assembly language program to do the following, and run it and test it o
Write an assembly language program to do the following, and run it and test it on the lab simulator: Read in integers until a zero is read in. Keep a total of both the quantity an…
Write an assembly language program to do the following, and run it and test it o
Write an assembly language program to do the following, and run it and test it on the lab simulator: Read in integers until a zero is read in. Keep a total of both the quantity an…
Write an assembly language program to do the following, and run it and test it o
Write an assembly language program to do the following, and run it and test it on the lab simulator: Read in integers until a zero is read in. Keep a total of both the quantity an…
Write an assembly language program to do the following: In a loop, ask the user
Write an assembly language program to do the following: In a loop, ask the user if they want to test for a palindrome word (y/n) If the answer is 'y', ask the user to input a stri…
Write an assembly language program to encrypt digits as shown below: Input digit
Write an assembly language program to encrypt digits as shown below: Input digit :0 1 2 3 4 5 6 7 8 9 Encrypted digit : 4 6 9 5 0 3 1 8 7 2 Briefly discuss whether or not you woul…
Write an assembly language program to evaluate a Postfix expression. Your progra
Write an assembly language program to evaluate a Postfix expression. Your program should do the following tasks: 1) Prompt the user to enter a valid Postfix expression. 2) Use the…
Write an assembly language program to find the maximum of y = 3x^4 – 10x^2 - 15x
Write an assembly language program to find the maximum of y = 3x^4 – 10x^2 - 15x for the range -4 x 6, by stepping one by one through the range. During each iteration, print out a…
Write an assembly language program to implement the following encryption/decrypt
Write an assembly language program to implement the following encryption/decryption algorithm. Your program will read in a key file, a message file to encrypt/decrypt, a user-ente…
Write an assembly language program to input a string from the user, count and di
Write an assembly language program to input a string from the user, count and display the number of times each word occur in the user input string. For example if the user types i…
Write an assembly language program to input a string from the user, count and di
Write an assembly language program to input a string from the user, count and display the number of times each word occur in the user input string. For example if the user types i…
Write an assembly language program to of the digits of D14643668 Solution this p
Write an assembly language program to of the digits of D14643668
Write an assembly language program to of the digits of D14643668 Solution this p
Write an assembly language program to of the digits of D14643668
Write an assembly language program to perform the following calculations: value1
Write an assembly language program to perform the following calculations: value1 = a + b value2 = a - b value3 = a * b value4 = value1 + value2 + value3 All data values (a and b) …
Write an assembly language program to perform the following calculations: value1
Write an assembly language program to perform the following calculations: value1 = a + b value2 = a - b value3 = a * b value4 = value1 + value2 + value3 All data values (a and b) …
Write an assembly language program using MS Visual Studio to calculate each of t
Write an assembly language program using MS Visual Studio to calculate each of the following equations. You are only allowed to use registers within the CPU (this includes the gen…
Write an assembly language program which will call several procedures. The proce
Write an assembly language program which will call several procedures. The procedures, their parameters, and their purposes are as follows (shown in C++ format): void AVGS (int LI…
Write an assembly language program with five procedures using Y86. The program s
Write an assembly language program with five procedures using Y86. The program should have an input array, defined at the top of the program, with an indeterminate number of value…
Write an assembly language subroutine that checks whether a number, passed in R1
Write an assembly language subroutine that checks whether a number, passed in R1, is a prime number or not. If it is prime, 1 is returned in R0. If not prime, 0 is returned. Write…
Write an assembly procedure to generate Fibonacci series. Fibonacci series is de
Write an assembly procedure to generate Fibonacci series. Fibonacci series is defined as bellow: 0 1 1 2 3 5 8 13 21..... F0 = 0, F1= 1, F2=1, F3=2, F4=3, …….. ,Fn = Fn_1 + Fn_2 Y…
Write an assembly program (Include coments for the code and a flow chart) that w
Write an assembly program (Include coments for the code and a flow chart) that will examine an input string. Assume that a string does not include more than one line. Assume the i…
Write an assembly program (Include coments for the code and a flow chart) that w
Write an assembly program (Include coments for the code and a flow chart) that will examine an input string. Assume that a string does not include more than one line. Assume the i…
Write an assembly program called hw5_ex1 , stored in file hw5_ex1.asm . This pro
Write an assembly program called hw5_ex1, stored in file hw5_ex1.asm. This program should prompt the user to enter 10 numbers between 0 and 9 (both included). The program should p…
Write an assembly program in MASM Template to use the floating point unit to com
Write an assembly program in MASM Template to use the floating point unit to compute pi. Let the user input the number of terms used for computing pi. For example, the number of t…
Write an assembly program that asks for the number of integers to be read. It th
Write an assembly program that asks for the number of integers to be read. It then dynamically allocates an array of that size. It will stop reading integers when the array is ful…
Write an assembly program that asks for the number of integers to be read. It th
Write an assembly program that asks for the number of integers to be read. It then dynamically allocates an array of that size. It will stop reading integers when the array is ful…