If you need to see a quick snapshot of statistics for a table or query, you can use the ________
A) Function pane B) total row C) statistics button D) aggregate row
B
You might also like to view...
The following is the pseudocode for which type of algorithm?
``` Set first to 0 Set last to the last subscript in the array Set found to false Set position to -1 While found is not true and first is less than or equal to last Set middle to the subscript halfway between array[first] and array[last] If array[middle] equals the desired value Set found to true Set position to middle Else If array[middle] is greater than the desired value Set last to middle - 1 Else Set first to middle + 1 End If End While Return position ``` a. linear sort b. linear search c. binary search d. selection sort e. None of these
We reproduce the class Money here, in part:
``` class Money { public: Money( ); Money(int theDollar, int theCents); Money(int theDollars); Money(double amount);// other public members int getCents( ) const; int getDollars( ) const;private: int dollars; int cents;// other private members};Note that * is not overloaded in the class, but operator + is overloaded using an operator function with the following declaration: Money const operator+(const Money& amt1, const Money& amt2) ``` The question is, given the declarations, ``` Money baseAmount(100, 60); // $100.60 Money fullAmount; ``` which of the following operations are legal? If so, why? If not, why not? a)``` BaseAmount + 25; ``` B. ``` 25 + BaseAmount; ``` C. ``` baseAmount = 2 * baseAmount; ``` D. ``` baseAmount+baseAmount.