Skip to main content

Healthcare Systems Article Category

Medical Factors Which make it The most effective  just by Sejal Kakadiya  Medicine and health agencies with now consentrate on top quality, charge together with great satisfaction health of their solutions. These are typically that support beams which a lot of these agencies redefine the direction they trade. The following really results in thrilled clients.  How come Serious Treatment Direction Can be a Trend Inside Medicine and health Sector  just by Steven Orange  A whole lot of North american healthcare systems' options are generally about that direction together with procedure with serious circumstances. Direction with serious health conditions which include diabetes, excessive circulation demand, cardiovascular disease, together with hypothyroidism can be a vital component of easiest treatment healthcare provider's succeed. Inside standard product, that general practitioner spots someone on an automobile accident with treatment, inspects that condition ...

Solved MCQ on TCP/IP and UDP in Computer Networks set-1


1) TCP is a .......... protocol.

A. stream-oriented

B. message-oriented

C. block-oriented

D. packet-oriented


2) Which of the following is not the layer of TCP/IP protocol.

A. Physical layer

B. link layer

C. network layer

D. transport layer.


3) TCP groups a number of bytes together into a packet called a ....

A. user datagram

B. segment

C. datagram

D. packet


4) The .......... of TCP/IP protocol is responsible for figuring out how to get data to its destination.

A. application layer

B. link layer

C. network layer

D. transport layer.


5) TCP is a(n) ........... transport protocol.

A. protocol delivery

B. reliable

C. best-effort delivery

D. effortless delivery


6) ......... is the protocol that hides the underlying physical network by creating a virtual network view.

A. Internet Protocol(IP)

B. Internet Control Message Protocol(ICMP)

C. Address Resolution Protocol(ARP)

D. Bootstrap Protocol(BOOTP)


7) To use the services of UDP, we need ......... socket addresses.

A. four

B. two

C. three

D. four


8) Which of the following is not the name of Regional Internet Registries(RIR) to administer the network number portion of IP address.

A. American Registry for Internet Numbers(ARIN)

B. Reseaux IP Europeans(RIPE)

C. Europeans Registry for Internet Numbers(ERIN)

D. Asia Pacific Network Information Center(APNIC)


9) UDP packets are called .......

A. user datagrams

B. segments

C. frames

D. packets


10) ............ addresses use 21 bits for the and 8 bits for the portion of the IP address for TCP/IP network.

A. Class A

B. Class B

C. Class C

D. Class D


11) UDP packets have fixed-size header of .......... bytes.

A. 16

B. 8

C. 32

D. 64


12) .......... messages are never sent in response to datagrams with a broadcast or a multicast destination address.

A. ICMP

B. ARP

C. IP

D. BOOTP


13) TCP assigns a sequence number to each segment that is being sent. The sequence number for each segment is number of the ....... byte carried in that segment.

A. first

B. last

C. middle

D. zero


14) .......... is responsible for converting the higher level protocol address (IP addresses) to physical network addresses.

A. Internet Protocol(IP)

B. Internet Control Message Protocol(ICMP)

C. Address Resolution Protocol(ARP)

D. Bootstrap Protocol(BOOTP)


15) UDP and TCP are both ......... layer protocols.

A. data link

B. network

C. transport

D. interface


16) ........... is a process-to-process protocol that adds only port addresses, checksum error control, and length information to the data from upper layer.

A. TCP

B. UDP

C. IP

D. ARP


17) Which of the following functions does UDP perform?

A. Process-to-process communication

B. Host-to-host communication

C. End-to-end reliable data delivery

D. Interface-to-interface communication.


18) A port address in TCP/IP is .........bits long.

A. 32

B. 48

C. 16

D. 64


19) When the IP layer of a receiving host receives a datagram, .....

A. delivery is complete

B. a transport layer protocol takes over

C. a header is added

D. a session layer protocol takes over


20) TCP/IP is a .......... hierarchical protocol suite developed before the OSI model.

A. seven-layer

B. five-layer

C. six-layer

D. four-layer



Answers:


1) A. stream-oriented
2) A. Physical layer
3) B. segment
4) C. network layer
5) B. reliable
6) A. Internet Protocol(IP)
7) B. two
8) C. Europeans Registry for Internet Numbers(ERIN)
9) A. user datagrams
10) C. Class C
11) B. 8
12) A. ICMP
13) A. first
14) C. Address Resolution Protocol(ARP)
15) C. transport
16) B. UDP
17) A. Process-to-process communication
18) C. 16
19) B. a transport layer protocol takes over
20) B. five-layer



Related Posts:

For more MCQ's on Computer Networks: Click Here


Comments

Popular posts from this blog

Healthcare Systems Article Category

Medical Factors Which make it The most effective  just by Sejal Kakadiya  Medicine and health agencies with now consentrate on top quality, charge together with great satisfaction health of their solutions. These are typically that support beams which a lot of these agencies redefine the direction they trade. The following really results in thrilled clients.  How come Serious Treatment Direction Can be a Trend Inside Medicine and health Sector  just by Steven Orange  A whole lot of North american healthcare systems' options are generally about that direction together with procedure with serious circumstances. Direction with serious health conditions which include diabetes, excessive circulation demand, cardiovascular disease, together with hypothyroidism can be a vital component of easiest treatment healthcare provider's succeed. Inside standard product, that general practitioner spots someone on an automobile accident with treatment, inspects that condition ...

How to Automatically Troubleshoot and Fix Computer Problems

If you have problems on your computer and you don't know how to solve the problem, there is a feature on window which can automatically troubleshoot and fix computer problems, so why don't use it, that may solve your problem. Using this feature, you can click on a task to automatically troubleshoot and fix common computer problems. Here I have listed some common computer problem and their troubleshooting ideas to fix the problem. How to Run Programs Made for Previous Versions of Windows If you have problems for running programs in your computer that are made for previous versions of windows, you can use program compatibility troubleshooter to apply recommended compatibility settings for that program to run the program smoothly. Here are the steps to fix the problem for running programs made for previous versions of windows. First of all go to control panel then click on "Troubleshooting" option. On troubleshooting window, you can see the different options for fixing c...

How to create Changeable Date and Time Using JavaScript?

You can create changeable Date and Time using JavaScript Date object. JavaScript Date object will automatically hold the current date and time as its initial value. You can manipulate it easily by using different methods in Date object. The different methods in Date object I am going to use to create changeable Date and Time are as follows. Date():    Returns today's date and time. getDate(): Returns the day of the month from a Date object from 1-31. getDay():  Returns the day of the week from a Date object from 1-6 getMonth():Returns the month from a Date object from 0-11 getFullYear(): Returns the year, as a four digit number from Date object. getHours():   Returns the hour of a Date object from 0-23. getMinutes(): Returns the minutes of a Date object from 0-59 getSeconds(): Returns the seconds of a Date object from 0-59 Do do rest of the work you have to create a new Date() object and needs to use that value to get date, month, day name and time with hou...