निम्नलिखित कोड का आउटपुट क्या होगा |<break-line><break-line>What will be the output of the following code?<pre><code>import math
abs(math.sqrt(36))</code></pre>
निम्नलिखित पाइथन कोड का आउटपुट क्या होगा |<break-line><break-line>What will be the output of the following Python code?<pre><code>min(max(False, -3, -4), 2, 7)</code></pre>
निम्नलिखित कोड का आउटपुट क्या होगा |<break-line><break-line>What is the output of the following?<pre><code>t=(2, 3, 4, 3.5, 5, 6)
print(sum(t) + t.count(2))</code></pre>
निम्नलिखित पाइथन कोड का आउटपुट क्या होगा |<break-line><break-line>What will be the output of the following Python code?<pre><code>def sayHello():
print("Hello World!")
sayHello()
sayHello()</code></pre>