All questions on this quiz refer to the following JSON data….

All questions on this quiz refer to the following JSON data. Assume that it is stored in a variable named json. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 { “@context”: , “type”: “Feature”, “geometry”: { “type”: “Polygon”, “coordinates”: , , , , ] ] }, “properties”: { “units”: “us”, “forecastGenerator”: “HourlyForecastGenerator”, “generatedAt”: “2024-11-10T03:57:44+00:00”, “updateTime”: “2024-11-10T02:30:21+00:00”, “validTimes”: “2024-11-09T20:00:00+00:00/P7DT17H”, “elevation”: { “unitCode”: “wmoUnit:m”, “value”: 7.9248000000000003 }, “periods”: } } . Write the statement that would get you the following: The units property from (line 41) The wind direction for period two (line 100) The temperature from period one (line 57) The second number in the second coordinate (line 23) The type (line 12)  The list of time periods  The list of coordinates (line 15)  The first short forecast description (line 75)  The elevation value (line 48)  The geometry type (line 14)  

Fill in the spaces with the possible missing keywords.     _…

Fill in the spaces with the possible missing keywords.     _________     void readSettings(   )      _______     Exception {           File myFile = null;      _____  {                                myFile = new File(“settings.txt”);                       }     ______ (IOException ioe)                {                         System.out.println(“The file couldn’t open”); }              finally   {   if(myFile != null) myFile.close();          }   }