Ahhh we rjfydyxtxyztxhxhxhxtzgxgxgxtxftxtxtxtxt gc
<span>As programs and online activities have grown more robust and innovative, it has simultaneously required computer manufacturers to identify ways to make their devices faster to keep up with these changes. Users benefit immensely due to their ability to have boundless and efficient access to their various needs.</span>
based off my knowledge im gonna to go with OPTION A because ur social security number holds information like your brith etc
Answer:
The Notebook, Beauty and the Beast, Step Brother, The Breakfast Club and The Little Mermaid
Explanation:
Answer:
size = int(input("How many names will be there? "))
names = []
for _ in range(0, size):
name = input("Enter a name: ")
names.append(name)
names.sort()
print(names[0] + " " + names[-1])
Explanation:
* The code is in Python
- Ask the user for the number of the name
- Initialize an empty list that will hold the name entered
- Inside the for loop, get the names and put them in the names array
- When all the names are entered, sort them and print the first and last of the name