एक स्ट्रिंग x="hello" को देखते हुए x.count ('l') का आउटपुट क्या होगा?<break-line><break-line>Given a string x="hello" What is the output of x.count('l')?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<break-line><break-line><pre><code>def func(a, b=5, c=10):
print('a is', a, 'and b is', b, 'and c is', c)
func(13, 17)
func(a=2, c=4)
func(5,7,9)</code></pre>
A.a is 13 and b is 15 and c is 10<break-line>a is 2 and b is 5 and c is 4<break-line>a is 5 and b is 7 and c is 9
B.a is 13 and b is 17 and c is 10<break-line>a is 2 and b is 4 and c is 4<break-line>a is 5 and b is 9 and c is 7
C.a is 13 and b is 17 and c is 10<break-line>a is 2 and b is 5 and c is 4<break-line>a is 5 and b is 7 and c is 9
Correct Answer: a is 13 and b is 17 and c is 10<break-line>a is 2 and b is 5 and c is 4<break-line>a is 5 and b is 7 and c is 9
Q20.
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<break-line><break-line><pre><code>list1 = [1, 3]
list2 = list1
list1[0]=4
print(list2)</code></pre>