Answer:
The answer is Digital divide.
Explanation:
Digital divide describes the differences between people with access to the internet, computers or modern ICT or Information Communication Technology and the people that do not.
The effect of digital divide is described below:
- It affects economic growth. Due to a lack of access to technology in some areas, they experience low economic growth and cannot be compared to areas with easy access to technology.
- It affects education. Students with easy internet access and other technological facilities always have information at the tip of their fingers compared with students who only go to the libraries or listen to the radio to get information.
- It affects Political participation. Access to technology increases the citizen's participation in politics while it has a negative effect on places with no access to technology.
Phishing is 2
clickjack is 1
malware is 3
single signon is 4
Internet safety tip: Single Sign-On is unsafe. The others are made by hackers with no life and no heart.
The answer is question mark (?). To create a query string, you add a question mark (?) immediately after a url, followed by the query string.
Answer:
#Set of three most popular names in 2007
male_names = {'Oliver', 'Declan', 'Henry'}
#The male_names set is displayed to the user
print(male_names)
#The name to be removed is accepted from the user as a string
remove_name = str(input("Enter name to remove: "))
#The name to be added is accepted from the user as a string
add_name = str(input("Enter name to add: "))
#The remove method of a set is use to remove the received remove_name
male_names.remove(remove_name)
#The add method of a set is use to add the received add_name
male_names.add(add_name)
#The new set of male_names is displayed to the user
print(male_names)
Explanation:
B (They can be resized without losing image clarity)