निम्नलिखित वस्तु का डेटा प्रकार क्या है?<break-line><break-line>What is the data type of following object ?<break-line><break-line><pre><code>A = [5,'abc',3.2,6]</code></pre>
एक __________ पूरे प्रोग्राम को स्कैन करता है और इसे पूरे मशीन कोड में ट्रांसलेट करता है।<break-line><break-line>A __________ scans the entire program and translates it as a whole into machine code.
निम्नलिखित कोड का आउटपुट क्या है?<break-line><break-line>What is the output of following code ?<break-line><break-line><pre><code>A=[[1,2,3],
[4,5,6],
[7,8,9]]
print(A[1][:])</code></pre>