निम्नलिखित पाइथन कोड का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following Python code?<pre><code>names = ['Amir', 'Bear', 'Charlton', 'Daman']
print(names[-1][-1])</code></pre>
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>m = []
for n in range(6):
m.append(n*3)
print(m)</code></pre>
Correct Answer: Correct answer will be printed line-by-line, final output: [0, 3, 6, 9, 12, 15]
Q28.
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>x = [[0.0, 1.0, 2.0],[4.0, 5.0, 6.0]]
y = x[0][1] + x[1][0]
print(y)</code></pre>
निम्नलिखित पाइथन कोड स्निपेट का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following Python code snippet?<pre><code>a={1:"A",2:"B",3:"C"}
del a</code></pre>
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>x = [5, 4, 3, 2]
x.append(1)
print(x)</code></pre>