🚀 Hurry! Offer Ends In
00 Days
00 Hours
00 Mins
00 Secs
Enroll Now
X

Introduction to Programming

Question: 51
Verified by Expert

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

The brain of computer system is __________.

A)
B)
C)
D)
Explanation
The brain of computer system is CPU (Central Processing Unit).

Correct Answer: B) CPU


Question: 52
Verified by Expert

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

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

A)
B)
C)
D)
Explanation
A linker (also known as a link editor or binder) is the program responsible for taking multiple object files and combining them into a single, final executable file.

Correct Answer: D) Linker


Question: 53
Verified by Expert

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

Which Language was developed on the concepts of structured programming?

A)
B)
C)
D)
Explanation
Based on common computer science, the language C is often cited as the primary language developed on the concepts of structured programming.

Correct Answer: C) C


Question: 54 Report Error

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

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

A)
B)
C)
D)

Question: 55 Report Error

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

To create an object you must first create

A)
B)
C)
D)

Question: 56 Report Error

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

Which of the following language needs assembler for translation?

A)
B)
C)
D)

Question: 57 Report Error

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

The inability to reuse the code is a disadvantage of ?

A)
B)
C)
D)

Question: 58
Verified by Expert

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

__________ is a full form of SQL.

A)
B)
C)
D)

Question: 59 Report Error

कौन सा कथन गलत है?

Which statement is incorrect?

A)
B)
C)
D)

Question: 60 Report Error

डिफ़ॉल्ट रूप से, पायथन स्रोत फ़ाइलों को _ में एन्कोडेड माना जाता है

By default, Python source files are treated as encoded in _

A)
B)
C)
D)

Question: 61 Report Error

कौन सा अच्छा डॉक्यूमेंटेशन कैरेक्टर स्टिक नहीं है?

Which is not a good documentation character sticks?

A)
B)
C)
D)

Question: 62 Report Error

पायथन प्रोग्राम में व्यक्तिगत इकाई में छोटी को ___________ के रूप में जाना जाता है

The tiny in individual unit in python program is known as ___________

A)
B)
C)
D)

Question: 63 Report Error

एल्गोरिदम निर्माण के तीन अलग-अलग प्रकार क्या हैं?

What are the three different types of algorithm constructions?

A)
B)
C)
D)
Explanation
The three primary types of algorithm construction techniques are: 1. Sequence The simplest type of algorithm construction. Involves executing steps in a specific order, one after another. Example: Calculating the sum of two numbers. plaintext Copy code Step 1: Start Step 2: Input two numbers (a, b) Step 3: Calculate sum = a + b Step 4: Output sum Step 5: End 2. Selection (Decision-Making) Allows the algorithm to make decisions based on conditions. Typically involves if-else or switch-case statements. Example: Checking if a number is even or odd. plaintext Copy code Step 1: Start Step 2: Input a number (n) Step 3: If n % 2 == 0, output "Even" Else, output "Odd" Step 4: End 3. Iteration (Loops) Involves repeating a set of steps until a condition is met. Typically uses for, while, or do-while loops. Example: Calculating the factorial of a number. plaintext Copy code Step 1: Start Step 2: Input a number (n) Step 3: Set factorial

Correct Answer: D) Sequence, Selection, Repeat


Question: 64 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)

Question: 65 Report Error

निम्नलिखित में से कौन सा एक अमान्य पहचानकर्ता है

Which of the following is an invalid identifier

A)
B)
C)
D)

Question: 66 Report Error

कौन सा कथन गलत है

Which statement is incorrect

A)
B)
C)
D)

Question: 67 Report Error

पायथन प्रोग्राम में छोटी व्यक्तिगत इकाई को _______ के रूप में जाना जाता है।

The tiny individual unit in python program is known as _

A)
B)
C)
D)

Question: 68 Report Error

निम्नलिखित में से कौन सी सुविधा पायथन फ़ंक्शन द्वारा समर्थित नहीं है

Which of the following is not a feature supported by python functions

A)
B)
C)
D)

Question: 69 Report Error

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

The brain of computer system is

A)
B)
C)
D)

Question: 70
Verified by Expert

पायथन classes में ................. शब्द का अर्थ है अनेक रूप धारण करने की क्षमता।

The term ................. means the ability to take many forms in Python classes.

A)
B)
C)
D)
Explanation
The word is derived from the Greek words "poly" (many) and "morphism" (forms). In object-oriented programming, it refers to the ability of different classes to be treated as instances of a common parent class, or more generally, for a single interface (such as a function or method name) to be used for different underlying data types.

Correct Answer: B) Polymorphism


Question: 71
Verified by Expert

एक Python क्लास में क्या होता है

What can a Python class hold

A)
B)
C)
D)

Latest Updates