Java Programming Homework 3 and Project 3

Homework

Save Time On Research and Writing
Hire a Pro to Write You a 100% Plagiarism-Free Paper.
Get My Paper

1 How do you simplify the max method in the following, using the conditional operator?
1: /** Return the max of two numbers */
2: public static int max ( int num1, int num2 ) {
3: int result;
4: 
5: if ( num1 > num2 )
6: result = num1;
7: else
8: result = num2;
9: return result;
10: }
2 Write method headers (just the declaration, not the bodies) for the following methods:
Compute a sales commission, given the sales amount and the commission rate.
Display the calendar for a month, given the month and year.
Compute a square root of a number.
Test whether a number is even, and returning true if it is.
Display a message a specified number of times.
Compute the monthly payment, given the loan amount, number of years, and annual interest rate.
Find the corresponding uppercase letter, given a lowercase letter.
3 Identify and correct the errors in the following program:
1: public class Test {
2: public static method1(int n, m) {
3: n += m;
4: method2 (3. 4);
5: }
6: 
7: public static int method2(int n) {
8: if ( n > 0 ) return 1;
9: else if (n == 0) return 0;
10: else if (n < 0) return -1;
11: }
12: }
4 What is pass-by-value? Show the results of the following two programs.
1: public class Test {
2: public static void main ( String [] args ) {
3:  int max = 0;
4: max(1, 2, max);
5: System.out.println(max);
6: }
7: 
8: public static void max ( int value1, int value2, int max ) {
9: if ( value1 > value2 )
10: max = value1;
11: else
12:  max = value2;
13: }
14: }
1: public class Test {
2: public static void main ( String [] args ) {
3: int i = 1;
4: while ( i <= 6 ) {
5: method1( i, 2 );
6: i++;
7: }
8: }
9: 
10: public static void method1 ( int i, int num ) {
11: for ( int j = 1; j <= i; j++ ) {
12: System.out.print( num + ” ” );
13: num *= 2;
14: }
15: System.out.println();
16: }
17: }
5 What is wrong with the following program?
1: public class Test {
2: public static void method ( int x ) {
3: }
4: public static int method ( int y ) {
5: return y;
6: }
7: }
6 Write an expression that obtains a random integer between 34 and 55, inclusive.
Write an expression that obtains a random integer between 0 and 999, inclusive.
Write an expression that obtains a random number between 5.5 and 55.5, inclusive.
Write an expression that obtains a random lowercase (English) letter.
7 How many times is the factorial method in the following invoked, for the call factorial(6)?
1: import java.util.Scanner;
2: 
3: public class ComputeFactorial {
4: public static void main ( String [] args ) {
5: Scanner input = new Scanner( System.in );
6: System.out.print( “Enter a nonnegative integer: ” );
7: int n = input.nextInt();
8: 
9: // Display factorial
10: System.out.println( “Factorial of ” + n + ” is ” + factorial(n) );
11: }
12: 
13: /** Return the factorial for the specified number */
14: public static long factorial ( int n ) {
15: if ( n == 0 ) // Base case
16: return 1;
17: else
18: return n * factorial( n – 1 ); // Recursive call
19:  }
20: }
8 Suppose that the class F is defined as shown below. Let f be an instance of F. Which of the following statements are syntactically correct?
1: public class F {
2: int i;
3: static String s;
4: void iMethod () {
5: }
6: static void sMethod () {
7: }
8: }
System.out.println(f.i);
System.out.println(f.s);
f.iMethod();
f.sMethod();
System.out.println(F.i);
System.out.println(F.s);
F.iMethod();
F.sMethod();
9 Add the static keyword in the place of ?, if appropriate, in the code below.
1: public class Test {
2: private int count;
3: public ? void main ( String [] args ) {
4: …
5: }
6: public ? int getCount () {
7: return count;
8: }
9: public ? int factorial ( int n ) {
10: int result = 1;
11: for ( int i = 1; i <= n; i++ )
12: result *= i;
13: return result;
14: }
15: }
10 Can each of the following statements be compiled?
Integer i = new Integer(“23”);
Integer i = new Integer(23);
Integer i = Integer.valueOf(“23”);
Integer i = Integer.parseInt(“23”, 8);
Double d = new Double();
Double d = Double.valueOf(“23.45”);
int i = (Integer.valueOf(“23”)).intValue();
double d = (Double.valueOf(“23.4”)).doubleValue();
int i = (Double.valueOf(“23.4”)).intValue();
String s = (Double.valueOf(“23.4”)).toString();
11 How do you convert an integer into a string?
How do you convert a numeric string into an integer?
How do you convert a double number into a string?
How do you convert a numeric string into a double value?
12 What is NullPointerException?
13 Which of the following statements (if any) will throw an exception? If no exception is thrown, what is the output?
1: System.out.println( 1 / 0 );
2: System.out.println( 1.0 / 0 );
14 Point out the problem in the following code. Does the code throw any exceptions?
1: long value = Long.MAX_VALUE + 1;
2: System.out.println( value );
15 What is a checked exception, and what is an unchecked exception?

Project

For this project you are to implement a stand-alone Java program to play a guessing game. Your program should pick a random number between one and ten (inclusive) and prompt the user for their guess. For each guess made, your program should tell the user if the guess was too high, too low, or correct. The user should only have four (4) tries to get it right before they lose the game.
When a game is over, a dialog should announce if they won or lost and ask the user if they want to play again. Your dialog should have yes and no buttons. If they lost this dialog box must show them what the correct answer was.
All user input and output should be done using javax.swing.JOptionPane class, which display dialog boxes. Other than this, the program is non-GUI.
Your project must be a stand-alone program, not an applet
The program should use the class java.util.Random to generate the numbers (which is easier than using java.lang.Math random number functions), and use the swing JOptionPane input dialog to read in the user’s guess, and a message dialog for the game over dialog. The user is told if the guess is too low or too high, or if they got the right answer. If the user doesn’t guess correctly with four tries, they lose.
As this is your first programming assignment where I don’t provide sample code to use, I provide the design of the program for you. Your code must have the following methods at least:
public static void main ( String [] args ) 
This method is responsible for the “Play again?” logic, including the you won/you lost dialog. This means a loop that runs at least once, and continues until the player quits.
static boolean playGame ( ??? ) 
This method is responsible for playing one complete game each time it is called, including the what is your guess? input dialog. Note the message displayed in the input dialog changes each time through the loop, to show if the user’s last guess was too high or too low. The method should return true if the user won. If they don’t guess correctly after four tries, the user has lost and the method should return false.
static int compareTo ( ???, ??? ) 
This method compares the user input (a single guess) with the correct answer. It returns a negative integer if the guess is too low, a positive integer if the guess is too high, and 0 (zero) if the guess is correct.
No other methods are needed, but if you can make a good case for it you may have additional methods. (You still need these three methods.) You must decide what arguments, if any, to pass to these methods. Please note you must use the design implied by the methods I have required. (Even if you would have designed the game program differently!)

Save Time On Research and Writing
Hire a Pro to Write You a 100% Plagiarism-Free Paper.
Get My Paper
Fountain Essays
Calculate your paper price
Pages (550 words)
Approximate price: -

Why Work with Us

Top Quality and Well-Researched Papers

We always make sure that writers follow all your instructions precisely. You can choose your academic level: high school, college/university or professional, and we will assign a writer who has a respective degree.

Professional and Experienced Academic Writers

We have a team of professional writers with experience in academic and business writing. Many are native speakers and able to perform any task for which you need help.

Free Unlimited Revisions

If you think we missed something, send your order for a free revision. You have 10 days to submit the order for review after you have received the final document. You can do this yourself after logging into your personal account or by contacting our support.

Prompt Delivery and 100% Money-Back-Guarantee

All papers are always delivered on time. In case we need more time to master your paper, we may contact you regarding the deadline extension. In case you cannot provide us with more time, a 100% refund is guaranteed.

Original & Confidential

We use several writing tools checks to ensure that all documents you receive are free from plagiarism. Our editors carefully review all quotations in the text. We also promise maximum confidentiality in all of our services.

24/7 Customer Support

Our support agents are available 24 hours a day 7 days a week and committed to providing you with the best customer experience. Get in touch whenever you need any assistance.

Try it now!

Calculate the price of your order

Total price:
$0.00

How it works?

Follow these simple steps to get your paper done

Place your order

Fill in the order form and provide all details of your assignment.

Proceed with the payment

Choose the payment system that suits you most.

Receive the final file

Once your paper is ready, we will email it to you.

Our Services

No need to work on your paper at night. Sleep tight, we will cover your back. We offer all kinds of writing services.

Essays

Essay Writing Service

No matter what kind of academic paper you need and how urgent you need it, you are welcome to choose your academic level and the type of your paper at an affordable price. We take care of all your paper needs and give a 24/7 customer care support system.

Admissions

Admission Essays & Business Writing Help

An admission essay is an essay or other written statement by a candidate, often a potential student enrolling in a college, university, or graduate school. You can be rest assurred that through our service we will write the best admission essay for you.

Reviews

Editing Support

Our academic writers and editors make the necessary changes to your paper so that it is polished. We also format your document by correctly quoting the sources and creating reference lists in the formats APA, Harvard, MLA, Chicago / Turabian.

Reviews

Revision Support

If you think your paper could be improved, you can request a review. In this case, your paper will be checked by the writer or assigned to an editor. You can use this option as many times as you see fit. This is free because we want you to be completely satisfied with the service offered.