Given the following code segment testing the equality of two strings, what will be printed?
1. String string = "Dollar bill";
2. string.replace("Dollar bill","Silver dollar");
3. if ("Dollar bill".equals(string)) {
4. System.out.println ("I have a dollar bill.");
5. } else {
6. System.out.println ("I have a silver dollar.");
7. }
Select one of the following: