Answer:
see explaination for program code
Explanation:
scalar_product = 0
li=[]
li2=[]
#reading numbers1.txt and numbers2.txt intoli and li2 respectively
with open('numbers1.txt') as n1, open('numbers2.txt') as n2:
for line1 in n1:
li.append(int(line1))
for line2 in n2:
li2.append(int(line2))
#storing min list size into variable l
a=len(li)
b=len(li2)
if a<b:
l=a
else:
l=b
#calculating scalar product
for i in range(l):
scalar_product=scalar_product+li[i]*li2[i]
print("scalar product is",scalar_product)
You click on the three dots and click the person silhouette with the plus sign on it.
Answer:
Stateful frame filtering
Explanation:
<h2><u>Fill in the blanks</u></h2>
A <u>Stateful frame filtering </u> keeps a record of the state of a connection between an internal computer and an external device and then makes decisions based on the connection as well as the conditions.
Answer:
Explanation:
Dynamic host configuration protocol DHCP help us to assign an IP automatically, with this method is not necessary to get more IP blocks because this method use lease time or rental IP, this means, if an IP is not being used, this is save for the next user, in this case, we're reciclyn the IP bloks, and this is the most efficient way to administrate our IP address.
Wireless Networks sends signals via airwaves and usually does not need cables.
<h3>What is Wireless Networks?</h3>
A wireless network exists as a computer network that utilizes wireless data connections between network nodes. Wireless networking is a process by which homes, telecommunications networks, and business installations. A wireless network guides a computer network that creates use of Radio Frequency (RF) connections between nodes in the network. Wireless networks exist as a popular solution for homes, businesses, and telecommunications networks.
Wireless networks operate utilizing Radio Frequency (RF) technology, a frequency associated with radio wave propagation within the electromagnetic spectrum. An electromagnetic field exists generated when an RF current is supplied to an antenna that can then spread through space.
There exist three different kinds of wireless networks – WAN, LAN, and PAN: Wireless Wide Area Networks (WWAN): WWANs are created via the use of mobile phone signals typically provided and sustained by specific mobile phone (cellular) service providers.
Hence, Wireless Networks sends signals via airwaves and usually does not need cables.
To learn more about Wireless Networks refer to:
brainly.com/question/26956118
#SPJ4