I'm pretty sure the answer is B.
SD SC can held up to 2GB capacity
SDHC can held up to 32 GB
SDXC (eXtended) can held up to 2TB
SDIO is an interface for I/O devices, there are cameras with this standard.
You should specify what language you're using in these types of questions; here's an example in C++.
#include <iostream>
#include <math>
int main()
{
// example area
double area = 25;
// square root the area to find the length
// then apply basic pythagoras
double diagonal = sqrt(pow(sqrt(area), 2) + pow(sqrt(area), 2));
return 0;
}
Mostly teenagers and young adults (ages 14-21) text the most.
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