Difference between revisions of "CSC231 Final Exam 2017"
(14 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
--[[User:Thiebaut|D. Thiebaut]] ([[User talk:Thiebaut|talk]]) 16:23, 29 April 2017 (EDT) | --[[User:Thiebaut|D. Thiebaut]] ([[User talk:Thiebaut|talk]]) 16:23, 29 April 2017 (EDT) | ||
---- | ---- | ||
+ | <onlydft> | ||
− | |||
<bluebox> | <bluebox> | ||
<font color="purple">This exam is due on May 12, at '''4:00 p.m.'''.</font> | <font color="purple">This exam is due on May 12, at '''4:00 p.m.'''.</font> | ||
<br /> | <br /> | ||
− | This exam is given under the rules of the ''honor code''. You have access to all your notes, to books, and to the Web. You cannot, however, discuss the details of the exam with anybody other than your instructor. Questions regarding the exam can only be asked in class, or using Piazza. Do not post code on Piazza. Do not suggest or imply possible solutions in your posts on Piazza. | + | This exam is given under the rules of the ''honor code''. '''It has to be done individually'''. You have access to all your notes, to books, and to the Web. You cannot, however, discuss the details of the exam with anybody other than your instructor. <font color="magenta">'''Questions regarding the exam can only be asked in class, or using Piazza'''</font>. Do '''not post code''' on Piazza. Do not suggest or imply possible solutions in your posts on Piazza. |
− | All | + | <br /> |
+ | All five problems are worth the same number of points (20/100). | ||
+ | <br /> | ||
+ | <font color="magenta">'''If you use material not in the class Web page or the on-line textbook we used for class, you need to list references to them in the header of your program.'''</font> | ||
</bluebox> | </bluebox> | ||
<br /><br /> | <br /><br /> | ||
=Problem 1: C Programming= | =Problem 1: C Programming= | ||
<br /> | <br /> | ||
− | Write a C program called '''231grep.c''' that works similarly to the Linux grep command. Your program should get its input from the command line, just like grep, and support the "-i" switch. When the user uses this switch, the search is not case sensitive. When the user omits the switch the search is case-sensitive. | + | Write a C program called '''231grep.c''' that works similarly to the Linux grep command. Your program should get its input from the command line, just like grep, and support the "-i" switch. The user will '''never''' use another switch, if she uses one. When the user uses this switch, the search is not case sensitive. When the user omits the switch the search is case-sensitive. |
<br /> | <br /> | ||
Here is an example illustrating how your program should work. | Here is an example illustrating how your program should work. | ||
Line 48: | Line 51: | ||
::# word | ::# word | ||
::# file name | ::# file name | ||
+ | * You may assume that lines will never be more than 1000 characters long. | ||
<br /> | <br /> | ||
+ | |||
==Testing== | ==Testing== | ||
<br /> | <br /> | ||
Line 58: | Line 63: | ||
* Submit your code on Moodle, in the '''grep''' section of the final exam. | * Submit your code on Moodle, in the '''grep''' section of the final exam. | ||
<br /> | <br /> | ||
− | =Problem 2: Fixed | + | =Problem 2: Fixed Point Numbers= |
+ | <br /> | ||
+ | Take the quiz on Moodle regarding the '''Fixed-Point''' number system. | ||
<br /> | <br /> | ||
− | |||
<br /> | <br /> | ||
=Problem 3: Assembly Programming= | =Problem 3: Assembly Programming= | ||
Line 233: | Line 239: | ||
This problem is a quiz on Moodle that pertains to Problem 3, and will ask you questions about the recursive properties of the '''binSearch()''' function. Even if you do not write a correct solution for Problem 3, this will not prevent you from being able to answer these questions. | This problem is a quiz on Moodle that pertains to Problem 3, and will ask you questions about the recursive properties of the '''binSearch()''' function. Even if you do not write a correct solution for Problem 3, this will not prevent you from being able to answer these questions. | ||
<br /> | <br /> | ||
− | Please answer the quiz on Moodle, in the ''' | + | Please answer the quiz on Moodle, in the '''Quiz on BinSearch section'''. |
+ | <br /> | ||
+ | <br /> | ||
<br /> | <br /> | ||
=Problem 5= | =Problem 5= | ||
<br /> | <br /> | ||
− | Assume that we want to create a 16-bit floating point format similar to the IEEE floating point format we have | + | Assume that we want to create a 16-bit floating point format similar to the IEEE floating point format we have seen in class. |
− | This format uses all the rules we have | + | This format uses all the rules we have studied as being intrinsic to the 32-bit format, including the ''exceptions'', and the ''biased exponent''. |
<br /> | <br /> | ||
In this 16-bit format, the sign, exponent, and mantissa are as follows: | In this 16-bit format, the sign, exponent, and mantissa are as follows: | ||
Line 244: | Line 252: | ||
* The most significant bit is the sign bit: 0 for positive, 1 for negative | * The most significant bit is the sign bit: 0 for positive, 1 for negative | ||
* The next 4 bits are the exponent. The stored exponent is offset by a bias relative to the true exponent. | * The next 4 bits are the exponent. The stored exponent is offset by a bias relative to the true exponent. | ||
− | * The lower 11 bits are the mantissa, which assumes a hidden 1. All numbers, as with the 32-bit format are normalized as 1.bbb...bbb x 2^(true exponent). | + | * The lower 11 bits are the mantissa, which assumes a hidden 1. All numbers, as with the 32-bit format, are normalized as 1.bbb...bbb x 2^(true exponent). |
<br /> | <br /> | ||
==Questions== | ==Questions== | ||
Line 253: | Line 261: | ||
<br /> | <br /> | ||
<br /> | <br /> | ||
− | <onlydft> | + | </onlydft> |