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:
1.word = "George slew the dragon"
startIndex = word.find('dr')
endIndex = startIndex + 4
drWord = word[startIndex:endIndex]
2. sentence = "Broccoli is delicious."
sentence_list = sentence.split(" ")
firstWord = sentence_list[0]
Explanation:
The above snippet is written in Python 3.
1. word is initialized to a sentence.
Then we find the the occurence of 'dr' in the sentence which is assign to startIndex
We then add 4 to the startIndex and assign it to endIndex. 4 is added because we need a length of 4
We then use string slicing method to create a substring from the startIndex to endIndex which is assigned to drWord.
2. A string is assigned to sentence. Then we split the sentence using sentence.split(" "). We split based on the spacing. The inbuilt function of split returns a list. The first element in the list is assigned to firstWord. List uses zero based index counting. So. firstWord = sentence_list[0] is use to get first element.
A Network is definitely a Tree when any of the below properties matched.
Explanation:
A Network is synonym for connected graph. Connected graph is a graph is a path which will connect from vertex to vertex.
A Tree is a network that has no circuit. network can be differed from tree by three key properties
1. Single path property - one path connecting two vertices
2. All bridges property - every edge of a network is a bridge
3. N-1 edges property - N vertices has N-1 edges
To determine this we use to N-1 edges property as given number of vertices and no bridges.
If a network has 15 vertices it must have 15-1= 14 edges to become a tree
It's voice phishing but it's also sometimes referred to as vishing