subject

Using the College Registration example from Section 6.7.3 as a starting point, do the following:-Recode the logic sing CMP and conditional jump instructions (instead of the .IF and .ELSEIF directives).-Perform range checking on the credits value; it cannot be less than 1 or greater than 30. If an invalid entry is discovered, display an appropriate error message.-Prompt the user for the grade average and credits values. Display a message that shows the outcome of the evaluation, such as "The student can register" or "The student cannot register".6.7.3 example:.dataTRUE = 1FALSE = 0gradeAverage WORD 275 ; test valuecredits WORD 12 ; test valueOkToRegister BYTE ?.codemain PROCmov OkToRegister, FALSE. IF gradeAverage > 350mov OkToRegister, TRUE. ELSEIF (gradeAverage > 250) && (credits <= 16)mov OkToRegister, TRUE. ELSEIF (credits <= 12)mov OkToRegister, TRUE. ENDIF

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 09:00
Meenu wants to create a high quality drawing in a variety of colours. which device should she use for the same?
Answers: 1
question
Computers and Technology, 23.06.2019 03:00
Jason, samantha, ravi, sheila, and ankit are preparing for an upcoming marathon. each day of the week, they run a certain number of miles and write them into a notebook. at the end of the week, they would like to know the number of miles run each day, the total miles for the week, and average miles run each day. write a program to them analyze their data. your program must contain parallel arrays: an array to store the names of the runners and a two-dimensional array of five rows and seven columns to store the number of miles run by each runner each day. furthermore, your program must contain at least the following functions: a function to read and store the runners’ names and the numbers of miles run each day; a function to find the total miles run by each runner and the average number of miles run each day; and a function to output the results. (you may assume that the input data is stored in a file and each line of data is in the following form: runnername milesday1 milesday2 milesday3 milesday4 milesday5 milesday6 milesday7.)
Answers: 3
question
Computers and Technology, 23.06.2019 16:30
How to do this programming flowchart?
Answers: 3
question
Computers and Technology, 23.06.2019 20:30
What is the biggest difference between section breaks and regular page breaks
Answers: 1
You know the right answer?
Using the College Registration example from Section 6.7.3 as a starting point, do the following:-Rec...
Questions
question
Mathematics, 14.12.2019 19:31
question
Mathematics, 14.12.2019 19:31
question
Social Studies, 14.12.2019 19:31
question
Biology, 14.12.2019 19:31
Questions on the website: 13722363