0% found this document useful (0 votes)
7 views5 pages

Understanding Bandwidth and HTTPS Security

The document discusses various technical concepts including bandwidth, HTTPS, and network infrastructure. It highlights the importance of secure data transmission through HTTPS and outlines a server setup with a focus on connectivity and protocols like VoIP. Additionally, there is a code snippet for inserting student data into a MySQL database.

Uploaded by

snippyjohn24
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views5 pages

Understanding Bandwidth and HTTPS Security

The document discusses various technical concepts including bandwidth, HTTPS, and network infrastructure. It highlights the importance of secure data transmission through HTTPS and outlines a server setup with a focus on connectivity and protocols like VoIP. Additionally, there is a code snippet for inserting student data into a MySQL database.

Uploaded by

snippyjohn24
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

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

You might also like