Given: (Exhibit) Which three actions implement Java SE security guidelines? (Choose three.) By Singh | December 31, 2022 0 Comment Given:Which three actions implement Java SE security guidelines? (Choose three.) A. Change line 6 to public synchronized String[] getNames() {. B. Change line 2 to private final String[] names;. C. Change line 3 to private Secret(String[] names) {. D. Change line 7 to return names.clone();. E. Change line 4 to this.names = names.clone();. F. Change the getNames() method name to get$Names(). G. Change line 2 to protected volatile String[] names;. Correct Answer: B,C,G