Question: Q/ Given class DollApp.java below. Type and find the output. Write your answer the sheet provided. Java language import java.util.Scanner; public class DollApp { public

Q/ Given class DollApp.java below. Type and find the output. Write your answer the sheet
provided.
Java language
import java.util.Scanner;
public class DollApp
{
public static void main()
{
Scanner in = new Scanner (System.in);
System. out . println ("Creating a doll..");
Doll doll1 = new Dol();
doll1.pressMe();
doll1.setName ("Rita") ;
doll1.pressMe () ;
System. out. print ( "Would you like to set name?Y/N: > ");
char choice = in.next ().charAt (0);in.next Line() ;
if((choice == 'Y')||(choice == 'y'))
{
System. out . print ("Enter the name: ");
String name=in.nextLine();
doll1.setName (name) ;
}
doll1.pressMe ();
}
}
output:
?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!