Question

In: Computer Science

Steps to making your Netbeans IDE (Interactive Development Environment): Download and install Netbeans 8.2 IDE (Java...

Steps to making your Netbeans IDE (Interactive Development Environment):

Download and install Netbeans 8.2 IDE (Java SE version only). If you do not have the latest Java installation to match, Netbeans will direct you to download the needed version of Java.

If needed, download and install the latest Oracle Official Java Software Development Kit Standard Edition (Java SDK SE), and JUnit. I suggest you do this via the bundle referred to as The Java Development Kit (JDK). Download the architecture specific bundle for your computer. (When in doubt of your computer’s architecture (on a PC) it’s probably ‘Windows x86’)

Part 1: Create a new Java application Lab2Part1 and then enter the code below in the main routine. Be careful about cutting and pasting. The character representations from MS Word or other editors may not all work the same in NetBeans.

        int item1 = 5;

        int item2;

        double num1 = 3.0;

        double num2 = 24;

        item2 = 6;

        int titem = item2;

        System.out.println("Printing values");

        System.out.println("int item1 value = "+item1);

        System.out.println("int item2 value = "+item2);

        System.out.println("double num1 value = "+num1);

        System.out.println("double num2 value = "+num2);     

        System.out.println();

        item2 = item2 / item1;

        System.out.println( "orig item2/item1 "+titem+"/"+item1+" = item2 = "+item2 );

        item2 = 15;

        System.out.println("resetting item2 value = "+item2);       

        System.out.println();

        num2 = item2 / num1;

        System.out.println( "item2/num1 "+item2+"/"+num1+" = num2 = "+num2 );

        item1 = 8;

        num2 = item1 * num1 / 2;

        System.out.println( "item1* num1/2 "+item1+"*"+num1+"/2   = num2 = "+num2 );

        System.out.println();

        System.out.println("int item2 value = “+item2);

        System.out.println("double num1 value = "+num1);       

        item2 = (item2 – 1) / 3;

        num1 *= item2 + 2.1;

        System.out.println(“after item2=(item2-1) / 3: item2 value = "+item2);

        System.out.println("after num1 *= item2+2.1: num1 value = "+num1);     

        System.out.println();

        System.out.println("num1 < item1 is "+( num1 < item1));

        System.out.println( "num2 != item2 is "+(num2 != item2));

        System.out.println();        

        System.out.println("Printing values");

        System.out.println("int item1 value = "+item1);

        System.out.println("int item2 value = "+item2);

        System.out.println("double num1 value = "+num1);

        System.out.println("double num2 value = "+num2);

1.a) If you execute this program, what will be printed in the output window? (5 points)

1.b) Rewrite the statement num1 *= item2 + 2.1; to use only assignment and arithmetic operators. (5 pts)

1.c) Give three examples of shortcut arithmetic operators that are NOT used in the program above. Write the symbols for the operators and the names of the operations they are shortcuts for. (5 pts)

Put your answers for 1.a, 1.b, and 1.c in your answers file.

Part 2: Use the code below, including the comment section, in the main method of a new Java application called Lab2Part2a.

        /** ** **

Declare the needed input object here using the names shown below in the program.  

Also add any other needed lines to make the input object function.

       ** ** **/

        //input here should be "1310 or 1320"

        System.out.print("Please enter a 4-digit course number of 1310 or 1320: ");

        String courseNum = input.next();

        System.out.print("Please enter the current semester (Fall, Spring, or Summer): ");

        String sem = input.next();

        String dept = "CSE";

        char comma = ',';

        String sectionNum = "005";

        char dash = '-';

        int year = 2017;

        String sp = " ";

        String course; // output should be semester, year, comma, space,

                        // then dept, course number then section number

        course = sem+sp+year+comma+sp+dept+courseNum+dash+sectionNum;

               

        System.out.println("The course is "+course);

2.a) Add the needed code to the program above to make it run. There is one missing line of code in the main method and you need to add it at the location of the first comment. There will also be a line that needs to be added above the class declaration (NetBeans will help you with this). Save the program as Lab2Part2a.java . (5 pts)

2.b) In the answers file, show two of the six possible outputs produced by the program if all instructions in the program are followed.   (4 pts)

2.c) What is different about variables dash and comma from the other variables in the program? How are they like Strings and how are they different from Strings? Put your answer in the answers file. (4 pts)

2.d) Rewrite the program so that it accepts the same inputs and produces the same output but variable course is removed from the program. Do not create a new variable to replace course. Save this modified program as Lab2Part2d.java .   (7 pts)

Part 3: The code below does not work. Create a new Java program called Lab2Part3.java starting with this code (and answering questions 3.a and 3.b) and then modify the code so that it correctly calculates the area of a right triangle which has a vertex at (4, 5) – however :

You may not ADD any lines (if there are needed import statements, they may be added)

You may only modify Lines 1, 2, 3, and 4 as labeled below

you may NOT change the data type of variable base in Line 1

you may NOT change the data type of height in Line 2

you must add the area formula for Line 3

you must modify Line 4 so that is works and calculates the circumference

       // code starting here should be put in main

       double x1 = 4;

        double y1 = 1;

        double x2 = 1;

        double y2 = 5;

        double x3, y3;

        int base = (x1 - x2); // Line 1

        int height = (y1 - y2); // Line 2

        double hypotenuse = Math.sqrt(Math.pow(base,2)+ Math.pow(height,2));

        double area;       

        area =                            ;      // Line 3 - Look up the formula for area and insert it here

        System.out.printf("The base is length %d and the height is %3d \n", base, height);

        System.out.print("The distance between ("+x1+","+y1+") and" );

        System.out.printf("(%.0f,%2.0f) is %4.1f \n", x2, y2, hypotenuse);

        System.out.print("The area of the right triangle is "+area);

        circumference =         ;       // Line 4 - Insert correct calculation here and other as needed

        System.out.print("The circumference of the right triangle is "+ circumference);

3.a) List each different type of error, giving the NetBeans error message, that you find after typing this program into Netbeans exactly as given. (Do not copy and paste.) Put these in your answer file. (4 pts)

3.b) Also, in your answers file, for each error, explain exactly (only a few words are needed) why the code, as given above, does not work, i.e. why did each error occur? (4 pts)

3.c) Now correct all the errors and run the program, debugging until it works properly. Only four lines of the program need to be modified to remove the compiling errors including one of the output statements. Be sure to follow any restrictions specified in the program comments. Once the program works, save it as Lab2Part3.java .   (8 pts)

3.d) In your answers file, show the EXACT output that is produced by the program after it is fixed. (4 pts)

Part 4: Given the information below, write a Java program to implement this algorithm.

Define a variable called “boxHeightInFeet” and give it the value 1.5 .

Define a variable called “boxWidthInFeet” and give it the value 0.5 .

Define a variable called “boxDepthInFeet” and give it the value 0.75 .

Define a variable called “boxWeightInKilograms” and give it the value 4.5.

Using a built-in Math function, increase the box height to the next higher whole number

       value. [Hint: look at round, floor, and ceiling functions.]

// Remove the requirement below

//Using a built-in Math function change the box depth to the closest whole number.

Calculate the volume of the box in inches using the modified height, depth, and width.

Calculate the weight in Kg per cubic inch of the box. Also calculate other values as needed to produce the output below.

Your program should produce the following output (don’t worry about the indentation level of the output) :

Box height in feet is 2.0 and Box height in inches is 24.0

Box width in feet is 0.5 and Box width in inches is 6.0

Box depth in feet is 0.75 and Box depth in inches is 9.0

Box volume in inches is 1296.00

Box weight in Kg is 4.50

Box weight in Kg per inch is 0.003472

Box weight in Lb is 9.90

4) Save your working program as Lab2Part4.java . (20 pts)

Part 5: Given the program you created for Part 4, modify that program in the following ways.

        a. Accept user input values for height, depth, width and weight then do the same modifications and calculations.

        b. Produce output that has the same titles and is spaced EXACTLY like the output below:   [Your font does NOT have to be the same but it helps if your font is a monospaced or fixed-width font.] The first title is in a 10 char space length then has spaces separating it from the next 10 char title.

        c. Have the user input values such that the output below is produced exactly. This means that the values that are put in the program must produce the table below:

       

      Unit    Height     Width     Depth    Volume

    Inches      24.0       6.0       9.0    1296.0

      Feet      2.00      0.50      0.75      0.75

Weight in    Pounds Kilograms Kg per In         

              9.9000    4.5000    0.0035

5.a) Save your working program as Lab2Part5.java . (13 pts)

5.b) Give two different sets of height, depth, and width input values that will produce the output shown above for volume where the height, depth, and width are not the same values as shown above. This means that the height cannot be 2.00, width cannot be 0.50, and the depth cannot be 0.75. Put your two sets of input values in your answers file. Write one set of three values for H, W, and D on one line then write the second set of three values (using a different height, width, and depth) on the next line in the answers file. (12 pts)

--------------------------------------------------------------------------------------------------------

Solutions

Expert Solution

1.a)

1.b)

Instead of shorthand operator, using arthimetic and assignment operator, statement as follows..

num1 = num1 * item2 + 2.1;

--------------------------------------------------------------------------------------------------------------------------------------

1.c)

/**

*
* @author paramesh
*/
public class Lab2Part1 {

public static void main(String args[]) {
int item1 = 5;
int item2;
double num1 = 3.0;
double num2 = 24;
item2 = 6;
int titem = item2;
System.out.println("Printing values");
System.out.println("int item1 value = " + item1);
System.out.println("int item2 value = " + item2);
System.out.println("double num1 value = " + num1);
System.out.println("double num2 value = " + num2);
System.out.println();

item2 /= item1;
System.out.println("orig item2/item1 " + titem + "/" + item1 + " = item2 = " + item2);
item2 = 15;
System.out.println("resetting item2 value = " + item2);
System.out.println();
num2 = item2 / num1;
System.out.println("item2/num1 " + item2 + "/" + num1 + " = num2 = " + num2);
item1 = 8;
num2 = item1 * num1 / 2;
System.out.println("item1* num1/2 " + item1 + "*" + num1 + "/2 = num2 = " + num2);
System.out.println();
System.out.println("int item2 value = "+item2);
System.out.println("double num1 value = " + num1);
item2 -= (-1)/3;
num1 *= item2 + 2.1;

System.out.println("fter item2 = (item2-1) / 3: item2 value = "+item2);
System.out.println("after num1 *= item2+2.1: num1 value = " + num1);
System.out.println();

System.out.println("num1 < item1 is " + (num1 < item1));
System.out.println("num2 != item2 is " + (num2 != item2));
System.out.println();
System.out.println("Printing values");
System.out.println("int item1 value = " + item1);
System.out.println("int item2 value = " + item2);
System.out.println("double num1 value = " + num1);
System.out.println("double num2 value = " + num2);
}
}

-------------------------------------------------------------------------------------------------------------------------------------------------------------------

2.a)

import java.util.Scanner;

public class Lab2Part2a {

public static void main(String args[]) {
Scanner input = new Scanner(System.in);
System.out.print("Please enter a 4-digit course number of 1310 or 1320: ");
String courseNum = input.next();

System.out.print("Please enter the current semester (Fall, Spring, or Summer): ");
String sem = input.next();
String dept = "CSE";
char comma = ',';
String sectionNum = "005";
char dash = '-';
int year = 2017;
String sp = " ";
String course; // output should be semester, year, comma, space,
// then dept, course number then section number
course = sem + sp + year + comma + sp + dept + courseNum + dash + sectionNum;

System.out.println("The course is " + course);
}
}

----------------------------------------------------------------------------------------------------------------------------------------------------------------

2.b)

--------------------------------------------------------------------------------------------------------------------------------------------------

2.c)

If we keep minus or underscore symbol, it will take total string as a single variable, but comma means it understands that we are declaring second variable.

------------------------------------------------------------------------------------------------------------------------------------------------------------

2.d)

import java.util.Scanner;

public class Lab2Part2a {

public static void main(String args[]) {
Scanner input = new Scanner(System.in);
System.out.print("Please enter a 4-digit course number of 1310 or 1320: ");
String courseNum = input.next();

System.out.print("Please enter the current semester (Fall, Spring, or Summer): ");
String sem = input.next();
String dept = "CSE";
char comma = ',';
String sectionNum = "005";
char dash = '-';
int year = 2017;
String sp = " ";

System.out.println("The course is " + (sem + sp + year + comma + sp + dept + courseNum + dash + sectionNum));
}
}

---------------------------------------------------------------------------------------------------------------------------------------------------------------

3.a)

Errors are

(i) unassigned values for area and circumference variables.

(ii) For base and height variables, lossy connversion from double to int.

(iii) circumference variable not created.

-------------------------------------------------------------------------------------------------------------------------------------------------------------

3.b)

When any variable is undeclared , then syntax is wrong and java cannot compile.

For lossy conversion, if we divide two doubles, or one double and one int, then always left hand variable must be double. If int is there in LHS then double precision value may lost , we need to cast to int in RHS side or declare LHS variable to double.

-----------------------------------------------------------------------------------------------------------------------------------------------------

3.c)

public class Lab2Part3 {

public static void main(String args[]) {
double x1 = 4;
double y1 = 1;
double x2 = 1;
double y2 = 5;
double x3, y3;
int base = (int) (x1 - x2); // Line 1
int height = (int) (y1 - y2); // Line 2
double hypotenuse = Math.sqrt(Math.pow(base, 2) + Math.pow(height, 2));
double area;
area = (base * height)/2; // Line 3 - Look up the formula for area and insert it here

System.out.printf("The base is length %d and the height is %3d \n", base, height);
System.out.print("The distance between (" + x1 + "," + y1 + ") and");
System.out.printf("(%.0f,%2.0f) is %4.1f \n", x2, y2, hypotenuse);
System.out.print("The area of the right triangle is " + area);

double circumference = base+height+hypotenuse; // Line 4 - Insert correct calculation here and other as needed
System.out.print("The circumference of the right triangle is " + circumference);
}
}

-----------------------------------------------------------------------------------------------------------------------------------------------------------------

3.d)

4)

import java.util.Scanner;

public class Lab2Part4 {

public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
double boxHeightInFeet = 1.5;
double boxWidthInFeet = 0.5;
double boxDepthInFeet = 0.75;
double boxWeightInKilograms = 4.5;

double boxHeightInInches = boxHeightInFeet * 12;
double boxWidthInInches = boxWidthInFeet * 12;
double boxDepthInInches = boxDepthInFeet * 12;
double boxVolume = boxHeightInInches * boxWidthInInches * boxDepthInInches;
double boxWeightPerInch = boxWeightInKilograms / boxVolume;
double boxWeightinLbs = boxWeightInKilograms * 2.20462;

// printing output
System.out.println("Box height in feet is "+boxHeightInFeet+" and Box height in inches is "+boxHeightInInches);
System.out.println("Box width in feet is "+boxWidthInFeet+" and Box width in inches is "+boxWidthInInches);
System.out.println("Box depth in feet is "+boxDepthInFeet+" and Box depth in inches is "+boxDepthInInches);

System.out.println("Box volume in inches is "+boxVolume);

System.out.println("Box weight in Kg is "+boxWeightInKilograms);
System.out.println("Box weight in Kg per inch is "+boxWeightPerInch);
System.out.println("Box weight in Lb is "+boxWeightinLbs);
}
}

5.a)

public class Lab2Part5 {

public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
double boxHeightInFeet = 1.5;
double boxWidthInFeet = 0.5;
double boxDepthInFeet = 0.75;
double boxWeightInKilograms = 4.5;
double volume = boxHeightInFeet * boxWidthInFeet * boxDepthInFeet;

double boxHeightInInches = boxHeightInFeet * 12;
double boxWidthInInches = boxWidthInFeet * 12;
double boxDepthInInches = boxDepthInFeet * 12;
double boxVolume = boxHeightInInches * boxWidthInInches * boxDepthInInches;
double boxWeightPerInch = boxWeightInKilograms / boxVolume;
double boxWeightinLbs = boxWeightInKilograms * 2.20462;

// printing output
System.out.println("Unit Height Width Depth Volume");
System.out.println("Inches "+boxHeightInInches+" "+boxWidthInInches+" "+boxDepthInInches+" "+boxVolume);
System.out.println("Feet "+boxHeightInFeet+" "+boxWidthInFeet+" "+boxDepthInFeet+" "+volume);
  
System.out.println("\n Weight in Pounds Kilograms Kg per In ");
System.out.println(""+boxWeightinLbs+" "+boxWeightInKilograms+" "+boxWeightPerInch);
}
}

5.b)


Related Solutions

Java Program using Netbeans IDE Create class Date with the following capabilities: a. Output the date...
Java Program using Netbeans IDE Create class Date with the following capabilities: a. Output the date in multiple formats, such as MM/DD/YYYY June 14, 1992 DDD YYYY b. Use overloaded constructors to create Date objects initialized with dates of the formats in part (a). In the first case the constructor should receive three integer values. In the second case it should receive a String and two integer values. In the third case it should receive two integer values, the first...
I am using NetBeans IDE Java for coding. I would like the code to be commented...
I am using NetBeans IDE Java for coding. I would like the code to be commented for a better understanding. 1. Implement a class Robot that simulates a robot wandering on an infinite plane. The robot is located at a point with integer coordinates and faces north, east, south, or west. Supply methods: public void turnLeft() public void turnRight() public void move() public Point getLocation() public String getDirection() The turnLeft and turnRight methods change the direction but not the location....
Visual Basic This assessment will cover the Programming fundamentals of the Integrated Development Environment(IDE) found in...
Visual Basic This assessment will cover the Programming fundamentals of the Integrated Development Environment(IDE) found in Chapters 1-7 of the assigned text. In this assignment, you will demonstrate the use of tools explored so far within the course. It is the High Totals Game activity found in the Case Projects section of your book. Requirements: Copy/paste the VB code into a Microsoft Word document. You are also required to submit enough screenshots of the output to show that all work...
USING JAVA (netbeans) In your main, ask the user for an int. Do this by first...
USING JAVA (netbeans) In your main, ask the user for an int. Do this by first printing a request for the int, then creating an int x, and using the Scanner to read an int from the user and put it in x, like this: int x = scan.nextInt(); ☑ Next read in two doubles d1 and d2 from the user. This will look a lot like what you did for the int, but the scanner reads doubles using scan.nextDouble();...
JAVA Copy the attached code into your IDE or an online compiler and test an additional...
JAVA Copy the attached code into your IDE or an online compiler and test an additional type with the generic class. Submit your code and execution display. JAVA The test cases for Integer and String is given in the code. Please add test cases for Character, Boolean and Double type etc. // A Simple Java program to show working of user defined // Generic classes    // We use < > to specify Parameter type class Test<T> {     //...
What do you know about the integrated development environment (IDE)? Please explain in detail. Please answer...
What do you know about the integrated development environment (IDE)? Please explain in detail. Please answer the question in text.
Using ECLIPSE IDE Write a Java Program to play your version of the Texas Pick 3...
Using ECLIPSE IDE Write a Java Program to play your version of the Texas Pick 3 Lottery. You will need to include the provided code given below in your program. Task:The program will prompt for a number between 0 and 999. Your program will display the number of attempts it took for the entered number to match a randomly generated number. In the main() method, declare an int named myPick3choice. Create a prompt for myPick3choice as "Enter your Pick 3...
Using NetBeans, create a Java project named FruitBasket. Set the project location to your own folder....
Using NetBeans, create a Java project named FruitBasket. Set the project location to your own folder. 3. Import Scanner and Stacks from the java.util package. 4. Create a Stack object named basket. 5. The output shall: 5.1.Ask the user to input the number of fruits s/he would like to catch. 5.2.Ask the user to choose a fruit to catch by pressing A for apple, O for orange, M for mango, or G for guava. 5.3.Display all the fruits that the...
Using Java language (in program NetBeans). 1) Using a 2 dimensional array Your company has 4...
Using Java language (in program NetBeans). 1) Using a 2 dimensional array Your company has 4 grocery stores. Each store has 3 departments where product presentation affects sales (produce, meat, frozen). Every so often a department in a store gets a bonus for doing a really good job. You need to create a program that keeps a table of bonuses in the system for departments. Create a program that has a two dimensional array for these bonuses. The stores can...
IN JAVA Laboratory 3: Ice Cream! Download Lab03.zip from ilearn and extract it into your working...
IN JAVA Laboratory 3: Ice Cream! Download Lab03.zip from ilearn and extract it into your working lab 3 directory In this lab, you will be writing a complete class from scratch, the IceCreamCone class. You will also write a driver to interact with a user and to test all of the IceCreamCone methods. Lab: • Cone • Ice Cream o Flavor o Topping • Ice Cream Cone • Driver Part I: Cone An ice cream cone has two main components,...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT