Multiple choice technology programming languages x=InStrRev("abc","cba") x=??? 0 1 true 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).