Which of the following is not a correct way to initialize the array named n?
a. array<int, 5> n{0, 7, 0, 3, 8};
b. array<int, 5> n{0, 7, 0, 3, 8, 2};
c. array<int, 5> n{7};
d. array<int, 5> n{9, 1, 9};
Which of the following statements is false?
a. Class names, member function names and data member names are all identifiers.
b. By convention, variable-name identifiers begin with an uppercase letter, and every
word in the name after the first word begins with a capital letter; this naming
convention is known as camel case.
c. Also by convention, class names begin with an initial uppercase letter, and member
function and data member names begin with an initial lowercase letter.
d. All of the above are true.