def rev_func(x,length):print(x[length-1],end='''') rev_func(x,length-1) x=[11,12,13,14,15] rev_func(x,5) , 1) The program runs fine without error.,2) Program displays 15 `4 13 12 11., 3) Program displays 11 12 13 14 15., 4) Program displays 15 14 13 12 11 and then raises an index out of range exception., "> def rev_func(x,length):print(x[length-1],end='''') rev_func(x,length-1) x=[11,12,13,14,15] rev_func(x,5) "/> def rev_func(x,length):print(x[length-1],end='''') rev_func(x,length-1) x=[11,12,13,14,15] rev_func(x,5) , The program runs fine without error., Program displays 15 `4 13 12 11., Program displays 11 12 13 14 15., Program displays 15 14 13 12 11 and then raises an index out of range exception., "/>
Aptitude Reasoning English GK Computer Knowledge Programming Skill Banking Software Testing