V5Questions

Szczegóły
Tytuł V5Questions
Rozszerzenie: PDF

Jesteś autorem/wydawcą tego dokumentu/książki i zauważyłeś że ktoś wgrał ją bez Twojej zgody? Nie życzysz sobie, aby pdf był dostępny w naszym serwisie? Napisz na adres [email protected] a my odpowiemy na skargę i usuniemy zabroniony dokument w ciągu 24 godzin.

 

V5Questions PDF Ebook podgląd online:

Pobierz PDF

 

 

 


 

Zobacz podgląd V5Questions pdf poniżej lub pobierz na swoje urządzenie za darmo bez rejestracji. V5Questions Ebook podgląd za darmo w formacie PDF tylko na PDF-X.PL. Niektóre ebooki są ściśle chronione prawem autorskim i rozpowszechnianie ich jest zabronione, więc w takich wypadkach zamiast podglądu możesz jedynie przeczytać informacje, detale, opinie oraz sprawdzić okładkę.

V5Questions Ebook transkrypt - 20 pierwszych stron:

 

Strona 1 Volume Five Questions, Projects, and Lab Exercises Questions, Projects, and Labs Chapter Six 6.1 Questions 1) What is a First Class Object? 2) What is the difference between deferred and eager evaluation? 3) What is a thunk? 4) How does HLA implement thunk objects? 5) What is the purpose of the HLA THUNK statement? 6) What is the difference between a thunk and procedure variable? 7) What is the syntax for declaring a thunk as a formal parameter? 8) What is the syntax for passing a thunk constant as an actual parameter? 9) Explain how an activation record’s lifetime can affect the correctness of a thunk invocation. 10) What is a trigger and how can you use a thunk to create a trigger? 11) The yield statement in an iterator isn’t a true HLA statement. It’s actually equivalent to something else. What is it equivalent to? 12) What is a resume frame? 13) What is the problem with breaking out of a FOREACH loop using the BREAK or BREAKIF statement? 14) What is the difference between a coroutine and a procedure? 15) What is the difference between a coroutine and a generator? 16) What is the purpose of the coret call in the coroutines class? 17) What is the limitation of a coret operation versus a standard RET instruction? 18) What is the lifetime of the automatic variables declared in a coroutine procedure? 19) Where is the easiest place to pass parameters between two coroutines? 20) Why is it difficult to pass parameters between coroutines on the stack? 21) State seven places you can pass parameters between two procedures. 22) State at least six different ways you can pass parameters. 23) Where is the most efficient place to pass parameters? 24) Where do most high level languages pass their parameters? 25) What some problems with passing parameters in global variables? 26) What is the difference between the Pascal/HLA and the CDECL parameter passing mechanisms? 27) What is the difference between the Pascal/HLA and the STDCALL parameter passing mechanisms? 28) What is the difference between the STDCALL and the CDECL parameter passing mechanisms? 29) Provide one reason why some assembly code might require the caller to remove the parameters from the stack. 30) What is the disadvantage of having the caller remove procedure parameters from the stack? 31) Explain how to pass parameters in the code stream. 32) Describe how you might pass a reference parameter in the code stream. What is the limitation on such reference parameters? Beta Draft - Do not distribute © 2001, By Randall Hyde Page 1399 Strona 2 Chapter Six 33) Explain how you might pass a “pass by value/result” or “pass by result” parameter in the code stream. 34) What is a parameter block? 35) What is the difference between pass by value/result and pass by result? 36) What is the difference between pass by name and pass by lazy evaluation? 37) What parameter passing mechanism does pass by name most closely resemble? 38) What parameter passing mechanism does pass by lazy evaluation most closely resemble? 39) When passing a parameter by name or lazy evaluation, what does HLA actually pass on the stack. 40) What is the difference in the calling sequence between pass by reference, pass by value/result, and pass by result (assuming the standard implementation)? 41) Give an example where pass by value/result produces different semantics than pass by reference. 42) What parameter passing mechanism(s) support(s) deferred execution? For each of the following subquestions, assume that a parameter (in) is passed into one procedure and that procedure passes the parameter on to another procedure (out). Specify how to do this given the following in and out parameter passing mechanisms (if possible): 43) Parameter is passed into the first procedure by value and passed on to the second procedure by: a. value b. reference c. result d. result e: name f: lazy evaluation 44) Parameter is passed into the first procedure by reference and passed on to the second procedure by: a. value b. reference c. result d. result e: name f: lazy evaluation 45) Parameter is passed into the first procedure by value/result and passed on to the second procedure by: a. value b. reference c. result d. result e: name f: lazy evaluation 46) Parameter is passed into the first procedure by result and passed on to the second procedure by: a. value Page 1400 © 2001, By Randall Hyde Beta Draft - Do not distribute Strona 3 Volume Five Questions, Projects, and Lab Exercises b. reference c. result d. result e: name f: lazy evaluation 47) Parameter is passed into the first procedure by name and passed on to the second procedure by: a. value b. reference c. result d. result e: name f: lazy evaluation 48) Parameter is passed into the first procedure by lazy evaluation and passed on to the second procedure by: a. value b. reference c. result d. result e: name f: lazy evaluation 49) Describe how to pass a variable number of parameters to some procedure. Describe at least two different ways to do this. 50) How can you return a function’s result on the stack? 51) What’s the best way to return a really large function result? 52) What is a lex level? 53) What is a static link? 54) What does the term “scope” mean? 55) What is a “display”? 56) What does the term “address binding” mean? 57) What is the “lifetime” of a variable? 58) What is an intermediate variable? 59) How do you access intermediate variables using static links? Give an example. 60) How do you access intermediate variables using a display? Give an example. 61) How do you nest procedures in HLA? 62) What does the @lex function return? 63) What is one major difference between the _display_ array and standard arrays? 64) What does the ENTER instruction do? Provide an algorithm that describes its operation. 65) What does the LEAVE instruction do? Provide an equivalent machine code sequence. Beta Draft - Do not distribute © 2001, By Randall Hyde Page 1401 Strona 4 Chapter Six 66) Why does HLA not emit the ENTER and LEAVE instructions in those procedures that have a display? 67) Provide a short code example that demonstrates how to pass an intermediate variable by value to another procedure. 68) Provide a short code example that demonstrates how to pass an intermediate variable by reference to another procedure. 69) Provide a short code example that demonstrates how to pass an intermediate variable by value/result to another procedure. 70) Provide a short code example that demonstrates how to pass an intermediate variable by result to another procedure. 71) Provide a short code example that demonstrates how to pass an intermediate variable by name to another procedure. 72) Provide a short code example that demonstrates how to pass an intermediate variable by lazy evaluation to another procedure. 6.2 Programming Problems 1) Rewrite Program 1.1 in Chapter One (Fibonacci number generation) to use a pass by reference parameter rather than a thunk parameter. 2) Write a function ifx that has the following prototype: procedure ifx( expr:boolean; lazy trueVal:dword; lazy falseVal:dword ); The function should test expr’s value; if true, it should evaluate and return trueVal, else it should evaluate and return falseVal. Write a main program that tests the execution of this function. 3) Write an iterator that returns all “words” of a given length. The iterator should have the following proto- type: iterator wordOfLength( length:uns32 ); // returns( “eax” ); The iterator should allocate a string with length characters on the heap, initialize this string, and return a pointer to the string in the EAX register. On each call to this iterator, it should return the next string of alphabetic characters using a lexicographical ordering. E.g., for strings of length three, the iterator would return aaa, aab , aac, aad, ..., aaz, aba, abb, abc, ..., zzz. Write a main program to test this word generator. Don’t forget to free the storage associated with each string in the main program when you’re done with the string. 4) Modify the program in programming project (3) so that it only returns strings that have a maximum of two consenants in a row and a maximum of three vowels in a row. 5) Write a “Tic-Tac-Toe” game that uses coroutines to make each move. One coroutine should prompt the “X” player for a move, the second coroutine should prompt the “O” player for a move (note that the moves are made by players, not by the computer). The main program/coroutine should call the other two coroutines and determine if there was a win/loss/draw after each move. 6) Modify programming project (5) so that the computer makes the moves for the “O” player. 7) Write a factorial function (n!) that passes a real80 parameter on the FPU stack and returns the real80 result on the FPU stack. (note: n! = 1*2*3*...*n). 8) Write the equivalent of cs.difference that passes the two character sets to the function in the MMX regis- ters MM0 / MM1 and MM2 / MM3. Return the character sets’ difference in MM0 / MM1. 9) Write a “printstr” procedure that expects a pointer to a zero-terminated sequence of characters to follow the call to printstr in the code stream. This procedure should print the string to the standard output device. A typcial call will look like the following: Page 1402 © 2001, By Randall Hyde Beta Draft - Do not distribute Strona 5 Volume Five Questions, Projects, and Lab Exercises static staticStrVar: char; nostorage; byte “Hello world”, 0; . . . call printstr dword staticStrVar Note that this function must work with any zero terminated string; don’t assume the string is an HLA string. Write a main program that makes several calls to printstr and tests this function. Beta Draft - Do not distribute © 2001, By Randall Hyde Page 1403 Strona 6 Chapter Six Page 1404 © 2001, By Randall Hyde Beta Draft - Do not distribute

O nas

PDF-X.PL to narzędzie, które pozwala Ci na darmowy upload plików PDF bez limitów i bez rejestracji a także na podgląd online kilku pierwszych stron niektórych książek przed zakupem, wyszukiwanie, czytanie online i pobieranie dokumentów w formacie pdf dodanych przez użytkowników. Jeśli jesteś autorem lub wydawcą książki, możesz pod jej opisem pobranym z empiku dodać podgląd paru pierwszych kartek swojego dzieła, aby zachęcić czytelników do zakupu. Powyższe działania dotyczą stron tzw. promocyjnych, pozostałe strony w tej domenie to dokumenty w formacie PDF dodane przez odwiedzających. Znajdziesz tu różne dokumenty, zapiski, opracowania, powieści, lektury, podręczniki, notesy, treny, baśnie, bajki, rękopisy i wiele więcej. Część z nich jest dostępna do pobrania bez opłat. Poematy, wiersze, rozwiązania zadań, fraszki, treny, eseje i instrukcje. Sprawdź opisy, detale książek, recenzje oraz okładkę. Dowiedz się więcej na oficjalnej stronie sklepu, do której zaprowadzi Cię link pod przyciskiem "empik". Czytaj opracowania, streszczenia, słowniki, encyklopedie i inne książki do nauki za free. Podziel się swoimi plikami w formacie "pdf", odkryj olbrzymią bazę ebooków w formacie pdf, uzupełnij ją swoimi wrzutkami i dołącz do grona czytelników książek elektronicznych. Zachęcamy do skorzystania z wyszukiwarki i przetestowania wszystkich funkcji serwisu. Na www.pdf-x.pl znajdziesz ukryte dokumenty, sprawdzisz opisy ebooków, galerie, recenzje użytkowników oraz podgląd wstępu niektórych książek w celu promocji. Oceniaj ebooki, pisz komentarze, głosuj na ulubione tytuły i wrzucaj pliki doc/pdf na hosting. Zapraszamy!