subject

Suppose that you are given the following program (with memory addresses shown on the left). After the instruction "mov ebp, esp", which of the following is referenced by each of the following?
.data
x DWORD 153461
y WORD 37
z WORD 90
.code
main PROC
push x
push y
push z
call someProcedure...
exit
main ENDP
someProcedure PROC
push ebp
mov ebp, esp
...
pop ebp
ret 8
someProcedure ENDP
END MAIN
Match
1) [ebp + 4] a. The previous value of EBP
2) [ebp + 8] b. the return address from someProcedure
3) [ebp + 10] c. The decimal value 90
4) [ebp + 12] d. the memory address of someProcedure
5) [ebp] e. The decimal value 37
6) [ebp + 6] f. The decimal value 153461
g. none of these

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 05:00
This program will store roster and rating information for a soccer team. coaches rate players during tryouts to ensure a balanced team. (1) prompt the user to input five pairs of numbers: a player's jersey number (0 - 99) and the player's rating (1 - 9). store the jersey numbers in one int vector and the ratings in another int vector. output these vectors (i.e., output the roster). (3 pts) ex: enter player 1's jersey number: 84 enter player 1's rating: 7 enter player 2's jersey number: 23 enter player 2's rating: 4 enter player 3's jersey number: 4 enter player 3's rating: 5 enter player 4's jersey number: 30 enter player 4's rating: 2
Answers: 1
question
Computers and Technology, 22.06.2019 11:00
Which are examples of note-taking tools? check all that recording devices sticky notes digital highlighters paper flags highlighting pens digital displays digital flags
Answers: 1
question
Computers and Technology, 23.06.2019 01:20
Write a function balancechemical to balance chemical reactions by solving a linear set of equations. the inputs arguments are: reagents: symbols of reagents in string row array products: symbols of products in string row array elements: elements in the reaction in string row array elcmpreag: elemental composition of reactants in two dimensional numeric array elcmpprdcts: elemental composition of prducts in two dimensional numeric array hint: the first part of the problem is setting up the set of linear equations that should be solve. the second part of the problem is to find the integers from the solution. one way to do this is to mulitiply the rational basis for the nullspace by increasing larger integers until both the left-and right-side integers exist. for example, for the reaction that involves reacting with to produce and : reagents=["ch4", "o2"]; products =["co2", "h2o"]; elements =["c","h", "o"] elcmpreag=[1,4,0;
Answers: 3
question
Computers and Technology, 23.06.2019 04:31
Which of the following is not a way in which trees benefit the environment? a. they remove a significant amount of carbon dioxide from the atmosphere. b. they remove a significant amount of oxygen from the atmosphere. c. their roots hold soil in place, reducing rates of erosion. d. they remove ozone and particulates from the atmosphere. select the best answer from the choices provided a b c d
Answers: 1
You know the right answer?
Suppose that you are given the following program (with memory addresses shown on the left). After t...
Questions
question
Mathematics, 20.04.2021 00:44
question
History, 20.04.2021 00:44
question
English, 20.04.2021 00:44
Questions on the website: 13722363