The assignment should be turned in before class on Monday. Remember, all assignments should be your individual work - group work is not permitted.
Part A: Devise a fixed length representation for records in this table subject to the following constraints:
Turn in:
1. A description of the representation you choose.
2. The exact layout for the following record: ('See spot run','Dick & Jane','0123456789',0,35256,NULL,19.95,8.234)
This question is underspecified on purpose - there is more than one way to answer it.
Part B: Devise a variable length representation for records in this table subject to the following constraints:
Turn in:
1. A description of the representation you choose.
2. The exact layout for the following record: ('See spot run','Dick & Jane','0123456789',0,35256,NULL,19.95,8.234).
This question is underspecified on purpose - there is more than one way to answer it.
Your code will have to be a bit vague since I'm not providing exact data structures or the interface to other components (like the buffer manager). The goal is to show me you understand swizzling in general and the differences between the above approaches in particular. Make reasonable assumptions.