HELP mE PLZ
Gabby needs to perform regular computer maintenance. What should she do? Check all that apply.
Remove unwanted files.
Reboot the computer.
Back up her data.
Scan for viruses.
Delete the browsing history.
Answer:
scan for viruses
remove unwanted files
back up her data
Price of Tether coin right now?
Don't answer if u don't know.
Answer:
Honestly I believe its $1
Explanation:
It just stays on $1 don't know how tho
what advice can you give to learners to achieve their goals
Answer:
Never give up, take your time, don't get distracted easily, lock your electronics in a box until you finish your work.
Reach for the stars! Always go the extra mile! Never give up!
In a sentence
If you wanted to become a police officer and you had to read boring books and you wanted to give up, but always think "I should always push myself past my limits, If I gave up then how would i know what I could have become?
Trademark
Owned by me
Price of ETH coin right now?
Don't answer if u don't know.
Answer:
58,715.40
Explanation:
Write the function greeting that takes a string as input. That string will be formatted as Name Age Hobby, without any punctuation. greeting should split their response into list elements, then use index values to greet them by name and respond that you enjoy that hobby as well, with the format: ‘Hello, ! I also enjoy !' Make sure your output matches this format! For example, greeting('Jose 17 hockey') # => 'Hello, Jose! I also enjoy hockey!' greeting('Cindy 14 robotics') # => 'Hello, Cindy! I also enjoy robotics!'
Answer:
The function in Python is as follows:
def greetings(details):
details = details.split(' ')
print('Hello, '+details[0]+'!, I also enjoy '+details[2])
Explanation:
This defines the function
def greetings(details):
This splits the input string by space
details = details.split(' ')
This prints the required output
print('Hello, '+details[0]+'!, I also enjoy '+details[2])
After splitting, the string at index 0 represents the name while the string at index 2 represents the hobby