Answer:
Confidentiality and availability- interruption, integrity - modification and fabrication.
Explanation:
Data on a network is provided with the three As in security, accountability, authentication and authorisation to promote the confidentiality and integrity of data on the network.
When a data is interrupted by a DOS attack, it is exposed to the attackers and the data transfer is interrupted. With this, the attacker can modify the existing data or fabricate a new data to sent to the network, crippling the integrity of the network data.
I belive the correct answer would be binary code because computers see the coding as 00100001
Answer:
retro del susurro
Explanation:
el reto del susurro es el juego divertido donde alguien tiene que adivinar que le están diciendo cuando están escuchando música
Answer:
file1 = []
file2 = []
fileone = "lyric1.txt"
filetwo = "lyric2.txt"
def linereader( myfile, mylist):
for line in open(myfile, "r") as file:
line_read = readlines( line)
mylist.append( line_read)
file.close()
linereader( fileone, file1)
linereader( filetwo, file2)
# Assuming both files have same number of lines.
for index, item in enumerate(zip(file1, file2)):
if item[0] != item[1]:
print( index + 1, item)
Explanation:
The python code compares two files and returns the number and the lines from both files that do not match. The source code opens the files lyric1.txt and lyric2.txt reading each lines to different lists which are iterated to compare its items returning the number of the line and the unequal lines.