The operator * is prefixed to an iterator to
a) Multiply the element in the container
b) Extract the element in the container to assign to it only
c) Extract the element in the container to fetch its value only
d) Extract the element in the container as either an l-value or an r-value
e) The * is overloaded to perform addition, so this operator moves where the iterator points by a number of elements.
d) Extract the element in the container as either an l-value or an r-value
Part a) is wrong, the operator * as used with iterators is unary prefix operator. Part b) is wrong as it omits use as an r-value. Part c) is wrong as it omits use as an l-value. Part e) is wrong for the same reason Part a) is wrong.
You might also like to view...
Machine languages _______.
a) are machine dependent. b) are universal between all machines. c) consist of numbers and letters. d) need to be translated in order for the machine to understand commands.
To access the cell at the 2nd row and 2nd column of Table tblBook, use ________.
a) tblBook.Cells[ 1 ].Rows[ 1 ] b) tblBook.Cells[ 2 ].Rows[ 2 ] c) tblBook.Rows[ 1 ].Cells[ 1 ] d) tblBook.Rows[ 2 ].Cells[ 2 ] e) tblBook.Rows[ 2 ].Cells[ 1 ]
The most appropriate slide layout for a bibliography slide is ________
A) Title B) Title only C) Title and Content D) Two Content
What character is used to separate the columns referenced in the GROUP BY clause?
a. Colon : b. Semicolon ; c. Comma , d. Period .