O Level Papers!

M3 R5: Programming and Problem Solving through Python

Set

1 What is identifier ?

पहचानकर्ता क्या है?

Next Question

2 Which of these is false about recursion?

इनमें से कौन सी पुनरावृत्ति के बारे में गलत है?

Previous Question Next Question

8 Which of the following is true for nested loops in Python?

पायथन में नेस्टेड लूप के लिए निम्नलिखित में से कौन सा सत्य है?

Previous Question Next Question

17 How can you create a NumPy array from a Python list?

आप Python सूची से NumPy सरणी कैसे बना सकते हैं?

Previous Question Next Question

21 What is the purpose of the else block in a Python loop?

पायथन लूप में अन्य ब्लॉक का पर्पज क्या है?

Previous Question Next Question

24 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