public class Modem2 { int speed; String method; public void displaySpeed() { System.out.println("Speed: " + speed); } public void connect() { System.out.println("Connecting to the Internet ..."); System.out.println("Using a " + method); } }