You can use GameObject.FindObjectsWithTag(string tag), but be carefull not to user it inside a frequently called function since it is a performance killer.
int taggedObjectsCount = GameObject.FindObjectsWithTag("Answer").Length;
if (taggedObjectsCount >= 10)
{
Debug.Log (taggedObjectsCount + " objects with that Answer found.");
}