Question:
You are developing an application to assist the user in conducting electronic surveys. The survey consists of 25 true-or-false questions. You need to perform the following tasks:
· Initialize each answer to true.
· Minimize the amount of memory used by each survey.
Which storage option should you choose?
A Dim answers As New BitArray (1)
B Dim answers As New BitVector32(-1)
C Dim answers As New BitArray (-1)
D Dim answers As New BicVector32(1)
+ AnswerB
+ Report