Protocal
I need to make this 20 charaters so ye
This is helpful in order to have a larger space to work in.
Being able to collapse the ribbon gives the user a larger document to work with instead of focusing on what they’re typing as well as extra effects.
Hope this helps!
Answer:
Dictionary contains Key value pairs where key is used to retrieve the value
Explanation:
Using System.Collections;
void main(){
Dictionary<int, string> dict = new Dictionary<int, string>();
dict.Add(1,"One");
dict.Add(2,"Two");
dict.Add(3,"Three");
dict.Remove(1);
dict[2] = "Two Updated";
}
Dictionary<int, string> is a dictionary whose keys are integers and values are strings.
Add function is used to add elements to the dictionary
Remove function removes the key value pair from the dictionary based on given key.
we can directly modify/update the element in dictionary using the key
Answer:
Public IP addresses are accessible and available on the internet, while the private IP addresses are not.
Explanation:
Public IP addresses are accessible and readily available on the internet, while the private IP addresses are not easily accessible and also not available on the internet; A router alternate the private IP address with its own public IP address. which gives room for the computer to acces the internet.
Answer:
Answered in C++
double ConvertToInches(double numFeet, double numInches){
return numFeet*12 + numInches;
}
Explanation:
A foot is equivalent to 12 inches. So, the function converts feet to inches by multiplying the number of feet by 12.
The question is answered in C++
This line defines the method with two parameters
double ConvertToInches(double numFeet, double numInches){
This line converts the input parameters to inches and returns the number of inches
return numFeet*12 + numInches;
}
To convert 9 feet and 12 inches to inches, the main method of the program can be:
<em>int main(){</em>
<em> cout<<ConvertToInches(9,12);</em>
<em> return 0;</em>
<em>}</em>
This above will return 120 because: 9 * 12 + 12 = 120 inches