Given: (Exhibit) What will secure this code from a potential Denial of Service condition? By Singh | January 7, 2023 0 Comment Given:What will secure this code from a potential Denial of Service condition? A. After Line 4, add indexReader.close(). B. On Line 1, use try with resources when opening each dataReader. C. After Line 3, add dataReader.close(). D. On Line 3, enclose processData(dataReader) with try with resources. E. Before Line 1, check the size of dataFiles to make sure it does not exceed a threshold. Correct Answer: D