The program that ask the user to type there first name and then print out how many letters that is in there name is as follows:
x = input("what is your first name: ")
y = len(x)
print(f"There are {y} letters in your name")
<h3>Code explanation;</h3>
The code is written in python.
- Firstly, we store the users name in the variable x.
- Then, we find the length of the users inputted name and store it in a variable y.
- Finally, we print the length of the users name using the print function.
learn more on python here: brainly.com/question/26738945
Answer:
a blog
Explanation:
a forum is for questions, a wiki doesn't make sense in this situation and email wouldn't be used for this either so it should be a blog
Where are the options and the dialog
The answer to this question is:
"Both work with computers, but only Bluetooth can be used in a headset"
The answer to this is true because Both computers can use/work with computer but Bluetooth can only connect to head set headset don't need wifi it needs Bluetooth and charging/plug
Your Welcome :)
The first division should reduce the hundreds digit to the units digit by dividing by 100. Ignoring remainder means ignoring the previous units and tens digits.
The second division, where we keep the remainder is to extract the units digit by ignoring the quotient. So we divide by 10. The discarded digits are the tens and higher digits.