Answer:
In c# Dictionary is the collection of keys and value .The dictionary is a generic collection class which is in the System.Collection.Generics namespace. we can represent dictionary like that Dictionary<TKey, TValue> where TKey represent the type of key and TValue is the type of TValue.
Following are the example which represent dictionary as integer and string
using System.Collections.Generic; // namespace
class Test // class test
{
static void Main() // main method
{
var ob = new Dictionary< int,string>(); // type integer and string
dictionary.Add( 2,"hello");
dictionary.Add(143,"hello1);
// The dictionary has 2 pairs.
Console.WriteLine("DICTIONARY 1 " + ob.Count);
}
}
Output:
DICTIONARY 1 :2
Explanation:
In this program we create a dictionary generic class which is integer and string type after that we add the elements in the dictionary by "dictionary.Add method " and finally print the count of dictionary
The answer would more likely be A
If it’s not correct I’m very sorry
Answer: (E) General data, accounting data and purchasing data
Explanation: Data in the vendor master data collection is the data that describes about the vendors that supply the firms or businesses. The record of the vendors are stored in the database which has subjects like address of vendor, name of vendor etc.
The segments or levels of the vendor master database are general data , purchasing data and the accounting data which gives the information about the good and services that are being supplied by the vendor along with his own details .
Other options are incorrect because inventory data, storage data and pricing data are not found in the data collection of vendor master .thus , the correct option is option(E).
Ah well yes I know I’m dumb