1.

Question 1: What is the output of the following program?str1 = '{2}, {1} and {0}'.format('a', 'b', 'c')str2 = '{0}{1}{0}'.format('abra', 'cad')print(str1, str2)(A) c, b and a abracad0(B) a, b and c abracadabra(C) a, b and c abracadcad(D) c, b and a abracadabra

Answer»


Discussion

No Comment Found