What is the output of the following (a) print("percentage is %2f" %89.9625) (b) print("percentage is %2d" %89.9625) (c) print("the value of %c" %89) print("%s%-6s%-19s%-4s% 2s"%('|','sno.','|name','|price','|')) print('|'+'_'*6+'|'+'_'*18+'|'+'_'*6+'|') for i in range(2): print("%s%-6s%-19s%-4s%4s"%('|',str(i[0]),'|'+str(i[1]),'|'+str(i[2]),'|'))