Java identifiers, JAVA Programming

Assignment Help:

1. Which of the following are not valid Java identifiers, and why?

(a) wolVes

(b) United(there is only one)

(c) 87

(d) 5 3

(e) Real ale

(f) isFound?by

2. A class Television has the following fields:

private TelevisionManufacturer supplier;

private String code

private int screenSize; // in inches

private String type; // e.g. plasma screen

Assume that the class TelevisionManufacturer is available and that this class contains an equals method.

(a) Define a class variable, totalTVs, whose purpose is to keep track of the total number of Television objects constructed during execution of a program that uses the Television class.

(b) Declare a default constructor for this class.

(c) Declare a constructor for this class which has a formal parameter corresponding to each field.

(d) Declare an accessor method called getScreenSize whose purpose is to return the value of the screenSize field of this Television.

(e) Declare a mutator method that sets the type of this Television to a given value.

(f) Declare a method to determine whether or not this Television has been supplied by a given manufacturer.

1. An electronics company needs to implement a simple stock control system. You are required to write a Java application which contains a class called StockItem together with a main method class called StockDemo. Information for each type of stock item consists of:

 inventory identifier (e.g. A654Y);

 quantity in stock (e.g. 350);

 demand rate (quantity removed from stock each working day, assumed constant, e.g. 50);

 re-order quantity (the size of an ordered batch of items, assumed constant, e.g 1000);

 lead-time (number of working days delay between placing and receiving an order for a batch, e.g. 5).

The class StockItem should include fields for each of the above data items and should also include each of the following:

 a default constructor that sets all fields to null or zero as appropriate;

 a constructor with arguments for all fields;

 set methods for all fields;

 accessor methods for each of the fields;

 a method to update the stock quantity when a batch is received;

 a method called isReOrderPoint( ) that returns true if a batch needs to be re-ordered for this stock item and false otherwise;

 a toString method that returns a description of this StockItem.

Add Java statements to your main method to thoroughly test your class.

2. A class Weather is to have as one of its fields an array called rainfall. For each

Weather object the instance variable corresponding to the rainfall field is used to hold the rainfall (in mm) for each of the 12 months in the year specified by a field, year, at the location specified by a field, site.

Write a Java application containing a main method class called WeatherDemo and a Weather class. In addition to the fields specified above your Weather class should contain:

 A constructor with arguments for the year and site fields; this constructor should also create a rainfall array with all elements initialised to zero;

 A mutator method setRainfallForMonth which, given an int, month, in the range 1 to 12, representing a month in a year, sets the appropriate element of the rainfall array of this Weather object to a value given as the second argument of the method. If month is not in the range 1 to 12, the rainfall array is not modified.

 A method getAverageRainfall to return the average rainfall over the year for this Weather object.

 A method getMonthOfMaxRainfall to return as a String the name of the month having the maximum rainfall during the year for this Weather object.

 a toString method.

Add Java statements to your main method to thoroughly test your class.

3. Data for a number of people is given as a string. The data for each person is given by two fields, a forename and a surname separated from each other by a forward slash character. The end of each person's data is marked by a # character. The following is an example of such a String:

Write and test a Java application containing a main method class called ArrayOfStringsDemo and a class called Name.

Name is to have two fields, one for a forename and one for a surname, and should include a constructor with formal arguments corresponding to the fields, an accessor method for each field and a toString method.

In addition to the main method, ArrayOfStringsDemo should contain a static method called findName which takes two arguments. The first argument is an array of elements of type Name and the second argument is a Name. findName returns the index of the element in the given array whose firstname and secondname are the same as those of the Name given as the second argument. If a match is not found, -1 is returned.

You main method should implement the following steps.

(a) Prompt for and read in an integer representing the number of rstname/secondname pairs in a string to be input; store the input value in an int n.

(b) Prompt for and read in a String with the above format and containing n firstname/secondname pairs.

(c) Construct an array of Names of size n called testArray.

(d) For each successive firstname/secondname in the input String, construct a Name object and assign this to the next element in testArray.

(e) Use an appropriate selection of test Names to thoroughly test your findName method.


Related Discussions:- Java identifiers

What is resuscitation trolley explain their features, What is Resuscitation...

What is Resuscitation Trolley explain their features? A proper resuscitation kit is mandatory for the ICU. In addition to trolleys that can be moved around the ICU there should

What are the layers of rmi architecture, There are three layers:-  a . S...

There are three layers:-  a . Stub and Skeleton layer This layer lies just under the view of the developer. This layer intercepts method calls made by the client to the inte

What is mixing data types, What is Mixing Data Types? As well as mergin...

What is Mixing Data Types? As well as merging various operations, you can mix and match various numeric data types on the similar line. The program below uses both ints and dou

Java identifiers and variable class, 1. Which of the following are not vali...

1. Which of the following are not valid Java identifiers, and why? (a) wolVes (b) United(there is only one) (c) 87 (d) 5 3 (e) Real ale (f) isFound?by 2. A cla

What is JMS queue, Staging areas that have messages those have been sent an...

Staging areas that have messages those have been sent and are waiting to be read. Note that, contrary to what the name queue suggests, messages don't have to be delivered in the or

It, Implement a program that can compute your taxes (assume year 2012, as- ...

Implement a program that can compute your taxes (assume year 2012, as- sume a form 1040EZ). The form should ask for your ling status (single, married), income, deductions and cred

Test the applet sample , Obtain ONE of the sample applets from Sun Microsys...

Obtain ONE of the sample applets from Sun Microsystems' Applets page, or any other source for free Java applets you may wish to use. Test the applet, and link it to Part 2 of your

Constractar, Create a class HourlyWorker mind: particularHourlyWorker emplo...

Create a class HourlyWorker mind: particularHourlyWorker employee. • Declare two data members named wage and hours of double type with private access. • Implement a parameterized c

Need android geolocation service app, Need Android GeoLocation Service App ...

Need Android GeoLocation Service App Project Description: I want an android service app that will run on the background. The app has to get the users location (latitude an

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd