background-color:transparent;”> named SquareDisplay that asks the user for a positive

program class<span< h1=””>

style=”color:rgb(34,34,34);background-color:transparent;”> named SquareDisplay that asks the user for a positive integer no greater than 15. The program should then display a square on the screen using the character ‘X’. The number entered by the user will be the length of each side of the square. For example, if the user enters 5, the program should display the following:

      XXXXX

XXXXX

XXXXX

XXXXX

XXXXX INPUT and PROMPTS. The program prompts for an integer as follows: “Enter an integer in the range of 1-15: “.

OUTPUT. The output should be a square of X characters as described above.

CLASS NAMES. Your program class should be called SquareDisplay

</span<>

 
"Looking for a Similar Assignment? Order now and Get 10% Discount! Use Code "Newclient"

program that will predict the size of a population of organisms

program that will predict the size of a population of organisms. The program should ask the user for

the starting number of organisms, their average daily population increase (as a percentage, expressed as a fraction in decimal form: for example 0.052 would mean a 5.2% increase each day), and the number of days they will multiply. A loop should display the size of the population for each day.

Prompts, Output Labels and Messages.The three input data should be prompted for with the following prompts: “Enter the starting number organisms: “, “Enter the daily increase: “, and “Enter the number of days the organisms will multiply: ” respectively. After the input has been read in successfully, a table is produced, for example:

—————————–

2            300.0

4            675.0

Under the heading is a line of 29 dashes followed by one line for each day, showing the day number and the population at the beginning of that day.

Input Validation.Do not accept a number less than 2 for the starting size of the population. If the user fails to satisfy this print a line with this message “Invalid. Must be at least 2. Re-enter: ” and try to read the value. Similarly, do not accept a negative number for average daily population increase, using the message “Invalid. Enter a non-negative number: ” and retrying. Finally, do not accept a number less than 1 for the number of days they will multiply and use the message “Invalid. Enter 1 or more

 
"Looking for a Similar Assignment? Order now and Get 10% Discount! Use Code "Newclient"

that will predict the size of a population of organisms

rogram that will predict the size of a population of organisms. The program should ask the user for

the starting number of organisms, their average daily population increase (as a percentage, expressed as a fraction in decimal form: for example 0.052 would mean a 5.2% increase each day), and the number of days they will multiply. A loop should display the size of the population for each day.

Prompts, Output Labels and Messages.The three input data should be prompted for with the following prompts: “Enter the starting number organisms: “, “Enter the daily increase: “, and “Enter the number of days the organisms will multiply: ” respectively. After the input has been read in successfully, a table is produced, for example:

—————————–

2            300.0

4            675.0

Under the heading is a line of 29 dashes followed by one line for each day, showing the day number and the population at the beginning of that day.

Input Validation.Do not accept a number less than 2 for the starting size of the population. If the user fails to satisfy this print a line with this message “Invalid. Must be at least 2. Re-enter: ” and try to read the value. Similarly, do not accept a negative number for average daily population increase, using the message “Invalid. Enter a non-negative number: ” and retrying. Finally, do not accept a number less than 1 for the number of days they will multiply and use the message “Invalid. Enter 1 or more: “

 
"Looking for a Similar Assignment? Order now and Get 10% Discount! Use Code "Newclient"

a class

class<span< h1=””>

style=”color:rgb(34,34,34);background-color:transparent;”> named Car that has the following fields:

• yearModel: The yearModel field is an int that holds the car’s year model.

• make: The make field is a String object that holds the make of the car.

• speed: The speed field is an int that holds the car’s current speed.In addition,

the class should have the following methods:

Constructor: The constructor should accept the car’s year model and make as arguments.

These values should be assigned to the object‘s yearModel and make fields. The

constructor should also assign 0 to the speed field.

• Accessor: The appropriate accessor methods should be implemented to access the values

stored in the object‘s yearModel, make, and speed fields.

• accelerate: The accelerate method should add 5 to the speed field when it is called.

• brake: The brake method should subtract 5 from the speed field each time it is called.

Demonstrate the class in a program that contains a Car object, and then calls the

accelerate method five times. After each call to the accelerate method, get the current

speed of the car and print it on a separate line. Then, call the brake method five times,

each time printing the current speed of the car on a separate line.

</span<>

 
"Looking for a Similar Assignment? Order now and Get 10% Discount! Use Code "Newclient"

RainFall class

RainFall class<span< h1=””>

style=”color:rgb(34,34,34);background-color:transparent;”> that has the following field:

• an array of doubles that stores the rainfall for each of the 12 months of

the year (where the first index corresponds with January, the second with

February, etc.)

The class should also have the following methods:

• a method that returns the total rainfall for the entire year

• a method that returns the average monthly rainfall for the year

• a method that returns the month with the most rain as a string

• a method that returns the month with the least rain as a string

Demonstrate the class in a program that takes 12 doubles from the user (take the

doubles in the order of the months of the year, the first corresponding to the

rainfall in January, etc.). Do input validation: if the user inputs a negative

number, ignore it and continue asking them for input until you have 12

nonnegative doubles.

Once the user has given you all 12 doubles, create instance of the RainFall

class and call its methods, printing out the total rainfall, the average

monthly rainfall, the month with the most rain, and the month with the least

rain, each on a separate line.

</span<>

 
"Looking for a Similar Assignment? Order now and Get 10% Discount! Use Code "Newclient"

style=”color:rgb(34,34,34);background-color:transparent;”> with the following fields:

Design a Payroll class<span< h1=””>

style=”color:rgb(34,34,34);background-color:transparent;”> with the following fields:

name: a String containing the employee’s name

• idNumber: an int representing the employee’s ID number

• rate: a double containing the employee’s hourly pay rate

• hours: an int representing the number of hours this employee has worked

The class should also have the following methods:

Constructor: takes the employee’s name and ID number as arguments

• Accessors: allow access to all of the fields of the Payroll class

• Mutators: let the user assign values to the fields of the Payroll class

• grossPay: returns the employee’s gross pay, which is calculated as the number of

hours worked times the hourly pay rate.

Write program that demonstrates the class by creating a Payroll object, then

asking the user to enter the data for an employee in the order: name, ID number, rate, hours.

The program should then print out a statement in the following format (for example, if

you had an employee named Chris Jacobsen with ID number 11111, who works for 5 hours at

$10/hr):

</span<>

 
"Looking for a Similar Assignment? Order now and Get 10% Discount! Use Code "Newclient"

Make a LandTract classin /by

Make a LandTract class<span< h1=””>

style=”color:rgb(34,34,34);background-color:transparent;”> with the following fields:

• length – an int containing the tract’s length

• width – an int containing the tract’s width

The class should also have the following methods:

• area – returns an int representing the tract’s area

equals – takes another LandTract object as a parameter and returns a boolean saying

whether or not the two tracts have the same dimensions (This applies regardless of whether the dimensions match up. i.e., if the length of the first is the same as the width of the other and vice versa, that counts as having equal dimensions.)

• toString – returns a String with details about the LandTract object in the format:

LandTract object with length 30 and width 40

(If, for example, the LandTract object had a length of 30 and a width of 40.)

Write separate program that asks the user to enter the dimensions for the two tracts of

land (in the order length of the first, width of the first, length of the second, width of the second). The program should print the output of two tracts’ toString methods followed by a sentence stating whether or not the tracts have equal dimensions. (If the tracts have the same dimensions, print, “The two tracts have the same size.” Otherwise, print, “The two tracts do not have the same size.”) Print all three statements on separate lines.

</span<>

 
"Looking for a Similar Assignment? Order now and Get 10% Discount! Use Code "Newclient"

Under what circumstances do you think BPM should be implemented

Under what circumstances do you think BPM should be

implemented as a department-wide initiative? Explain why. How do you know when BPM should be implemented? Also, post under what circumstances you think BPM should be implemented as a company-wide initiative and explain why. Include whether organizations will be more or less likely to engage in BPM activities in the near future and explain why

 
"Looking for a Similar Assignment? Order now and Get 10% Discount! Use Code "Newclient"

The Treasure Star Group, or TS Group, manufactures and distributes food and household products.

The Treasure Star Group, or TS Group, manufactures and distributes food and household products. From its Hong Kong

headquarters, the TS Group markets many popular brands of edible oil and home cleaning products. The TS Group has several subsidiary manufacturing and sales operations in China, where it has the largest foreign-owned flour processing business in the country. When you read the case study, note how the TS Group implemented an Enterprise Resource Planning (ERP) system.

Although the TS Group performed many of the strategy phase activities, they did not study the impact of the ERP system on their processes, nor did they identify all of the stakeholders. Analysis how one of the omissions helped lead to some part of the project’s outcome.

 
"Looking for a Similar Assignment? Order now and Get 10% Discount! Use Code "Newclient"