किसी समस्या को चरण दर चरण हल करने के तरीके को __________ के रूप में जाना जाता है।<break-line><break-line>The way for solving a problem step by step is known as __________.
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code ?<pre><code>def calc(x):
r=2*x**2
return r
print(calc(5))</code></pre>
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code ?<pre><code>def printMax(a, b):
if a > b:
print(a, 'is maximum')
elif a == b:
print(a, 'is equal to', b)
else:
print(b, 'is maximum')
printMax(3, 4)</code></pre>
निम्नलिखित expression किस मान का मूल्यांकन करता है?<break-line><break-line>What value does the following expression evaluate to ?<pre><code>x = 5
while x < 10:
print(x, end='')</code></pre>
निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code ?<pre><code>x = 50
def func(x):
x = 2
func(x)
print('x is now', x)</code></pre>