In which of the following cases is a class member M invisible in a func
tion F?
a. F is a member function and M is private
b. F is a friend function and M is private
c. F is a general function and M is public
d. F is a general function and M is private
e. none of the above
D
You might also like to view...
Why was the high water mark concept adopted for use in the FIPS 199 publication?
Fill in the blank(s) with the appropriate word(s).
To access the Report Wizard, first click the ____ tab.
A. HOME B. CREATE C. EXTERNAL DATA D. DATABASE TOOLS
The ___________________ element is used to render content in a slightly smaller font than is used for the other elements on the Web page.
Fill in the blank(s) with the appropriate word(s).
Given an array of 100 integers, which of the following loop statements uses pointer arithmetic to process all 100 entries?
A. for (pWalk = ary; pWalk < pWalk + 99; pWalk++) ... B. for (pWalk = ary; pWalk < pWalk + 100; pWalk++) ... C. for (pWalk = ary; pWalk < pWalk + 100; pWalk + 1) ... D. for (pWalk = &ary; pWalk < pWalk + 99; pWalk++) ... E. for (pWalk = &ary; pWalk < pWalk + 100; pWalk++) ...