O Level Papers!

M3 R5: Programming and Problem Solving through Python

Set

10 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

13 What is the output of the following code ? ms = ('A','D', 'H','U','N','I','C') print(ms[1:4])

निम्नलिखित कोड का परिणाम क्या है ? ms = ('A','D', 'H','U','N','I','C') print(ms[1:4])

Previous Question Next Question

14 Other name of Pseudo code

Pseudo code का अन्य नाम

Previous Question Next Question

21 What is the data type of (1)?

(1) का डेटा प्रकार क्या है?

Previous Question Next Question

24 What is an algorithm

एल्गोरिथ्म क्या है

Previous Question Next Question