Im sorry i just need points
Answer:
The function in Python3 is as follows
def Distance(x1, y1, x2, y2):
dist = ((x1 - x2)**2 +(y1 - y2)**2)**0.5
return dist
Explanation:
This defines the function
def Distance(x1, y1, x2, y2):
This calculates distance
dist = ((x1 - x2)**2 +(y1 - y2)**2)**0.5
This returns the calculated distance to the main method
return dist
The results of the inputs is:

Answer:
yes but only if you have a backup password
Answer:
Salting
Explanation:
Salting is an idea that is related to hashing of password which is the mapping of input data to a fixed length output data by the use of algorithms.
Salting is the addition of a distinctive value to the beginning or end of a password in order to form a different hash value from the hash value that would have been generated without the 'salt', thereby making the passwords more secure from attacks
The salt for each user is a unique value that is stored along with the username in a database
ISDN – improvement over dial-up; DSL – uses a higher frequency than a voice call; dial-up – makes your phone-line busy; cable internet – uses coaxial television cables; mobile internet – uses the cellular network are the different types of internet connection.
<h3>What is an internet connection?</h3>
The technology and systems of connectivity that allow a user to get access to the internet is known as an internet connection. There are different types of internet connection based on their technologies.
Hence, the different types of internet connection with their functionalities are mentioned above.
Learn more about internet connection here:
brainly.com/question/9380870
#SPJ1