page-banner
Computer Fundamentals
Q1.
The following Python program can work with ____ parameters.<br><br>
def f(x):
    def f1(*args, **kwargs):
        print("Sanfoundry")
        return x(*args, **kwargs)
    return f1
A. any number of
C. 1
D. 2
View Answer
Q2.
विंडोज 10 में लाइव टाइल्स में मौजूद एप्लिकेशन को किसका उपयोग करके हटाया जा सकता है?
A. स्टार्ट मेनू से हटाएँ (Remove from start menu)
B. टास्कबार से अनपिन करें (Unpin from taskbar)
C. स्टार्ट से अनपिन करें (Unpin from start)
D. स्टार्ट मेनू से हटाएं (Delete from start menu)
View Answer
Q3.
VDU किस प्रकार का उपकरण है?
A. आउटपुट डिवाइस (Output device)
B. स्टोरेज डिवाइस (Storage device)
C. इनपुट डिवाइस (Input device)
D. सॉफ़्टवेयर (Software)
View Answer
Q4.
एक तस्वीर, रेखाचित्र, वीडियो या अन्य दृश्य छवि में वस्तुओं और आकृतियों की पहचान करने की प्रक्रिया क्या कहलाती है?
A. OCR
B. फज़ी लॉजिक (Fuzzy logic)
C. पैटर्न पहचान (Pattern recognition)
D. छवि विश्लेषण (Image analysis)
View Answer
Q5.
किस कुंजी का उपयोग किसी विशेष कार्य को करने के लिए दूसरी कुंजी के साथ संयोजन में किया जाता है?
A. स्पेस बार (Space bar)
B. कंट्रोल (Ctrl)
C. ऐरो की (Arrow)
D. फंक्शन की (Function)
View Answer
Q6.
निम्नलिखित में से कौन सा एंटी-वायरस सॉफ़्टवेयर नहीं है?
A. McAfee
B. Norton
C. AVG
D. VLC
View Answer
Q7.
निम्नलिखित कोड का परिणाम क्या है?<br><br>What is the output of the following code?<br><br>
M=['b'* x for x in range(4)]
print(M)
A. [' ', 'b', 'bb', 'bbb']
B. ['b', 'bb', 'bbb','bbbb']
C. ['b', 'bb', 'bbb']
D. इनमें से कोई नहीं / None of these
View Answer
Q8.
निम्नलिखित का आउटपुट क्या है?<br><br>What is the output of the following code?<br><br>
print(max([1, 2, 3, 4], [4, 5, 6], [7]))
A. [4, 5, 6]
B. [7]
C. [1, 2, 3, 4]
D. 7
View Answer
Q9.
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<br><br>What will be the output of the following Python code?<br><br>
example = "helle"
example.rfind("e")
A. 1
B. 2
C. 4
D. 5
View Answer
Q10.
निम्नलिखित स्यूडो कोड का आउटपुट क्या होगा?<br><br>What will be the output of the following pseudo code?<br><br>
Integer a, b
Set a = 10, b = 5
a = a mod (a - 6)
b = b mod (b - 2)
Print a - b
A. 4
C. 1
D. 8
View Answer
Q11.
जब हम किसी फाइल को राइट मोड में खोलने का प्रयास करते हैं जो मौजूद नहीं है, तो निम्नलिखित में से कौन सी एरर आती है?<br><br>Which of the following error is returned when we try to open a file in write mode which does not exist?
A. फाइल फाउंड एरर / File Found Error
B. फाइल नॉट एग्जिस्ट एरर / File Not Exist Error
C. फाइल नॉट फाउंड एरर / File Not Found Error
D. इनमें से कोई नहीं / None of the above
View Answer
Q12.
निम्नलिखित पायथन कोड का मूल्य क्या है?<br><br>What is the value of the following Python code?<br><br>
print(36 / 4)
A. 9
B. 9.0
C. 4
D. 4.0
View Answer
Q13.
निम्नलिखित पायथन कोड का आउटपुट क्या है?<br><br>What is the output of the following Python code?<br><br>
print(5*(2//3))
A. 3
B. Zero
C. 3.3
D. त्रुटि / Error
View Answer
Q14.
निम्नलिखित कोड का परिणाम क्या है?<br><br>What is the output of the following code?<br><br>
import numpy as np
a = np.array([1,2,3])
print(a.ndim)
A. 1
B. 2
C. 3
D. Zero
View Answer