Answer:
eeee3eeeeeeeeeeeeeeeeeeee
D. Rasterize
This answer makes the most since
The packet is
dropped or discarded. By default, a router will send packets
to a network that has been listed in the routing table. If it happens that the
network is not listed, the packet will be discarded or dropped. Packets that do
not have a default route or gateway of last resort are dropped.
Answer:
#HERE IS CODE IN PYTHON
#function to find length of shortest and longest string in the array
def fun(list2):
#find length of shortest string
mn=len(min(list2))
#find length of longest string
mx=len(max(list2))
#return both the value
return mn,mx
#array of strings
list2 = ['Ford', 'Volvo', 'BMW', 'MARUTI','TATA']
# call the function
mn,mx=fun(list2)
#print the result
print("shortest length is:",mn)
print("longest length is:",mx)
Explanation:
Create an array of strings.Call the function fun() with array as parameter. Here min() function will find the minimum string among all the strings of array and then len() function will find its length and assign to "mn". Similarly max() will find the largest string and then len() will find its length and assign to "mx". Function fun() will return "mn" & "mx".Then print the length of shortest and longest string.
Output:
shortest length is: 3
longest length is: 5
Answer:
False
Explanation:
Input/output devices do NOT transfer information in only one direction.
Input devices receives the information while the output devices sends the information. The direction of the information being transferred between the input and output is NOT just in one direction.
Examples of input devices are keyboard, mouse, joy stick, scanner, etc.,
Examples of output devices are monitor (LED, LCD, CRT etc), printers (all types), plotters, projector, speaker(s), head phone, etc.