on calculations can i see how did the expect come to the solution ,all the workout should be included
QUESTION 1
QUESTION 2
Question 3
Suppose Amy, sends an email using her browser to her friend Jack. Jack uses a user agent on his mobile device to access his email from his mail server using a pull protocol. Which application layer protocols are being used in this scenario?
|
SMTP and POP3 |
||
|
SMTP and IMAP |
||
|
HTTP and POP3 |
||
|
HTTP and SMTP |
||
|
HTTP, SMTP and IMAP |
QUESTION 4
"This protocol uses UDP and can be thought of as the ""Internets Directory Service"""
|
DNS |
||
|
TCP |
||
|
UDP |
||
|
All of the above |
||
|
None of the above |
QUESTION 5
Server.py
from socket import *
sName=’127.0.0.1’
sSocket=socket(AF_INET,SOCK_DGRAM)
sSocket.bind((sName, 12005))
while True:
msg, cAddr =sSocket.recv(2048)
newMsg = msg.decode().lower()
sSocket.sendto(newMsg.encode(), cAddr)
In which line does a coding error exist?
|
sSocket=socket(AF_INET,SOCK_DGRAM) |
||
|
sSocket.bind((sName, 12005)) |
||
|
msg, cAddr =sSocket.recv(2048) |
||
|
newMsg = msg.decode().lower() |
||
|
sSocket.sendto(newMsg.encode(), cAddr) |
QUESTION 6
|
HTTP |
||
|
FTP |
||
|
BitTorrent |
||
|
SMTP |
||
|
None of the above |
QUESTION 7
|
SMTP |
||
|
POP3 |
||
|
IMAP |
||
|
All of the above |
||
|
None of the above |
||
|
QUESTION 8 |
A new startup company Networks unlimited needs to register it s mail server in the DNS system. The domain name is: networksunltd.net at IP address 202.194.54.3. Which of the following is true regarding resource record entries that will need to be made by the DNS registrar?
|
Into the .com TLD server insert (networksunltd.net, mail.networksunltd.net, NS) and (mail.networksunltd.net, 202.194.54.3, A) |
||
|
Into the .com TLD server insert (networksunltd.net, 202.194.54.3, A) |
||
|
Into the .net TLD server insert (networksunltd.net, mail.networksunltd.net, MX) and (mail.networksunltd.net, 202.194.54.3, A) |
||
|
Into the .com TLD server insert (mail.networksunltd.net, 202.194.54.3, A) |
||
|
None of the above |
QUESTION 9
Consider the following excerpt from a simple server side UDP program:
Server.py
from socket import *
sName=’127.0.0.1’
sSocket=socket(AF_INET,SOCK_DGRAM)
sSocket.bind((*******************))
while True:
msg, cAddr =sSocket.recvfrom(2048)
newMsg = msg.decode().lower()
sSocket.sendto(newMsg.encode(), cAddr)
What code could replace the ***********’’s in line 4?
|
sName, sPort |
||
|
sName, 12005 |
||
|
sPort, SName |
||
|
12005. ‘xyz’ |
||
|
None of the above |
Question#1
6.32 SECONDS
Question#2
7.5 SECONDS
Question#3
HTTP and POP3
Question#4
|
TCP |
Question#5
|
msg, cAddr =sSocket.recv(2048) |
Question#6
|
BitTorrent |
Question#7
|
IMAP |
Question#8
Into the .net TLD server insert (networksunltd.net, mail.networksunltd.net, MX) and (mail.networksunltd.net, 202.194.54.3, A)
Question#9
|
sName, 12005 |
PLEASE GIVE A THUMBS UP!!!!!!!!!
on calculations can i see how did the expect come to the solution ,all the workout...
I NEED HELP WITH NETWORKS ( 1 - 11) QUESTIONS , ENSURE YOU ANSWER THEM ALL QUESTION 1 Which of the following could be valid DNS resource record entries? (mysite.com, 125.245.206.3, NS) (ibm.com, backup6.ibm.com, CNAME) (158.223.21.2, mypage.edu, A) All of the above None of the above 1 points QUESTION 2 Which mail protocol keeps state information across sessions? SMTP POP3 IMAP All of the above None of the above 1 points QUESTION 3 What type of message is...
ANSWER NETWORKS QUESTIONS (MCQS AND CALCULATIONS) QUESTIONS ( 11 - 20) QUESTION 11 1. Consider the following excerpt from a simple server side UDP program: Server.py from socket import * sName=’127.0.0.1’ sSocket=socket(AF_INET,SOCK_DGRAM) sSocket.bind((sName, 12005)) while True: msg, cAddr =sSocket.recvfrom(2048) newMsg = msg.decode().lower() sSocket.sendto(*********************) What code could be used to replace the **********’s in line 8? newMsg.encode(), cAddr newMsg.encode() msg.encode(), cAddr msg.encode() none of the above 1 points QUESTION 12 For a client to obtain an IP address from the local...
I NEED HELP WITH COMPUTER NETWORKS( PLEASE ANSWER THEM ALL) CALCULATIONS & MCQS 1. Name 1 languages that the browser is willing to accept in the following message? GET /kurose_ross/interactive/quotation7.htm HTTP/1.1 Host: gaia.cs.umass.edu Accept: text/plain, text/html, image/gif, image/jpeg, audio/mpeg, audio/basic, video/wmv, video/mp4, application/*, */* Accept-Language: en, fr, de, ar, cs If-Modified-Since: Mon, 12 Aug 2019 07:13:47 -0700 User Agent: Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko/20100101 Firefox/11.0 2. A file of size F = 8 Gbits needs to be distributed to10...