cis4307, Fall 2009 5 Minute Test #5 October 15, 2009 1. (6) What is SISD? SIMD? SIMT? 2.(5) What is an Autonomous System? 3. (5) At location 100 we store the short integer 0X00FF. What is stored in the byte at the address 100 in a big endian machine? What in a little endian machine? 4. (15) Given the definition struct Node{struct Node *next; int value;}; implement in C the function struct Node * even(struct Node * r) which, given a singly linked list returns the list consisting of only the nodes with values that are multiples of 7