Which of these methods or properties will return a bool-type value?

list.RemoveAt (1);list.Contains ("Milk");list.IndexOf ("Milk");list.Count;

Awesome! Contains () is the only method that will return true or false, depending on whether the list contains the given value.

Almost! Contains () is the only method that will return true or false, depending on whether the list contains the given value.