Multiple choice technology programming languages What is the meaning of ResultSet.TYPE_SCROLL_INSENSITIVE This means that the ResultSet is insensitive to scrolling This means that the Resultset is sensitive to scrolling, but insensitive to updates, i.e. not This means that the ResultSet is sensitive to scrolling, but insensitive to changes made by others The meaning depends on the type of data source, and the type and version of the driver you use with this data source Reveal answer Fill a bubble to check yourself C Correct answer Explanation In JDBC, ResultSet.TYPE_SCROLL_INSENSITIVE indicates a scrollable result set that is not sensitive to changes made by others while it is open. Distractors confuse general scrolling ability with sensitivity to modifications.