Q3.
निम्नलिखित में से कौन सी भाषा कंप्यूटर द्वारा समझी जाती है?
Which of the following language is understood by computer ?
A.
Machine language
B.
Assembly language
C.
High-level language
D.
None of the above
View Answer
Correct Answer: Machine language
Q5.
एल्गोरिदम निर्माण के तीन अलग-अलग प्रकार क्या हैं?
What are the three different types of algorithm constructions ?
A.
Input/Output, Decision, Repeat
B.
Input, Output, Process
C.
Loop, Input/Output, Process
D.
Sequence, Selection, Repeat
View Answer
Correct Answer: Sequence, Selection, Repeat
Q6.
मान लीजिए q = [3, 4, 5, 20, 5, 25, 1, 3], तो q.pop(1) के बाद q सूची में क्या आइटम होंगे?
Assume q = [3, 4, 5, 20, 5, 25, 1, 3], then what will be the items of q list after q.pop(1) ?
A.
[3, 4, 5, 20, 5, 25, 1, 3]
B.
[1, 3, 3, 4, 5, 5, 20, 25]
C.
[3, 5, 20, 5, 25, 1, 3]
D.
[1, 3, 4, 5, 20, 5, 25]
View Answer
Correct Answer: [3, 5, 20, 5, 25, 1, 3]
Q10.
कोड में त्रुटियां खोजने की प्रक्रिया को __________ कहा जाता है।
The process of finding errors in code is called as __________.
A.
Compiling
B.
Running
C.
Testing
D.
Debugging
View Answer
Correct Answer: Debugging
Q11.
निम्नलिखित कोड का परिणाम क्या है?
What is the output of the following code ?ms = ('A', 'D', 'H', 'U', 'N', 'I', 'C')
print(ms[1:4])
A.
('D', 'H', 'U')
B.
('A', 'D', 'H', 'U', 'N', 'I', 'C')
C.
('D', 'H', 'U', 'N', 'I', 'C')
D.
None of these
View Answer
Correct Answer: ('D', 'H', 'U')