/*
CS371p: Quiz #18 (5 pts)
*/

/* -----------------------------------------------------------------------
1. Where can the keyword mutable be used?
   What does it mean?
   Be very precise.
   (2 pts)

non-static data member declaration
can be changed in a const non-static method
*/

/* -----------------------------------------------------------------------
2. What is the type of 'this' in a const non-static method of type T?
   Be very precise.
   (1 pt)

const T* const
*/

/* -----------------------------------------------------------------------
3. Can a const non-static method modify the static data of the instance
   that it's invoked on?
   (1 pt)

yes
*/


syntax highlighted by Code2HTML, v. 0.9.1