AK-
Q1
Q2
Q3.
Q4.
Q5.
Bandwidth is the maximum rate of data transfer over a given transmission
medium. / The amount of information that can be transmitted over a network.
[Link] (Hyper Text Transfer Protocol Secure) is the protocol that uses SSL
(Secure Socket Layer) to encrypt data being transmitted over the Internet.
Therefore, https helps in secure browsing while http does not.
Q6
i. Movie editing block is the most appropriate to house the server
as it has the maximum number of computers.
ii. Firewall
iii.
iv.
Switch/hub will be placed in all blocks to have connectivity
within the block.
Repeater is not required between the blocks as the distances
are less than 100 mts.
v. Protocol: VoIP -Voice Over Internet Protocol
Q7.
import [Link] as mysql
def sql_data():
con1=[Link](host="localhost",user="root",
password="tiger", database="school")
mycursor=[Link]()
rno=int(input("Enter Roll Number :: "))
name=input("Enter name :: ")
clas=int(input("Enter class :: "))
marks=int(input("Enter Marks :: "))
querry="insert into student values({},'{}',{},
{})".format(rno,name,clas,marks)
[Link](querry)
[Link]()
print("Data Added successfully")
[Link]()
b)
Q8.
Q9