Answer:
```Java
public class HouseSign {
public static void main(String[] args) {
// declare and initialize variables
double charge = 0.00;
int numChars = 8;
String color = "gold";
String woodType = "oak";
// compute charge for sign
charge = 35.00;
if (numChars > 5) {
charge = charge + (numChars - 5) * 4;
}
if (woodType.equals("oak")) {
charge = charge + 20;
}
if (color.equals("gold")) {
charge = charge + 15;
}
// print output
System.out.println("The charge for this sign is $" + charge);
}
}
``
Step-by-step explanation: