Question
What is the difference between Circuit Switching and Packet Switching Technique?

Answer

Circuit Switching Technique Packet Switching Technique

a. Resource reservation is the feature of circuit switching because path is fixed for data transmission.

a. There is no resource reservation because bandwidth is shared
among users.
b. It is more reliable. b. It is less reliable.
c. It works on End-to-End Connection c. It works on Store and Forward technique.

Need a full question paper?

Generate a complete, print-ready paper with questions like this in minutes — across 16+ boards, with answer keys.

Start Generating Free

Similar questions

Write the output of the given program:

Find and write the output of the following Python code :

Based on the following python code, find out the expected correct output(s) from the options (i) to (iv)
import random
for i in range(5,2,-1):
print(random.randint(1,3)+i,end="*")
(i) 7*6*4 (ii) 7*6*6
(iii) 6*7*9* (iv) 4*7*6*
Write script to find the sum of first n terms of the following series:
$1+x+\frac{x^2}{2}+\frac{x^3}{3}+\ldots$
where n and x have to be input from the user.
Write the program to count the number of characters in the file “India.txt”. 
Differentiate between packet switching over message switching?        
Observe the table ‘Club’ given below:

Table: Club

Member_id Member_Name Address Age Fee
M001 Sumit New Delhi 20 2000
M002 Nisha Gurgaon 19 3500
M003 Niharika New Delhi 21 2100
M004 Sachin Faridabad 18 3500

(i) What is the cardinality and degree of the above given table?

(ii) If a new column contact_no has been added and three more members have joined the club then how these changes will affect the degree and cardinality of the above given table.

Illustrate the layout for connecting 5 computers in a Bus and a Star topology of Networks. [AI 2015]

OR

Any valid illustration of Bus and Star Topology.

Write a script to create a list of names of 10 cities and then
(a) Display all the elements of the list
(b) Display all the elements of the list in reverse order
Write a function search () to search a record in a binary file according to the employee number entered by the user. Also display the message “Record not found” in case record not found in the file.