निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code ?<break-line><break-line><pre><code>def C2F(c):
return c*9/5+32
print (C2F(100))
print (C2F(0))</code></pre>
निम्नलिखित में से कौन सा कथन अंत में निष्पादित होगा?<break-line><break-line>Which of the following statement will execute last ?<break-line><break-line><pre><code>def s(n1): # Statement 1
print(n1) # Statement 2
n2=4 # Statement 3
s(n2) # Statement 4</code></pre>
फ्लोचार्टिंग में वास्तविक निर्देश __________ में दर्शाए जाते हैं।<break-line><break-line>Actual instructions in flowcharting are represented in __________.
निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following ?<break-line><break-line><pre><code>x = 'abcd'
for i in range(len(x)):
i.upper()
print(x)</code></pre>