logo

Crowdly

Browser

Додати до Chrome

Questions Bank (1390622 total)

A list comprises nodes with two fields:

The first field, value, is an integer

The second field, next, is a pointer to the next node

R7 contains a pointer to a node

Which instruction performs R8 := *R7.next?

Переглянути це питання
A list comprises nodes with two fields:

The first field, value, is an integer

The second field, next, is a pointer to the next node

R7 contains a pointer to a node (assume that R7 is not nil)

Which instruction performs R8 := *R7.value?

Переглянути це питання

Suppose p is a pointer to a list, and we need to implement

if p=nil then goto aardvark

This is implemented by

Переглянути це питання
If you declare a variable with a data statement, this variable is
Переглянути це питання
Which of the following would NOT appear in a call stack?
0%
0%
0%
0%
0%
Переглянути це питання
Which statement is NOT true?
Переглянути це питання
Suppose a stack was initially empty, and we have performed the

following sequence of operations:

push a, push b, push c, pop, push d, push e, pop, pop, pop

What value is returned by the last pop?

Переглянути це питання
If a procedure calls another other procedure, then it

needs to save the return address in memory to avoid

destroying the return address.

100%
0%
Переглянути це питання
Which one of the following statements is NOT true?
0%
0%
0%
0%
0%
0%
Переглянути це питання

Suppose this program fragment executes:

labela  add  R4,R5,R6

labelb  sub  R2,R8,R3

labelc  jal  R13,labelf[R0]

labeld  mul  R9,R2,R4

labele  lea  R3,a[R0]

labelf  add  R4,R7,R2

After it executes, the value in R13 is

Переглянути це питання