To conduct my room scan, I stood up, placed my external webc…

To conduct my room scan, I stood up, placed my external webcam in one hand and slowly moved it in an up and down motion all the way around the entire room. I also showed the top of my desk and under my desk because I know Professor Porter needs to see this.  After my room scan I put my external webcam back in place and sat down. At this point I turned toward my webcam, briefly showed my bare wrist/empty ears and said test, test, test to verify that my audio is working. (If you did not do this, please do so now before you proceed.)

If you are NOT wearing glasses, simply click True and procee…

If you are NOT wearing glasses, simply click True and proceed to the next test question. If you ARE wearing glasses, please take them off and hold them up to your webcam.  Professor Porter needs to see the front, both sides and interior portion of your frames to verify that they are not smart glasses. Please do this slowly and show every angle. Please note: If you are wearing glasses and you do not follow the steps above, it will result in an automatic F in the course. By selecting TRUE I AM CONFIRMING that I understand that using SMART GLASSES ON THIS MIDTERM IS CONSIDERED STEALING and USE OF THESE GLASSES IS PROHIBITED BY FSW. IF I WEAR THEM I WILL EARN AN AUTOMATIC F FOR THE SEMESTER AND I RISK BEING PERMANENTLY BANNED FROM FSW. A BIG BLACK MARK WILL BE PERMANENTLY ADDED ON TO MY ACADEMIC RECORD AND IT WILL BE THERE FOR OTHER ACADEMIC INSTITUTIONS TO SEE.  By clicking True, you are confirming that you understand the statement above and that you are not wearing smart glasses of any kind.  When you are finished, put your glasses back on and proceed to the next test question.

What will be the output of the following code? Explain your…

What will be the output of the following code? Explain your reasoning. String str1 = “hello”;String str2 = new String(“hello”);String str3 = “hello”; System.out.println(str1 == str2);System.out.println(str1 == str3);System.out.println(str1.equals(str2));