Write a machine-language program to output the characters "us"


Write a machine language program to input two one-digit numbers ranging from 0 to 4 (using the character input instruction), add them, and then output the single digit sum (using the character output instruction). Execute your program in the PEP/8 simulator. Example Input: 43 (this is the numbers 4 and 3. Remember, this is two ASCII characters when inputted into your program) Output: 7 (ASCII character 55dec)
1. Write a machine-language (hex) program to output your first name on the output device. Object code. My name is Gabby and so far I can only get it to output "Gab". That's my code. D1 00 13 F1 FC 16 D1 00 14 F1 FC 16 D1 00 15 F1 FC 16 D1 00 16 00 47 61 62 62 zz
Using the C programming language, write a program that takes in hexadecimal characters (using the fgets() function) and return a translated string of ASCII characters. Use only BITWISE operators, not arithmetic.
In C Language Write a program that reads characters from scanf1 (keyboard) and gives the number of vowels (lower case) entered, stopping when ‘q’ has been entered. Construct three versions of this program, using the while, do-while, and for loops. 3 different version
in c++ language, using quincy compiler Write a program that will read in 12 characters from the keyboard between a – z in lowercase. These letters will be inserted into a queue (imported from the Queue.h header file). When the 12th character has been entered, the queue will serve the characters one at a time to a character variable, which will push the values, one at a time, into a stack (using code imported from the Stack.h header file) and...
Determine the output of the following machine-language program
by running it in Pep/8. The left column in each part is the memory
address of the first byte on the line.
Determine the output of the following machine-language program by running it in Pep/8. The left column in each part is the memory address f the first byte on the line: Address Instruction Description C10000C 18 F1000B 51000B 0003 0004 0007 000A 000B 000C FEDC A. Submit the code with comments...
Write a program that counts the number of characters and words in the following statement: This is a long exercise. I would like to get done with it. END Hint: In order to count words, count the transitions from non-white space to white space characters Please use C Language and complete program.
Write a simplified machine language program that has register $s0 loop through the numbers 0, 5, 10, ..., 50. See Lab 11 for details on submitting the simplified machine language programs.
C++ program by netBeans
java language
Exercise #2: Write a java program that prompts the user to enter a sentence. The program has to find the print: a. the position of vowels in the sentence. b. the number of vowels in the sentence (A, a, U, u, E, e, 0, o, I, i) c. the number of characters as numbers or special characters (other than English letters a..z, A..Z). Hint: remember to ignore the spaces. Sample input-output: Enter the sentnse:...
Programming language is C++.
9. Write a program that reads digits and composes them into integers. For example, 123 is read as the characters 1, 2, and 3. The program should output 123 is 1 hundred and 2 tens and 3 ones. The number should be output as an int value Handle numbers with one, two, three, or four digits. Hint: To get the integer value 5 from the character '5' subtract '0' that is, '5'-'0'