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:
The code to this question can be given as:
Code:
public class Book  //define class.  
{
private String title, author;   //define variable.
Book(String a, String b)  //define parameterized constructor.
 {
title = a;   //holding value.
author = b;
}
public String toString()  //string function
 {
 return title + "\n" + author;    //return value.
}
}
Explanation:
In the above java code firstly we declare the class book that name is already given in the question. Then we declare the private variable that datatype is string author and title. Then we declare the parameterized constructor. In the parameterized constructor we use the private variable for hold constructor parameter value. Then we declare the tostring() function in this function we return value of the title and author variable.
 
        
             
        
        
        
Answer:
article, website run by non profit, website for fed agency 
 
        
             
        
        
        
Where does the book icon of the Help file take you?
 ans To a section to browse Help by category. 
is answer hope you like it
"c"is correct
 
        
             
        
        
        
Just quizlet it believe me it will help 100%