Introduction to Programming

Question: 1 Report Error

Python programming का विकास किसने किया ?

Who developed Python programming?

A)
B)
C)
D)

Question: 2 Report Error

_______ दी गई समस्या का सचित्र प्रतिनिधित्व(Pictorial Presentation) प्रदान करता है।

_______ provides pictorial representation of the given problem.

A)
B)
C)
D)

Question: 3 Report Error

Command Prompt Operating System का हिस्सा है

Command Prompt is part of the Operating System

A)
B)
C)
D)

Question: 4 Report Error

Python Functional Programming को Support नहीं करती है|

Python does not support Functional Programming.

A)
B)
C)
D)

Question: 5 Report Error

चयन नियंत्रण संरचना में

In selection control structure

A)
B)
C)
D)

Question: 6 Report Error

कंप्यूटर को निर्देशित करने वाले निर्देशों के समूह को कहा जाता है

Group of instructions that directs a computer is called

A)
B)
C)
D)

Question: 7 Report Error

वास्तव में प्रोग्राम लिखने से पहले कागज पर प्रोग्राम के तर्क से गुजरने की प्रक्रिया को ____ कहा जाता है।

The process of walking through a program’s logic on paper before you actually writes the program is called ____.

A)
B)
C)
D)

Question: 8 Report Error

निम्नलिखित में से कौन एक अभिव्यक्ति को विशिष्ट प्रकार में परिवर्तित करने के लिए बाध्य करता है?

Which of the following forces an expression to be converted into specific type?

A)
B)
C)
D)

Question: 9 Report Error

सॉफ्टवेयर विकास के किस चरण में सॉफ्टवेयर की गुणवत्ता का दस्तावेजीकरण किया जाता है?

In which software development phase quality of software is documented ?

A)
B)
C)
D)

Question: 10 Report Error

किसी प्रोग्राम के विभिन्न भागों को दिए गए अलग-अलग नामों को _________ के रूप में जाना जाता है

The different names given to different parts of a program is known as _________

A)
B)
C)
D)

Question: 11 Report Error

कौन सा प्रोग्राम एकाधिक ऑब्जेक्ट प्रोग्राम फ़ाइलें लेता है‟ उन्हें प्रोग्राम के अंतिम निष्पादन योग्य रूप में इकट्ठा करने के लिए एक साथ फिट करता है?

Which program takes multiple object program files? fits them together to assemble them into the program's final executable form?

A)
B)
C)
D)

Question: 12 Report Error

पायथन में, आप एक अभिव्यक्ति का उपयोग करके दो तारों को कैसे जोड़ सकते हैं?

In Python, how can you concatenate two strings using an expression?

A)
B)
C)
D)

Question: 13 Report Error

निम्नलिखित में से किस शाब्दिक का मान सही या ग़लत है?

Which of the following literal has either True or False value?

A)
B)
C)
D)

Question: 14 Report Error

शब्दकोशों को ________ के नाम से भी जाना जाता है।

Dictionaries are also known as ________.

A)
B)
C)
D)

Question: 15 Report Error

शब्दकोश _________ प्रकार के Python हैं।

Dictionaries are _________ type of python.

A)
B)
C)
D)

Question: 16 Report Error

पायथन क्या है?

What is Python?

A)
B)
C)
D)

Question: 17 Report Error

निम्नलिखित में से कौन प्रोग्रामिंग कोड को लाइन दर लाइन निष्पादित करता है?

Which of the following executes the programming code line by line?

A)
B)
C)
D)

Question: 18 Report Error

एक कंप्यूटर प्रोग्राम जो कंप्यूटर की गतिविधि का प्रबंधन और नियंत्रण करता है:

A computer programme that manages and controls a computer's activity :

A)
B)
C)
D)

Question: 19 Report Error

कंप्यूटर प्रोग्रामिंग भाषाओं के तीन मुख्य प्रकार क्या हैं?

What are the three main types of computer programming languages?

A)
B)
C)
D)

Question: 20 Report Error

दशमलव संख्या 12 के समतुल्य द्विआधारी संख्या क्या है?

What is the binary number equivalent of the decimal number 12?

A)
B)
C)
D)

Question: 21 Report Error

कौन सी भाषा मशीन द्वारा समझना आसान है?

Which language is easy to understand by machine?

A)
B)
C)
D)

Question: 22 Report Error

किस भाषा में अधिक पठनीय, डीबग करने में आसान और तेज़ विकास सुविधाएँ हैं?

Which language is having more readable, easy to debug and fast development features?

A)
B)
C)
D)

Question: 23 Report Error

स्रोत कोड में त्रुटियों को ढूँढना और हल करना…

finding and solving errors in the source code is…

A)
B)
C)
D)

Question: 24 Report Error

प्रत्येक कंप्यूटर में ऑपरेशन कोड का एक सेट होता है जिसे कहा जाता है।

Every computer has a set of operation code called as .

A)
B)
C)
D)

Question: 25 Report Error

एंड्रॉइड ऐप्स विकसित करने के लिए किस प्रोग्रामिंग भाषा का उपयोग किया जाता है?

Which programming language is used for developing Android apps?

A)
B)
C)
D)

Question: 26 Report Error

प्रोग्राम निष्पादन ………… में होता है

Program execution takes place in ………

A)
B)
C)
D)

Question: 27 Report Error

कथन पढ़ें:Statement (A) : एक फ़ंक्शन कुछ निश्चित functionality निष्पादित कर सकता है| Statement (B) : A function must return a result value.किसी फ़ंक्शन को result मान लौटाना होगा|

Read the statements: Statement (A) : A function can perform certain functionality. Statement (B) : A function must return a result value.

A)
B)
C)
D)

Question: 28 Report Error

ऋचा एक कार्यक्रम के साथ काम कर रही हैं जहां उन्होंने समारोह को कुछ मूल्य दिए। वह इन मूल्यों से संबंधित शब्द नहीं जानती। सही विकल्प चुनकर उसकी मदद करें।

Richa is working with a program where she gave some values to the function. She doesn’t know the term to relate these values. Help her by selecting the correct option.

A)
B)
C)
D)

Question: 29 Report Error

निम्नलिखित में से कौन उच्च स्तरीय भाषा का उदाहरण नहीं है?

Which of the following is not an example of high level language?

A)
B)
C)
D)

Question: 30 Report Error

__________ उपयोगकर्ता दस्तावेज़ का हिस्सा है।

__________ is part of user documentation.

A)
B)
C)
D)

Question: 31 Report Error

निम्नलिखित में से कौन सी भाषा मानव भाषा के सबसे निकट है?

Which of the following language is nearest to human language?

A)
B)
C)
D)

Question: 32 Report Error

निम्नलिखित में से कौन सी भाषा 0 और 1 में लिखी गई है?

Which of the following language is written in 0 and 1?

A)
B)
C)
D)

Question: 33 Report Error

एक __________ पूरे प्रोग्राम को स्कैन करता है और इसे संपूर्ण मशीन कोड में अनुवादित करता है।

A __________ scans the entire program and translates it as a whole into machine code.

A)
B)
C)
D)

Question: 34 Report Error

निम्नलिखित में से किस भाषा को अनुवाद के लिए असेंबलर की आवश्यकता होती है?

Which of the following language needs assembler for translation?

A)
B)
C)
D)

Question: 35 Report Error

हार्डवेयर को चलाने के लिए निम्नलिखित में से किस सॉफ्टवेयर की आवश्यकता होती है?

Which of the following software is required to run the hardware ?

A)
B)
C)
D)

Question: 36 Report Error

निम्नलिखित में से किस भाषा में सभी निर्देश क्रम में लिखे जाने चाहिए और उपयोगकर्ता को आदेश का पालन करना चाहिए?

In Which of the following language, all the instructions must be written in order and the user has to follow the order?

A)
B)
C)
D)

Question: 37 Report Error

डिबगिंग सॉफ्टवेयर में __________ को ठीक करने की प्रक्रिया है।

Debugging is the process of fixing a __________ in the software.

A)
B)
C)
D)

Question: 38 Report Error

असेंबली भाषा को मशीनी भाषा में बदलने के लिए किस अनुवादक का उपयोग किया जाता है?

Which translator is used to convert assembly language into machine language ?

A)
B)
C)
D)

Question: 39 Report Error

__________ OOP सुविधा और तंत्र है जो कोड और उसके द्वारा संचालित डेटा को एक साथ बांधता है, और दोनों को बाहरी दुनिया से सुरक्षित रखता है।

__________ is the OOP feature and mechanism that binds together code and the data it manipulates, and keep both safe from outside world.

A)
B)
C)
D)

Question: 40 Report Error

ऑब्जेक्ट-ओरिएंटेड प्रोग्रामिंग के संदर्भ में बहुरूपता क्या है?

What is polymorphism in the context of object-oriented programming?

A)
B)
C)
D)

Question: 41 Report Error

प्रोग्रामिंग में लिंक करने वाले का उद्देश्य क्या है?

What is the purpose of a linker in programming?

A)
B)
C)
D)

Question: 42 Report Error

कार्यक्रम निष्पादन में एक लोडर क्या भूमिका निभाता है?

What role does a loader play in program execution?

A)
B)
C)
D)

Question: 43 Report Error

कंप्यूटर सिस्टम का मस्तिष्क __________ है।

The brain of computer system is __________.

A)
B)
C)
D)

Question: 44 Report Error

कौन सा प्रोग्राम एकाधिक ऑब्जेक्ट प्रोग्राम फ़ाइलें लेता है‟ उन्हें प्रोग्राम के अंतिम निष्पादन योग्य रूप में इकट्ठा करने के लिए एक साथ फिट करता है?

Which program takes multiple object program files? fits them together to assemble them into the program's final executable form?

A)
B)
C)
D)

Question: 45 Report Error

संरचित प्रोग्रामिंग की अवधारणाओं पर कौन सी भाषा विकसित की गई थी?

Which Language was developed on the concepts of structured programming?

A)
B)
C)
D)

Question: 46 Report Error

एक कंप्यूटर प्रोग्राम जो कंप्यूटर की गतिविधि का प्रबंधन और नियंत्रण करता है:

A computer programme that manages and controls a computer's activity :

A)
B)
C)
D)

Question: 47 Report Error

एक ऑब्जेक्ट बनाने के लिए आपको पहले बनाना होगा

To create an object you must first create

A)
B)
C)
D)

Question: 48 Report Error

निम्नलिखित में से किस भाषा को अनुवाद के लिए असेंबलर की आवश्यकता होती है?

Which of the following language needs assembler for translation?

A)
B)
C)
D)

Question: 49 Report Error

कोड का पुन: उपयोग करने में असमर्थता किसका नुकसान है?

The inability to reuse the code is a disadvantage of ?

A)
B)
C)
D)

Question: 50 Report Error

__________ SQL का पूर्ण रूप है।

__________ is a full form of SQL.

A)
B)
C)
D)

Latest Updates