Multiple choice technology programming languages

x=InStrRev("abc","cba") x=???

  1. 0

  2. 1

  3. true

  4. false

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

InStrRev searches for the second string within the first, looking from right to left. 'cba' does not appear in 'abc', so the function returns 0 (not found).