page-banner
Computer Fundamentals
Q6.
निम्नलिखित में से कौन सा एंटी-वायरस सॉफ़्टवेयर नहीं है?
A. McAfee
B. Norton
C. AVG
D. VLC
View Answer
Q7.
निम्नलिखित कोड का परिणाम क्या है?

What is the output of the following code?

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.
निम्नलिखित का आउटपुट क्या है?

What is the output of the following code?

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.
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?

What will be the output of the following Python code?

example = "helle"
example.rfind("e")
A. 1
B. 2
C. 4
D. 5
View Answer
Q10.
निम्नलिखित स्यूडो कोड का आउटपुट क्या होगा?

What will be the output of the following pseudo code?

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