Multiple choice technology programming languages

Dim strOne strOne=InStrRev("abc","ABC") Msgbox strOne

  1. 1

  2. 3

  3. 0

  4. 6

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

InStrRev performs a case-sensitive search when comparing strings. Since 'ABC' (uppercase) does not exist in 'abc' (lowercase), the function returns 0 to indicate the substring was not found. Option A would be correct only if the search were case-insensitive or if the strings matched case.