500
a) When should we use char instead of varchar2 type? why?
b) Where should the columns that are very often NULL go in the table? why?
a) never (or if ever, for 1 char fields), because char fields are padded to the full size
b) whenever possible, towards the end of the table, to save space (if the row ends in NULL values, those values dont take space)