Shared Flashcard Set

Details

OPT final 3
dsfdf
10
Aerospace Engineering
Pre-School
10/15/2009

Additional Aerospace Engineering Flashcards

 


 

Cards

Term
(t/f) writing less application code is more optimal than writing more.
Definition
false
Term
which one of these is not a synchronization object
Definition
spin lock
Term
when writing SIMD instructions, we used a type of data structure referred to as
Definition
a structure of arrays
Term
Trigonometric functions are good candidates for:
Definition
look up tables
Term
Which parts of this diagrams are starred
Definition
L1 cache, instruction pool, branch prediction
Term
In order to take advantage of the post TNL cache we must
Definition
use index buffers
Term
When exporting functions yo be used in a dll that is imported into a .NET project, what style must these functions be:
Definition
C
Term
Normalize the following vector a = (4,0,3)
Definition
(4/5, 0, 3/5)
Term
The recursive function below would be best suited to do which of the following?
int sweet(Node* s)
{
If(!s) return 0;
return (1+sweet (s->left) + sweet (s->right));
}
Definition
Get the number of nodes in a tree
Term
Which is valid use of typedef?
Definition
typedef unsigned char UInt8;
Supporting users have an ad free experience!