Multiple choice technology mainframe

SAY POS('KUM',RAMAKUMAR)

  1. 3

  2. 4

  3. 5

  4. 6

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

The POS() function finds the position of a substring within a string. POS('KUM', 'RAMAKUMAR') searches for 'KUM' in 'RAMAKUMAR'. 'KUM' starts at position 5 in 'RAMAKUMAR' (R=1, A=2, M=3, A=4, K=5, U=6, M=7). Therefore, the answer is 5.