Question: Suppose you need to keep a data struct with permission to access some resource based on the days of the week, but you can't use a bool variable for each day. You need to use one bit per day of the week. Which of the following is a correct implementation of a structure with bit fields for this application?

  1. A
  2. B
  3. C
  4. D

Answer: The correct answer of the above question is Option A:A