Examveda

Which of the following is correct about tuple_size?

A. Returns the number of elements in a tuple

B. Returns the maximum sized type element

C. Returns the total number of bits used by the tuple

D. Returns the sum of non-string values

Answer: Option A


Join The Discussion

Related Questions on C plus plus miscellaneous

What is the difference between '++i' and 'i++' in C++?

A. None of the above

B. They both have the same effect

C. '++i' increments the value of 'i' before returning it, while 'i++' increments the value of 'i' after returning it

D. '++i' increments the value of 'i' after returning it, while 'i++' increments the value of 'i' before returning it