Answer:
Windows 10 if this is what I think u mean
7.1.5 Codehs:
Write a program that gets a string containing a person's first, middle and last names, and then display their first, middle and last initials. For example, if the user enters John William Smith, the program should display J. W. S. [In python]
Answer:
first = input("First name: ")
middle = input("Middle name: ")
last = input("Last name: ")
print(first[0]+". "+middle[0]+". "+last[0]+".")
Explanation:
This line prompts user for first name
first = input("First name: ")
This line prompts user for middle name
middle = input("Middle name: ")
This line prompts user for last name
last = input("Last name: ")
This line prints the name initials
print(first[0]+". "+middle[0]+". "+last[0]+".")
Answer:
To create a nonlinear presentation that had external links the designer should include “hyperlinks”
Explanation:
Let us understand what non-linear presentation is. It’s a reverse of linear presentation. A linear will go slide by slide, without any jump. A non-linear slide is a type of presentation prepared when the flow of slide is not much important, and the presenter can jump to any of the slide from any slide. This is done thorough two ways. 1. Hyperlink 2. Action button
We must include hyperlinks or action buttons where it allows us to toggle or navigate to any of the slide within the file. The hyperlink can also be added to move the control to a website.