subject

Write an assembly language program to rotate given myarray based on a variable r as follows: r specifies the rotation direction and number of rotations on that direction; positive r indicates rotation in right direction, negative r indicates rotation in the left direction, and r = 0 does nothing. all variables are of type sdword. example: myarray = [1, 2, 3, 4, 5, 6, 7] r = 1(rotate once in right direction in circular fashion) after execution: myrotatedarray = [7, 1, 2, 3, 4, 5, 6] r = 2 (rotate twice in right direction in circular fashion) after execution: myrotatedarray = [6, 7, 1, 2, 3, 4, 5] r= -1 (rotate once in left direction in circular fashion) after execution: myrotatedarray = (2, 3, 4, 5, 6, 7, 1] r= -3 (rotate thrice in left direction in circular fashion) after execution: myrotatedarray = [4, 5, 6, 7, 1, 2, 3] wote: your program should work for arbitrary values of r and arbitrary length array. it also must include data and .code section.

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 22:30
You draw two cards from a standard deck of 52 cards, but before you draw the second card, you put the first one back and reshuffle the deck. (a) are the outcomes on the two cards independent? why?
Answers: 3
question
Computers and Technology, 24.06.2019 13:00
Why should you evaluate trends when thinking about a career path?
Answers: 1
question
Computers and Technology, 24.06.2019 16:50
Develop the program incrementally: a) start by reading and displaying each line of the input file to make sure you are reading the data set correctly. b) use the split string method to extract information from each line into a list. print the list to prove that this step is working correctly. d) convert the exam scores to type int and calculate the student’s average. display those items to prove this step is working correctly. e) create a tuple containing the six items for each student (name, exam scores, exam mean). display the tuples to prove this step is working correctly. (optionally, you may want to have the exam scores in a list so your tuple is (name, scores_list, f) append each tuple to a list. display the list to prove this step is working correctly. g) use the sort list method to re-order the tuples in the list. display the list to prove this step is working correctly. h) use a for statement to display the contents of the list as a table (with appropriate formatting). i) use a for statement to calculate the average of all scores on exam #1, then display the results. note that you could have calculated this average within the first loop, but we are explicitly requiring you to do this calculation by looping though your list of tuples. j) add the logic to calculate the average of all scores on exam #2, then display the results.
Answers: 2
question
Computers and Technology, 24.06.2019 18:30
After making a powerpoint presentation about a new line of clothing designs, henri notices that he used the word “gorgeous” on nearly every slide. what would be the  best  way to add more variety to his wording by using tools within powerpoint? using the thesaurus under the view tab, and then using the find dialog box to find and replace every instance of “gorgeous”using the spelling checker under the view tab, and then using the find dialog box to find every instance of “gorgeous” and change some of themusing the thesaurus under the review tab, and then using the find dialog box to find every instance of “gorgeous” and change some of themusing the spelling checker under the review tab, and then using the find dialog box to find and replace every instance of “gorgeous”
Answers: 2
You know the right answer?
Write an assembly language program to rotate given myarray based on a variable r as follows: r spec...
Questions
question
Mathematics, 17.09.2019 19:00
question
Mathematics, 17.09.2019 19:00
Questions on the website: 13722363