page-banner
Computer Fundamentals
Q11.
जब हम किसी फाइल को राइट मोड में खोलने का प्रयास करते हैं जो मौजूद नहीं है, तो निम्नलिखित में से कौन सी एरर आती है?

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.
निम्नलिखित पायथन कोड का मूल्य क्या है?

What is the value of the following Python code?

print(36 / 4)
A. 9
B. 9.0
C. 4
D. 4.0
View Answer
Q13.
निम्नलिखित पायथन कोड का आउटपुट क्या है?

What is the output of the following Python code?

print(5*(2//3))
A. 3
B. Zero
C. 3.3
D. त्रुटि / Error
View Answer
Q14.
निम्नलिखित कोड का परिणाम क्या है?

What is the output of the following code?

import numpy as np
a = np.array([1,2,3])
print(a.ndim)
A. 1
B. 2
C. 3
D. Zero
View Answer