多选题
Given two files:
1. package com.wickedlysmart2;
2. public class Utils {
3. void do1() {System.out.print("do1 "); }
4. protected void do2() {System.out.print("do2 ");
5. public void do3() {System.out.print("do3 "); }
6. }
1. import com.wickedlysmart2.*;
2. public class UPS extends Utils {
3. public static void main(String[] args) {
4. Utils u = new Utils();
5. u.do1();
6. u.do2();
7. u.do3();
8. } }
What is the result? (Choose all that apply.)