Answer:
C) until the message has been communicated
Answer:
The switch sends broadcast traffic to all ports like a hub to get the number of ports used and build its MAC address table.
Explanation:
A network switch is a device used in a LAN to connect all available workstations. Unlike a network hub, it is able to send frames from a host or workstation to another using its MAC address table.
An example of a switch is the Cisco 2950 switch. When it is first turned on, it acts as a hub, broadcasting traffic to all its ports. This process is used to create a MAC address table to get the IP address of workstations and the ports they relate to, enabling it to send unicast traffic to a specific port.
Answer:
ip = enrollment + section;
Explanation:
The variable ip has been declared to be a pointer to int.
int * ip;
The variable enrollment has been declared as an array of 20 elements .
int enrollment[20];
The variable section has been declared as an int.
int section;
In order to make ip point to the element in the array indexed by section, we can use the following statement :
ip = enrollment + section;
This will make ip point to enrollment[section].
Answer:A) Syslog
Explanation: Syslog is the log for the messaging in the computing field.It acts as a separator for the different task that is related to messaging. The task usually are storing of message, production of the message through software,analyzing message, reporting it etc.
Other options given in the question such as WORM storage is for the storage technology,UTM is for the management for the threat situation and firewall logging is related with log/tables for firewall.
Thus, the correct option is option (A).