Python Basic "A1"
1 / 100
Python में integer divide करने के लिए कौन सा operator है?
2 / 100
Python को सबसे पहले कहाँ release किया गया?
3 / 100
Python में कितने basic data types हैं?
4 / 100
Python किस year में बनी थी?
5 / 100
Python का creator कौन है?
6 / 100
a = 10; b = 10; print(a is b)
7 / 100
if not True: क्या करेगा?
8 / 100
Tuple को update किया जा सकता है?
9 / 100
Python में true का numerical value क्या है?
10 / 100
कौन सा data structure unordered है?
11 / 100
Python में round(3.5) का output क्या होगा?
12 / 100
set([1,2,2,3]) का output?
13 / 100
List को sort करने के लिए कौनसी method है?
14 / 100
pop() method क्या करता है list में?
15 / 100
Python में function के default return value क्या होती है अगर कुछ return ना हो?
16 / 100
Python में comment को ignore किया जाता है?
17 / 100
len("hello") का output?
18 / 100
False + True क्या देगा?
19 / 100
True == 1 क्या return करेगा?
20 / 100
Python case sensitive है?
21 / 100
Python में pass का use क्या है?
22 / 100
Dictionary में values access करने के लिए क्या use होता है?
23 / 100
कौनसा Python module है जो OS से related काम करता है?
24 / 100
Python में data type check करने के लिए कौनसा function है?
25 / 100
Python में कितने types के loops होते हैं?
26 / 100
List में index() method क्या करता है?
27 / 100
list("abc") क्या return करेगा?
28 / 100
min([9, 5, 2]) का output क्या होगा?
29 / 100
max([4, 7, 1]) क्या देगा?
30 / 100
int("10") क्या करेगा?
31 / 100
Python में input लेने के लिए कौन सा function है?
32 / 100
Python में private variable कैसे declare करते हैं?
33 / 100
import किस लिए use होता है?
34 / 100
Python किस type की language है?
35 / 100
Python में कौनसा operator exponentiation करता है?
36 / 100
print(2 ** 3) क्या देगा?
37 / 100
Python की official website कौनसी है?
38 / 100
x = 10; print(x > 5 and x < 15)
39 / 100
Python में multi-level inheritance होता है?
40 / 100
a = None में a का टाइप क्या है?
41 / 100
type(3+4j) क्या देगा?
42 / 100
id() function क्या return करता है?
43 / 100
Python में is operator किसके लिए होता है?
44 / 100
Python में set को define करने का तरीका?
45 / 100
bool(1) का output क्या होगा?
46 / 100
bool(0) का output क्या होगा?
47 / 100
Dictionary में duplicate key की अनुमति है?
48 / 100
Python में float type का example क्या है?
49 / 100
a = [1, 2, 3]; print(a[-1]) क्या देगा?
50 / 100
Python में default argument कहां define होता है?
51 / 100
raise keyword किस लिए use होता है?
52 / 100
__repr__ और __str__ में difference क्या है?
53 / 100
Python में slicing किससे होती है?
54 / 100
help() function क्या करता है?
55 / 100
Python में garbage collection किससे होती है?
56 / 100
__str__ method किसके लिए उपयोगी है?
57 / 100
import this क्या output देगा?
58 / 100
Python में recursion क्या है?
59 / 100
filter(func, iterable) किस काम आता है?
60 / 100
map(func, iterable) क्या return करता है?
61 / 100
Python में list comprehension क्या है?
62 / 100
__name__ == "__main__" किसके लिए check करता है?
63 / 100
Python में module को import करते वक्त alias देने के लिए keyword क्या है?
64 / 100
File को close करने के लिए method क्या है?
65 / 100
open("file.txt", "r") में “r” का क्या मतलब?
66 / 100
Python में multi-line comment कैसे लिखते हैं?
67 / 100
finally block कब execute होता है?
68 / 100
Python में exception handle करने के लिए कौनसा block use करते हैं?
69 / 100
append() method किसमें होती है?
70 / 100
कौनसे module से random number generate किया जाता है?
71 / 100
str(123) output क्या देगा?
72 / 100
set में duplicate elements कैसे handle होते हैं?
73 / 100
True + True क्या देगा?
74 / 100
कौन से operator से bitwise AND होता है?
75 / 100
किससे list की copy बनती है?
76 / 100
Lambda function क्या है?
77 / 100
किससे object delete किया जाता है?
78 / 100
Python में inheritance किससे होती है?
79 / 100
__init__ क्या है?
80 / 100
Python में class define करने के लिए keyword क्या है?
81 / 100
import math क्या करता है?
82 / 100
Python में “None” क्या दिखाता है?
83 / 100
किस keyword से loop के next iteration पर जाया जाता है?
84 / 100
किस keyword से loop जल्दी exit किया जा सकता है?
85 / 100
x = “5”; y = 2; print(x * y) output क्या होगा?
86 / 100
Python में function को call करने के लिए किसे use करते हैं?
87 / 100
() empty parentheses — यह किसका representation है?
88 / 100
[] ये क्या है?
89 / 100
कौनसा operator membership test के लिए है?
90 / 100
x = True and False टाइप क्या होगा?
91 / 100
x = 5; y = 2; print(x // y) क्या output देगा?
92 / 100
Python का index किस नंबर से शुरू होता है?
93 / 100
Python में comment कैसे लिखते हैं?
94 / 100
for i in range(3): print(i) output क्या होगा?
95 / 100
कौनसा structure key-value pair store करता है?
96 / 100
len([1,2,3]) output क्या देगा?
97 / 100
Python में string को change नहीं किया जा सकता — ये किस प्रकार है?
98 / 100
कौनसा keyword function define करने के लिए use होता है?
99 / 100
print("Hello") क्या करती है?
100 / 100
Python का extension क्या होता है जॉब फाइलों का?
Your score is
The average score is 0%
Restart quiz
Star xprt is the largest training provider in the industry. Established in the year 2021.