Introduction to Programming
कंप्यूटर सिस्टम का मस्तिष्क __________ है।
The brain of computer system is __________.
Correct Answer: B) CPU
वह कौन सा प्रोग्राम है जो कई ऑब्जेक्ट प्रोग्राम फाइलों को लेता है और उन्हें एक साथ जोड़कर प्रोग्राम के अंतिम निष्पादन योग्य रूप में परिवर्तित करता है?
Which program takes multiple object program files? fits them together to assemble them into the program's final executable form?
Correct Answer: D) Linker
संरचित प्रोग्रामिंग की अवधारणाओं पर कौन सी भाषा विकसित की गई थी?
Which Language was developed on the concepts of structured programming?
Correct Answer: C) C
एक कंप्यूटर प्रोग्राम जो कंप्यूटर की गतिविधि का प्रबंधन और नियंत्रण करता है:
A computer programme that manages and controls a computer's activity :
एक ऑब्जेक्ट बनाने के लिए आपको पहले बनाना होगा
To create an object you must first create
निम्नलिखित में से किस भाषा को अनुवाद के लिए असेंबलर की आवश्यकता होती है?
Which of the following language needs assembler for translation?
कोड का पुन: उपयोग करने में असमर्थता किसका नुकसान है?
The inability to reuse the code is a disadvantage of ?
__________ SQL का पूर्ण रूप है।
__________ is a full form of SQL.
डिफ़ॉल्ट रूप से, पायथन स्रोत फ़ाइलों को _ में एन्कोडेड माना जाता है
By default, Python source files are treated as encoded in _
कौन सा अच्छा डॉक्यूमेंटेशन कैरेक्टर स्टिक नहीं है?
Which is not a good documentation character sticks?
पायथन प्रोग्राम में व्यक्तिगत इकाई में छोटी को ___________ के रूप में जाना जाता है
The tiny in individual unit in python program is known as ___________
एल्गोरिदम निर्माण के तीन अलग-अलग प्रकार क्या हैं?
What are the three different types of algorithm constructions?
Correct Answer: D) Sequence, Selection, Repeat
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 निम्नलिखित में से कौन सा एक अमान्य पहचानकर्ता है
Which of the following is an invalid identifier
पायथन प्रोग्राम में छोटी व्यक्तिगत इकाई को _______ के रूप में जाना जाता है।
The tiny individual unit in python program is known as _
निम्नलिखित में से कौन सी सुविधा पायथन फ़ंक्शन द्वारा समर्थित नहीं है
Which of the following is not a feature supported by python functions
कंप्यूटर सिस्टम का मस्तिष्क है।
The brain of computer system is
पायथन classes में ................. शब्द का अर्थ है अनेक रूप धारण करने की क्षमता।
The term ................. means the ability to take many forms in Python classes.
Correct Answer: B) Polymorphism
एक Python क्लास में क्या होता है
What can a Python class hold