Term
(t/f) writing less application code is more optimal than writing more. |
|
Definition
|
|
Term
which one of these is not a synchronization object |
|
Definition
|
|
Term
when writing SIMD instructions, we used a type of data structure referred to as |
|
Definition
|
|
Term
Trigonometric functions are good candidates for: |
|
Definition
|
|
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
|
|
Term
When exporting functions yo be used in a dll that is imported into a .NET project, what style must these functions be: |
|
Definition
|
|
Term
Normalize the following vector a = (4,0,3) |
|
Definition
|
|
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; |
|
|