Answer:
SEO Friendly
Explanation:
Making websites SEO Friendly refers to design styles that makes search engines to easily find contents on the website. The search engines can easily find content on individual page of the website efficiently and interpret effectively.
Answer:
LA
Explanation:
where the rich people live
Answer:
b
Explanation:
HTTP is unsecured while HTTPS is secured and does not provide unauthorized access to any data given to it.
Access is not presentation software. i use all 4
Answer:
Python Program for the task.
#Ask the user to input the number of students
n = int(input("Please enter the number of students:\n"))
print()
#Get students' scores
for i in range(n):
score_list = [ ] #placeholder for score
i = float(input("Please enter student's score:"))
score_list.append(i) # append student score
#print the highest score
print("The highest score is",max(score_list))