O Level Papers!

M3 R5: Programming and Problem Solving through Python

Set

3 What will be the output of the following code snippet? a=[1,2,3,4,5,6,7,8,9] a[::2]=10,20,30,40,50,60 print(a)

निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा? a=[1,2,3,4,5,6,7,8,9] a[:2]= 10,20,30,40,50,60 print(a)

Previous Question Next Question

6 Which of the following is false about “from ….. import …… " form of import?

निम्नलिखित में से कौन सा आयात के "from ….. import …… " रूप के बारे में गलत है?

Previous Question Next Question

8 Which statement is correct

कौन सा कथन सही है

Previous Question Next Question

10 What is the order of namespaces in which Python looks for an identifier?

नामस्थानों का क्रम क्या है जिसमें पायथन एक पहचानकर्ता की तलाश करता है?

Previous Question Next Question

23 What is use of seek() method in files?

फ़ाइलों में सीक() विधि का उपयोग क्या है?

Previous Question Next Question