Question: Given the class Brand: public class Brand { private String name; / / The name of a brand of clothing that was purchased private String

Given the class Brand: public class Brand
{
private String name;
/
/
The name of a brand of clothing that was purchased
private String gender;
/
/
The person's gender that purchased the clothing
/
*
*
Sets name and gender to the specified values
*
/
public Brand
(
String name, String gender
)
{
this.name
=
name;
this.gender
=
gender;
}
/
*
*
Returns the name of the brand of clothing that was purchased
*
/
public String getName
(
)
{
return name;
}
/
*
*
Returns the person's gender that purchased the clothing
*
/
public String getGender
(
)
{
return gender;
}
/
*
*
Returns a
1
D array of Brand objects using the data from the specified text files
*
/
public static Brand
[
]
createBrands
(
String namesFile, String gendersFile
)
{
String
[
]
namesData
=
FileReader.toStringArray
(
namesFile
)
; String
[
]
gendersData
=
FileReader.toStringArray
(
gendersFile
)
;
Brand
[
]
brandsData
=
new Brand
[
namesData
.
length
]
;
for
(
int index
=
0
; index
<
brandsData.length; index
+
+
)
{
brandsData
[
index
]
=
new Brand
(
namesData
[
index
]
,
gendersData
[
index
]
)
;
}
return brandsData;
}
}
Within the class Fashion.java, write the method public int
[
]
countByBrands
(
String gender
)
which will calculate and return a
1
D array containing the most common brands purchased by the parameter gender, using else if statments and multi-selection statments.
If the brand is
"
US Polo", increment the value at index
0
in the array by
1
.
If the brand is "GAP", increment the value at index
1
in the array by
1
.
If the brand is "Kenneth Cole", increment the value at index
2
in the array by
1
.
Otherwise, increment the value at index
3
by
1
.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!