Answer:
<h2> <u>NETWORK</u> <u>TOPOLOGY</u> .</h2>
This tefers to how nodes are connected to the network.
Types of topology.
- Physical topology.
- Logical topology.
In physical topology,nodes are connected physically using wires(cables).
Types of physical topology include:
- Bus topology
- Tree topology
- Hybrid topology
- Star topology
- Ring topology.
Hope it helps you,any question so far...comment !!!
Answer:
The code is not dereferencing the pointers. You have to place an asterisk in front of the pointer to read the value the pointer points to.
Explanation:
So "if (str1 != str2)" must be "if (*str1 != *str2)".
likewise:
while (*str1 != 0 && *str2 != 0)
and
result = (*str1 == *str2);
Answer:
b) iteration.
Explanation:
There are various algorithms which are used in computer programming. Iteration is also a type of algorithm which is used to create loops. The instructions are inserted once and then these instructions are repeated to create a loop function.
Answer and Explanation:
Messages flow across an SDN controller's:
Northbound APIs:
• Messages which help in read/write state of the network and developing flow tables within the
state management layer.
• Notifications for the state-change events.
• The interaction between the controller and network control applications is done through the
northbound interface.
• Network control applications send messages to the controller.
Southbound APIs:
• Messages which help for the up-to-date view of the network's state like message for the
attached link has gone up or down, new devices are joined the network, or indications of the
device is up or down.
• Controller's southbound interface is the communication among the controller and the controlled
devices. Controlled devices are the recipients of the messages sent form the controller.