A fourteen (14) year old girl comes to the hospital with her…

A fourteen (14) year old girl comes to the hospital with her mother. The girl says that she was sexually assaulted by an adult male. After speaking to the forensic nurse, the girl says that she does not want the nurse to do an internal medical examination, but her mother disagrees and gives the nurse permission to do the examination. The nurse should perform the internal medical examination. 

The following program has a compiler error, runtime error, a…

The following program has a compiler error, runtime error, and semantic error. State which line(s) correspond to each type of error and why. 1. public class A { 2. private int[] arr = new int[3]; 3. private char 1letter = ‘A’; 4.      5. public A(int num) { 6.       arr[3] = num; 7. } 8. 9.      public int getFirstArrayElement() {10. return arr[1];11. }12. }