Question

ANS (2) 0R hat output is produced by the following code if user enters these values for a question asked by the progran .User
System.out.print(The program shows how to verify /P data using Scanner methods); Scanner k new ScannertSystem.in): int v; p
0 0
Add a comment Improve this question Transcribed image text
Answer #1

(1)
"Good! You entered:3"

Enter a positive integer value! (enter -1 to end) Good! You entered:3

Explanation: The user has entered 3 which is an integer value, therefore, the while loop inside the do-while loop will not be executed and a message will be printed "Good! You entered:3".

(2)
"That's not a number!"

Enter a positive integer value! (enter -1 to end): Thats not a number!

Explanation: The user has entered "five" which is not an integer value, therefore, the while loop inside the do-while loop will be executed and a message will be printed "That's not a number!" and the user will be prompted again to enter a positive integer value.

(3)
"Good! You entered:7"

Enter a positive integer value! (enter -1 to end) Good! You entered:7

Explanation: The user has entered 7 which is an integer value, therefore, the while loop inside the do-while loop will not be executed and a message will be printed "Good! You entered:7".

(4)
"Good! You entered:-1"
"End of program"

itive integer value Enter a posi Good! You entered:-1 End of program enter -1 to end):

Explanation: The user has entered -1 which is an integer value, therefore, the while loop inside the do-while loop will not be executed and a message will be printed "Good! You entered:-1" and since -1 is a negative value, therefore, the do-while loop's condition will become false and the program control will come out of the do-while loop and will print the message "End of program".

(For any help drop a comment)

Add a comment
Know the answer?
Add Answer to:
ANS (2) 0R hat output is produced by the following code if user enters these values...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Which of the following verifies that the user enters a positive integer value? A. int num...

    Which of the following verifies that the user enters a positive integer value? A. int num = 0: Scanner s = new Scanner(System.in): do { System.out.print("Enter a positive integer: "): num = s.nextlnt(): } while (num = = 0): B. int num=0: Scanner s = new Scanner(System.in): do { System.out.print("Enter a positive integer: "): num = s.nextlnt(): } while (num % 2 ! = 0): C. int num=0: Scanner s = new Scanner(System.in): do { System.out.print("Enter a positive integer: "):...

  • The following code is a Java code for insertion sort. I would like this code to...

    The following code is a Java code for insertion sort. I would like this code to be modified by not allowing more than 10 numbers of integer elements (if the user enters 11 or a higher number, an error should appear) and also finding the range of the elements after sorting. /* * Java Program to Implement Insertion Sort */ import java.util.Scanner; /* Class InsertionSort */ public class InsertionSortTwo { /* Insertion Sort function */ public static void sort( int...

  • the code needs to be modifed. require a output for the code Java Program to Implement...

    the code needs to be modifed. require a output for the code Java Program to Implement Insertion Sort import java.util.Scanner; /Class InsertionSort * public class Insertion Sort { /Insertion Sort function */ public static void sort( int arr) int N- arr.length; int i, j, temp; for (i-1; i< N; i++) j-i temp arrli; while (j> 0 && temp < arrli-1) arrli]-arrli-1]; j-j-1; } arrlj] temp; /Main method * public static void main(String [] args) { Scanner scan new Scanner( System.in...

  • Write a SIMPLE JAVA program to store a positive number a user inputs until he enters 0. Print all the numbers entered at...

    Write a SIMPLE JAVA program to store a positive number a user inputs until he enters 0. Print all the numbers entered at the end. The dialog might look like: Enter Number: 1 Enter Number: 10 Enter Number: 0 You entered numbers 1, 10

  • In this lab, you complete a partially written Java program that includes two methods that require...

    In this lab, you complete a partially written Java program that includes two methods that require a single parameter. The program continuously prompts the user for an integer until the user enters 0. The program then passes the value to a method that computes the sum of all the whole numbers from 1 up to and including the entered number. Next, the program passes the value to another method that computes the product of all the whole numbers up to...

  • In this lab, you complete a partially written Java program that includes two methods that require...

    In this lab, you complete a partially written Java program that includes two methods that require a single parameter. The program continuously prompts the user for an integer until the user enters 0. The program then passes the value to a method that computes the sum of all the whole numbers from 1 up to and including the entered number. Next, the program passes the value to another method that computes the product of all the whole numbers up to...

  • I have the following java-program, that creates a random walk starting at (0,0) and continuing until...

    I have the following java-program, that creates a random walk starting at (0,0) and continuing until x or y is greater than abs(n). First: I get an error, when I try closing the Scanner by inserting "reader.close(); " in line 28. It says "Unreachable code". How can I fix that? Second: Is it possible to create a different colour for the StdDraw.point when it reaches a point on one of the edges "n+1" or "n-1" ? 1 import java.util.*; 3...

  • I need to create a code for this prompt: In this project we will build a...

    I need to create a code for this prompt: In this project we will build a generic UserInput class for getting keyboard input from the user. Implementation: The class UserInput is a 'Methods only' class, and all the methods should be declared static. Look at the TestScanner.java program at the bottom of this page that inputs a string, int and double. It shows you how to use Scanner class to get input from the keyboard. Write FOUR simple methods, one...

  • create java application with the following specifications: -create an employee class with the following attibutes: name...

    create java application with the following specifications: -create an employee class with the following attibutes: name and salary -add constuctor with arguments to initialize the attributes to valid values -write corresponding get and set methods for the attributes -add a method in Employee called verify() that returns true/false and validates that the salary falls in range1,000.00-99,999.99 Add a test application class to allow the user to enter employee information and display output: -using input(either scanner or jOption), allow user to...

  • In this exercise, you’ll add code to a form that converts the value the user enters...

    In this exercise, you’ll add code to a form that converts the value the user enters based on the selected conversion type. The application should handle the following conversions: 1. Open the Conversions project. Display the code for the form, and notice the rectangular array whose rows contain the value to be displayed in the combo box, the text for the labels that identify the two text boxes, and the multiplier for the conversion as shown above. Note: An array...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT