A HashTable t maintains a collection of names of states and capital city of each state. Which of the following is the correct way to find out whether "Kerala" state is present in this collection or not?
Options
A. t.ContainsKey("Kerala");
B. t.HasValue("Kerala");
C. t.HasKey("Kerala");
D. t.ContainsState("Kerala");
E. t.ContainsValue("Kerala");
Correct Answer
t.ContainsKey("Kerala");
More questions
1. Which of the following is the correct output for the C#.NET program given below?
int i = 20 ;
for( ; ; )
{
Console.Write(i + " ");
if (i >= -10)
i -= 4;
else
break;
}