कंप्यूटर विज्ञान में, एल्गोरिथ्म एक फ़्लोचार्ट के सचित्र प्रतिनिधित्व को संदर्भित करता है।<break-line><break-line>In computer science, algorithm refers to a pictorial representation of a flowchart.
निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following ?<break-line><break-line><pre><code>for i in range(10):
if i == 5:
break
else:
print(i)
else:
print("Here")</code></pre>
मान लीजिए एक tuple arr में 10 तत्व होते हैं। आप टपल के 5वें तत्व को 'Hello' पर कैसे सेट कर सकते हैं?<break-line><break-line>Suppose a tuple arr contains 10 elements. How can you set the 5th element of the tuple to 'Hello' ?
Correct Answer: Elements of tuple cannot be changed
Q9.
एक फ़्लोचार्ट जो एक कार्यक्रम के मुख्य खंडों की रूपरेखा तैयार करता है।<break-line><break-line>A flowchart that outlines the main segments of a program.
निम्नलिखित कोड का परिणाम क्या है ?<break-line><break-line>What is the output of the following code ?<break-line><break-line><pre><code>a = 15
b = 6
print(a and b)
print(a or b)</code></pre>