// PA4 Assignment // Name: // Date: // Class: cs270 // Email: // @todo Answer all three questions in this file and bring it to class // on the date shown in the assignment posting on the course web site. Answer these question(s) after you have completed the programming part of the assignment. 1. Fill in the table below. Make sure to edit this file using a monospace font so that your answers line up. The last column is the description of how many bytes you have if the unit for the number in column 1 is bytes. (5 points) Powers of two | Number of patterns | Description 2^8 | | 256 bytes 2^10 | 1024 | 2^16 | | 64 kilobytes (64KB) 2^20 | 1024*1KB | 1 megabyte (1MB) 2^24 | | 2^30 | | 2^32 | | 2. How many test cases are needed to exhaustively test each of the functions you implemented? Justify your answers briefly. (10 points) 3. How many bits does a memory with 4 address-bits and 8 data-bits per location require? (5 points)