page-banner
Python M3-R5.1 MCQs SET-18
Q6.
निम्न में से कौन सा फ़ंक्शन कॉल करने का सही तरीका है?

Which one of the following is the right way to call a function?
A. call function_name()
B. function function_name()
C. function_name()
D. None of these
View Answer
Q7.
पायथन में स्ट्रिंग ______ का अनुक्रम है

String in python are sequence of ______
A. ASCII code
B. unicode
C. balance code
D. mode code
View Answer
Q8.
निम्न में से कौन सा अपरिवर्तनीय हैं।

Which of the following are immutable.
A. Numbers
B. string
C. tupple
D. all of these
View Answer
Q9.
निम्नलिखित का आउटपुट / output of the following
Lst1=[1,4,9]
lst1*3
A. [1,4,9,1,4,9,1,4,9]
B. [1,4,9]3
C. [1,1,1,4,4,4,9,9,9]
D. [1,3,4,9]
View Answer
Q10.
निम्नलिखित कोड के लिए आउटपुट क्या होगा?

What will be output for the following code?
import numpy as np
ary = np.array([1,2,3,5,8])
ary = ary + 1
print (ary[1])
B. 1
C. 2
D. 3
View Answer

Create Account