Answer:
The correct answer to the following question will be "Data-in-use".
Explanation:
- Data-in-use is an IT term referring to active information that is usually preserved in a semi-persistent physical state in RAM of computer, CPU registers or caches.
- It might be created, modified or changed, deleted or accessed via different endpoints of the interface. This is indeed a useful term for IT departments to pursue institutional defense.
Therefore, it's the right answer.
Answer:
Hello! The answer to your question is function I had the same question and got it right!
Explanation:
Hope this helped:)
Answer:
The answer is A. CAD which means Computer-Aided Design.
Explanation:
CAD is used for creating different designs, simulations and scientific diagrams, some examples of CAD software include AutoCAD and Solidworks.
For reference the other acronyms mean:
Desktop publishing (DTP)
Computer-based training (CBT)
Web-based training (WBT)
Answer:
Frosting improves the cake's appearance.
Explanation:
Special occasion cakes become more festive with frosting and decorations; and, Frosting improves the keeping the qualities of the cake by forming a protective coating around it, sealing in moisture and flavor and allowing it to be eaten over a couple of days.
Answer:
Explanation:
The code for the given problem is written below
.data
A : .word 1 2 3 4 5 6 7 8 9 10
.text
la $s5,A
li $s1,0 # load g
li $s2,10 # load h
li $s3,0 # load i
li $s4,1 # load j
loop:
mul $s6,$s3,4
add $s6,$s6,$s5 #address of A[i]
lw $s6,($s6) #get value of A[i] in s3
add $s1,$s1,$s6 #g = g+A[i]
add $s3,$s3,$s4 # i = i+j
bne $s3,$s2,loop #if i!=h jump to loop