एल्गोरिथम के लिए फ़्लोचार्ट बनाने की प्रक्रिया को __________ कहा जाता है।<break-line><break-line>The process of drawing a flowchart for an algorithm is called __________.
मान लीजिए arr नाम वाली एक सूची में 5 तत्व हैं। आप सूची से दूसरा तत्व प्राप्त कर सकते हैं:<break-line><break-line>Suppose a list with name arr, contains 5 elements. You can get the 2nd element from the list using :
निम्नलिखित expression का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following expression ?<pre><code>a = 2
b = 8
print(a | b)
print(a >> 1)</code></pre>