Answer:
Port number is used at the transport layer to identify the receiving application
Explanation:
Transport layer is responsible for overall “end-to-end” communication. It provides communication service to the application process which might be running on “different hosts”.
TCP (Transmission Control Protocol) or UDP (User Data Protocol) is the protocol used in the Transport layer. The port number is essential so that the transport layer can carry packets to the right destination pointing to the right application.
A port number usually contains 16 bit integer. Normally this number will send along with the header. Port number plays a major role in Transport layer.
All I could find are networking cites allow people to take pics of themselves for a personal effect! hope this is what your looking for.
Answer:
<em>Written in Python</em>
names= []
birthday = []
name = input("Name: ")
bday = input("Birthday: ")
for i in range(1,11):
names.append(name)
birthday.append(bday)
if name == "ZZZ":
break;
else:
name = input("Name: ")
bday = input("Birthday: ")
print("Length: ", end='')
print(len(names))
checknm = input("Check Name: ")
while checknm != "ZZZ":
if checknm in names:
ind = names.index(checknm)
print(birthday[ind])
else:
print("Sorry, no entry for name")
checknm = input("Check Name: ")
Explanation:
<em>The program is written in Python and I've added the full source code as an attachment where I used comments to explain difficult lines</em>
<em />
Answer: Variety
Explanation:
According to the given question, Haley is dealing with the variety of the organization products posts on the social media networking as Haley's employer wants to comping all the data or information related to the products into the database system.
- The database is one of the type of management system that manages all the database that are shared by the customers or users.
- The main important function of the database is that it organize the data more accurately and properly in the system.
- The database management system (DBMS) handle all the data in the system more effectively from the variety of the users.
Therefore, Variety is the correct answer.
Answer:
The correct answer is A.
Explanation:
Moore's Law states/predicts that the maximum number of transistors that can be used on integrated circuits (processors etc.) will be doubled every two years so it basically predicts an exponential growth in terms of transistors used.
Doubling the number of transistors used means that it will almost certainly increase the performance of the processors. Of course there are a lot of other variables that the performance depends on but Moore's Law is proven to be true and is being used since 1960's. The answer given in option A is the one that best reflects on this law.
I hope this answer helps.