Details

Title: OPT final 3

Description: dsfdf

Total Flash Cards: 10

Created: 10/15/2009 07:54:00

New Users: To study from this flashcard set, or to create your own your own study flash cards, REGISTER HERE.

Existing Users: CLICK HERE.

Additional Aerospace Engineering Flashcards

Cards in this set:

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;