Question
True or false: The difference between .ascii and .asciiz is that .asciiz character arrays (strings) are terminated with a null value whereas .ascii character arrays
True or false: The difference between .ascii and .asciiz is that .asciiz character arrays (strings) are terminated with a null value whereas .ascii character arrays (strings) are not.
True
False
Which of the following is NOT true of pseudo-instructions?
They map one-to-one to machine instructions | ||
They tend to be easier to understand than their machine instruction counterparts | ||
They are shortcuts to common operations | ||
They may map to one or more machine instructions |
What does the BNE instruction do?
Branches no matter what to the location stored in $ra | ||
Branches to the location labelled label if $rs and $rt are not equal | ||
Branches to the location stored in $ra if $rs and $rt are not equal | ||
Branches to the location labelled label if $rs and $rt are equal |
Determine which instructions are used to perform a SYSCALL to exit the program.
li $a0 10 syscall | ||
la $a0, exit add $s0, $v0, $zero syscall | ||
li $v0, 10 syscall | ||
j exit |
Complex instruction set computer (CISC) is an instruction set that:
Has more instructions, but is less verbose than RISC | ||
Is no longer in use, having been replaced largely by RISC | ||
Has fewer, but more complex instructions for the CPU to process | ||
Is the basis for MIPS |
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started