Answer:
128-bit encryption
Explanation:
To comply with many Website requirements for added security, nearly all browsers support a minimum of a 128-bit encryption. It prevents viruses and keeps the website safe.
Answer:
IOS
Explanation:
Apple products use IOS as Thier operating system
Answer:
Explanation:
The oldest operating system is Version 6 Unix 1975 and the next is 1BSD 1977, then we can find the Apple DOS 1978, in several years we have Mac OS (System 1.0) 1984, in 1985 was born one of the most popular OS in the world Windows 1.0, and Linux version 0.01-0.1 is the newest in 1991.
Nowadays we can find other system like android, windows 10 or Chrome OS.
Answer:
#main function start
def main():
#list to store names entered by user
name_list=[]
#variable to take input from user to keep rotating the loop and take input from user again and again
ch='y'
fname=""
lname=""
while ch=='y' or ch=='Y':#keep the loop taking input from user till user do not want to enter more
#take input from user
name=[]
fname=input("Enter first name: ")
lname=input("Enter last name: ")
name.append(fname)
name.append(lname)
#append the previously input first and last name in main list
name_list.append(name)
ch=input("Do you want to continue: (y/Y for yes)")
#main function end
#get file name from user
filename=input("Enter output file name")
#open file in write mode
file=open(filename,"w")
#keep loop add data in file till main list 'name_list' have
for i in name_list:
#Write data in file
file.write("%s, %s\r\n" % (i[0],i[1]))
#close the file
file.close()
#call main function
main()
Explanation:
input the above code and see output