IM NOT SURE!!!!!!!........................................
Data Editing is the answer
Answer:
The recommended type of trunk for interoperability is an IEEE 802.1Q trunk.
Explanation:
IEEE 802.1Q is an open industry standard and is the most commonly implemented on layer 2 switches of different vendors, assuring interoperability.
Commonly know as <em>dot1q</em>, is the networking standard that supports virtual LANs (VLANs) on an IEEE 802.3 Ethernet network. It specifies the mechanisms for tagging frames with VLAN data and the procedures for handling this data by switches and bridges.
Answer:
Mass communication.
Explanation:
Mass communication:-It is the exchanging or transmitting information to large numbers of people through mass media.
Mass media includes various medium through which we can transfer information such as magazines,newspapers,television,radio,films,websites and other also.
So Zee TV uses mass media to transfer information to very large number of people.
Answer:
If(temperature>98.6) // checking the condition
{
fever=true // assigned the true value in the fever variable
}
else
{
fever=false // assigned the false value in the fever variable
}
Explanation:
Following is the description of statement
- In the given problem we used if/else statement block.The if block is when there condition is true otherwise it executed the else block.
- In the above answer, we check the condition of "temperature" variable in the if block .
- If the condition of " temperature" variable is greater than 98.6 then it assigns the true value in the "fever" variable otherwise control goes to else block and executed the statement inside the else block i.e assigned the false value in the "fever" variable.