Q.1.
What will be the output of the following Python code? x = ['ab', 'cd'] print(len(list(map(list, x))))))
Q.2.
What will be the output of the following Python code? x = ['ab', 'cd'] print(list(map(list, x)))
Q.3.
What will be the output of the following Python code? x = [print(len(list(map(len, x))))
Q.4.
What will be the output of the following Python code? x = [print(len(list(map(int, x))))
Q.5.
What will be the output of the following Python code? x = [print(len(''.join(list(map(int, x)))))
Q.6.
What will be the output of the following Python code? x = [print(len(''.join(list(map(str, x)))))
Q.7.
What will be the output of the following Python code? x = [print(len(' '.join(list(map(int, x)))))
Q.8.
What will be the output of the following Python code? x = [12.34.print(len(' '.join(list(map(str, x)))))
Q.9.
What will be the output of the following Python code? x = [12.34.print(' '.join(list(map(str, x))))
Q.10.
What will be the output of the following Python code? x = [[0], [1]] print(len(' '.join(list(map(str, x)))))