Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please help with java program Part 1 Searching Continuing with arrays, we will now expect you to find information in an array and derive useful

Please help with java program

Part 1 Searching

Continuing with arrays, we will now expect you to find information in an array and derive useful properties from the information stored in an array.

  1. Start Eclipse.

  1. Change the workspace directory location to something "safe". You may want to temporarily choose the Desktop and then save the file to something permanent once you're done (e.g. a network drive or flash drive).

  1. Go to the File menu and select New Java Project. Call it YOURNAME_Lab1BArray.

  1. Create a main method, and create a 2D integer array called data, with a size of five (5) by five (5). Ask the user to input the values for this array (Scanners nextInt).

  1. Create a method called LongestPositiveSeries, that takes in a 2D array and finds the length of the longest continuous series of positive numbers in it.
    • For example, if we had an array like this:

0

1

2

3

4

5

-1

-5

-5

5

3

-2

56

25

-15

0

5

5

0

324

46

25

0

0

0

  • The length would be 5. For this problem, 0 is considered non-negative and not positive, so we start counting from index [0, 1] (which is 1) to [1, 0] (which is 5) and end at index [1, 1] (which is 1).

  • Hint: Consider using a basic linear search and modifying it to keep track of the current positive streak of numbers.

  1. Call that method in your main, for the array data.

  1. Print out the returned result from your method in your main, along with the content of data.

Part 2 Classes and Objects

For this part of the lab, you'll be writing methods to work with classes and objects.

  1. Create a new project, called YOURNAME_Lab1BClass.
    • You should consider developing the methods for this project incrementally.

  1. Now create another class inside of your project. Go to the Project Explorer panel, right click on the project name and select New -> Class.
    • Change the name of the class after it opens from Class1 to Person.

  1. Inside of your Person class add two class variables, one for first and one for last name.

  1. Create a default (no parameters) constructor method that sets their first name to "Bob and last name to Smith.

  1. Create an overloaded constructor method that takes in two parameters and sets their names to them. One parameter will be their first name and the second will be their last name.

  1. Create a getter/accessor method and setter/mutator method for both their first and last names.

  1. Lastly, create an overriden toString method that will return the persons first then last name.
    • Hint: The method header would be:

@Override

public String toString()

  1. In your main method, create an object/instance of your Person class using the default constructor.

  1. Create another Person using the overloaded constructor. Have the values that are passed in as arguments come from user input (Scanners nextLine).

  1. Directly print out both peoples values using the toString method.
    • Hint: The toString method is automatically called when an object/instance is placed into a WriteLine method call.

  1. Now change one persons first name to Aly and the other persons last name to Sanchez.
    • Hint: Use the setters/mutators to do so. Please do not create two entirely new objects.

  1. Finally, print out both names for both people using the getters/accessors.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

What defines career success to you?

Answered: 1 week ago

Question

What must a creditor do to become a secured party?

Answered: 1 week ago

Question

When should the last word in a title be capitalized?

Answered: 1 week ago

Question

how would you have done things differently?

Answered: 1 week ago

Question

What were the reasons for your conversion or resistance?

Answered: 1 week ago