Question
A system call needs to pass a large structure containing many arguments. Which parameter-passing method is most suitable?
Select an option. Your answer will be checked instantly.
Correct Answer: D. Store the arguments in a memory block and pass its address
Explanation:
A memory block can hold many or large parameters, while a register passes the block address.
This avoids being limited by the small number of available argument registers.
Leave a Reply