Click on each orange point and select the correct answer.
You are reviewing the following class that is used to manage the results of a 5K race:
public class Player
{
private string _name;
public const string key = "player";
public bool MatchName(string searchTerm)
{
return _name.ToLower() == searchTerm;
}
public void SetResult(int rank, string name)
{
if (_name != null)
{
return ;
}
Ranking = rank;
_name = name;
}
public int Ranking { get; private set; }
}
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
{"79.4197_42.9004":[{"id":18506498,"answer":"YES","x":79.4197,"y":42.9004},{"id":18506499,"answer":"NO","x":79.4197,"y":42.9004}],"79.3573_65.3048":[{"id":18506500,"answer":"YES","x":79.3573,"y":65.3048},{"id":18506501,"answer":"NO","x":79.3573,"y":65.3048}],"79.5224_87.1595":[{"id":18506502,"answer":"YES","x":79.5224,"y":87.1595},{"id":18506503,"answer":"NO","x":79.5224,"y":87.1595}]}
-
1.
YES, NO
-
2.
YES, NO
-
3.
YES, NO