Page 1 of 1

15. Use 1-bit prediction scheme and determine accuracy rate by starting from TAKEN condition. ; a is a given vector for

Posted: Fri Jul 01, 2022 5:53 am
by answerhappygod
15 Use 1 Bit Prediction Scheme And Determine Accuracy Rate By Starting From Taken Condition A Is A Given Vector For 1
15 Use 1 Bit Prediction Scheme And Determine Accuracy Rate By Starting From Taken Condition A Is A Given Vector For 1 (133.86 KiB) Viewed 30 times
15. Use 1-bit prediction scheme and determine accuracy rate by starting from TAKEN condition. ; a is a given vector for (i=0;i<100;i++) a=a+2; end a) 100/100 b) 90/100 c) 98/100 d) 99/100 e) 97/100 f) None of these
Assembly-2: .DATA data1 dd 01234567h data2 dd ? .CODE MOV AX,@DATA MOV DS,AX MOV CX, 4 MOV SI, offset data1 MOV DI, offset data2+3 L1: MOV AL,[SI] MOV [DI],AL ADD SI,1 ADD DI,-1 LOOP L1 END the Assembly-2 below.