Contents    Page-10    Prev    Next    Page+10    Index   

Use of records, e.g. c.im, as opposed to simple variables, e.g. cim

  • A: improves program readability but slows execution
  • B: improves readability but wastes storage
  • C: has no runtime cost in time or storage
  • D: has a cost in both time and storage
  • E: costs storage but not time

    Answer: C

    The storage layout and generated code will be identical for both cases.