Answer:
The given statement is False.
Explanation:
- Needs Met Rating of a result show us that how much the result is fulfilling the query of the user. The greater the needs met rating is, the greater the satisfaction of the user is.
- If a page has high quality then it can or can not be useful for the user.
- If the page has high quality as well as high needs met rating then it is best for the user.
- If the page has high quality and has low needs met rating that means it is not relevant to the query so not useful for the user.
- Thus, it is concluded that high quality pages in a task shouldn't all get the same needs met rating rating rather need met rating is dependent upon the relevancy and usefulness of the result to the need and query of the user.
Answer:
The main objective of router is to connect various networks simultaneously and it works in network layer
Explanation:
The main objective of router is to connect various networks simultaneously and it works in network layer
Answer:
The complete code is as follows:
from array import *
myArr = array('f',[3, 5, 7,3, 10])
location = myArr.index(7)
print(str("7")+" is at position "+str(location+1))
Explanation:
I made corrections to the third line of the code and I added a line
This line gets the index of 7 from the array myArr using the index keyword
location = myArr.index(7)
This line prints the position of the 7 in the array
print(str("7")+" is at position "+str(location+1))
Answer:
35, 25, 50, 75, 95
Explanation:
List of five track numbers that will cause all three algorithms to visit the same tracks in the same order are -
35
25
50
75
95
Please go to attachment for the diagram how these 5 tracks will be traversed by various algorithms.
All the algorithms traverse in the order 35 -> 25 -> 50 -> 75 -> 95