Java – Chapter 7
20638
Write the definition of a class Telephone . The class has no constructors , one instance variable of type String called number , and one static variable of type int called quantity .
ANSWER
public class Telephone
{
private String number;
private static int quantity;
}
20639
Write the definition of a class Telephone . The class has no constructors , one instance variable of type String called number , and two static variables . One is of type int called quantity , initialized to 250 ; the other is of type double called total , initialized to 15658.92 .