Introduction to Programming
Question: 52
Report Error
डिफ़ॉल्ट रूप से, पायथन स्रोत फ़ाइलों को _ में एन्कोडेड माना जाता है
By default, Python source files are treated as encoded in _
A)
B)
C)
D)
Question: 53
Report Error
कौन सा अच्छा डॉक्यूमेंटेशन कैरेक्टर स्टिक नहीं है?
Which is not a good documentation character sticks?
A)
B)
C)
D)
Question: 54
Report Error
पायथन प्रोग्राम में व्यक्तिगत इकाई में छोटी को ___________ के रूप में जाना जाता है
The tiny in individual unit in python program is known as ___________
A)
B)
C)
D)
Question: 55
Report Error
एल्गोरिदम निर्माण के तीन अलग-अलग प्रकार क्या हैं?
What are the three different types of algorithm constructions?
A)
B)
C)
D)
Question: 56
Report Error
a=5, b=8, c=6 के लिए निम्नलिखित एल्गोरिदम का आउटपुट क्या होगा?
What will be the output of the following algorithm for a=5, b=8, c=6
Step 1 : Start
Step 2 : Declare variables a, b and c.
Step 3 : Read variables a, b and c.
Step 4 : If a < b
If a < c
Display a is the smallest number.
Else
Display c is the smallest number.
Else If b < c
Display b is the smallest number.
Else
Display c is the smallest number.
Step 5 : Stop
A)
B)
C)
D)