Answer:
E. 7.0
Explanation:
the 7 of the out of the older and make a shame of waves and force of trying
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
The next line is 0___________________________
Answer:
Option (a) myCar
Explanation:
Option (a) is Correct
If there are two or more words in variable we can use camel case to declare the variable. In camel case first character of first word is either a lowercase alphabet or underscore (_) and first character of second word is a uppercase alphabet. ex: empNum, myCar
So the Option (a) myCar is correct among the given options
Option (b) is incorrect
Since both the first letter of two words are in lower case which is not according to camel case rules
Option (c) is incorrect
The first letter of first word is in lower case first character of second word is a uppercase alphabet but there is a gap so it is not valid .
Option (d) is incorrect
The first word is in upper case and first character of second word is a uppercase alphabet it is not valid.