Tell me about Dictionary Object?
Answers were Sorted based on User's Feedback
Answer / guest
It it a collection Object used to store "name = value" pair
information. Collection of similar data.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sonali
A dictionary is actually just another collection of
Key/Value pairs, just like a HashTable, except that you
declare a type for the Key and Value.
An example of a simple Dictionary object would be something
like:
Dictionary<int, string> newDict = new Dictionary<int,string>();
When you get the key or value, you are given an actual
Object of a specific type. With a HashTable, the Key and
Value are just Objects, meaning they have no type and must
be converted to something in order to be more than just that.
With a dictionary, you can declare the Object types and get
back useful Objects or those types
| Is This Answer Correct ? | 1 Yes | 0 No |
The FileSystemObject provides an object interface to drives, directories, and files for which of the following? A. Any local or mapped drive on either the server or the client. B. Only files and subdirectories in the web site's home directory. C. Any local physical drive or mapped drive on the web server. D. Any file system physically located on the web server. E. The client's computer.
Explain what are the attributes of the tags? What are their functions?
How add insert options in datagrid control in footer row.
What is the maximum size of an array?
plz send me interview model questions asked in KVB Clerk interview.
2 Answers Karur Vysya Bank KVB,
How do I open aspx files?
Which is the default scripting language of asp in server-side?
What is the difference between jsp and asp?
hi this is madhu i have one doubt,regarding siebel Q: is this is mandatory when we r doing join between a bc & table , the table should extension table Reqired or not, can we do the join with base table also,
Name the property which is on a combo box do you set with a column name, prior to setting the data source, to display data in the combo box?
what is the default .net provider
Which choice is NOT a property of Dictionary Object? A. Key() B. CompareMode C. Item () D. Exists () E. Count