Computer Fundamentals — MCQ Practice

Hindi aur English dono mein practice karo — click karo answer check karne ke liye

📚 2941 Questions 🌐 Hindi + English ✅ Free
भाषा / Language:
2941 questions
466
EN + हिं Medium
GB Which language has the principle 'write once, run anywhere'?
IN 'एक बार लिखो, कहीं भी दौड़ो' का सिद्धांत किस भाषा में है?
A
C++ सी++
B
Java जावा
C
Python अजगर
D
JavaScript जावास्क्रिप्ट
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Java's JVM (Java Virtual Machine) enables 'write once, run anywhere' cross-platform compatibility.
व्याख्या (हिन्दी) जावा की जेवीएम (जावा वर्चुअल मशीन) 'एक बार लिखें, कहीं भी चलाएं' क्रॉस-प्लेटफॉर्म संगतता सक्षम करती है।
467
EN + हिं Easy
GB SQL stands for?
IN SQL का मतलब है?
A
Structured Query Language स्ट्रक्चर्ड क्वेरी लैंग्वेज
B
Systematic Query Language व्यवस्थित क्वेरी भाषा
C
Standard Query Logic मानक क्वेरी तर्क
D
Sequential Query Language अनुक्रमिक क्वेरी भाषा
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) SQL (Structured Query Language) is the standard language for relational database management.
व्याख्या (हिन्दी) SQL (स्ट्रक्चर्ड क्वेरी लैंग्वेज) रिलेशनल डेटाबेस प्रबंधन के लिए मानक भाषा है।
468
EN + हिं Easy
GB Which of the following is a DBMS?
IN निम्नलिखित में से कौन सा DBMS है?
A
Python अजगर
B
MySQL MySQL
C
JavaScript जावास्क्रिप्ट
D
Linux लिनक्स
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) MySQL is a Relational Database Management System (RDBMS) for storing and managing data.
व्याख्या (हिन्दी) MySQL डेटा को संग्रहीत और प्रबंधित करने के लिए एक रिलेशनल डेटाबेस मैनेजमेंट सिस्टम (RDBMS) है।
469
EN + हिं Medium
GB RAM speed is measured in?
IN RAM की गति किसमें मापी जाती है?
A
GHz गीगा
B
MHz मेगाहर्टज
C
RPM आरपीएम
D
MB/s एमबी/एस
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) RAM speed is measured in MHz (Megahertz) — e.g., DDR4-3200 RAM runs at 1600 MHz base clock.
व्याख्या (हिन्दी) रैम की गति मेगाहर्ट्ज (मेगाहर्ट्ज़) में मापी जाती है - उदाहरण के लिए, DDR4-3200 रैम 1600 मेगाहर्ट्ज बेस क्लॉक पर चलती है।
470
EN + हिं Easy
GB DDR stands for in DDR RAM?
IN DDR RAM में DDR का क्या अर्थ है?
A
Double Data Rate डबल डेटा दर
B
Dual Dynamic Range दोहरी गतिशील रेंज
C
Direct Data Read प्रत्यक्ष डेटा पढ़ें
D
Dual Data Register दोहरा डेटा रजिस्टर
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) DDR (Double Data Rate) RAM transfers data on both rising and falling edges of the clock signal.
व्याख्या (हिन्दी) डीडीआर (डबल डेटा रेट) रैम क्लॉक सिग्नल के बढ़ते और गिरते दोनों किनारों पर डेटा ट्रांसफर करता है।
471
EN + हिं Easy
GB Which of the following is a high-level programming language?
IN निम्नलिखित में से कौन सी एक उच्च स्तरीय प्रोग्रामिंग भाषा है?
A
Machine code मशीन कोड
B
Assembly विधानसभा
C
Python अजगर
D
Binary द्विआधारी
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Python is a high-level language with human-readable syntax, abstracted far from hardware.
व्याख्या (हिन्दी) पायथन मानव-पठनीय वाक्यविन्यास वाली एक उच्च-स्तरीय भाषा है, जो हार्डवेयर से बिल्कुल अलग है।
472
EN + हिं Medium
GB An algorithm must be?
IN एक एल्गोरिदम होना चाहिए?
A
Written in a specific language एक विशिष्ट भाषा में लिखा गया
B
Finite, definite, and effective परिमित, निश्चित और प्रभावी
C
Implemented in C सी में लागू किया गया
D
Running on a computer कंप्यूटर पर चल रहा है
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) An algorithm must be finite (terminates), definite (unambiguous steps), and effective (feasible).
व्याख्या (हिन्दी) एक एल्गोरिदम परिमित (समाप्त), निश्चित (स्पष्ट चरण), और प्रभावी (व्यवहार्य) होना चाहिए।
473
EN + हिं Hard
GB What is the time complexity of binary search?
IN बाइनरी खोज की समय जटिलता क्या है?
A
O(n) पर)
B
O(n²) ओ(एन²)
C
O(log n) ओ(लॉग एन)
D
O(1) हे(1)
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Binary search has O(log n) time complexity, halving the search space with each comparison.
व्याख्या (हिन्दी) बाइनरी खोज में O(लॉग एन) समय जटिलता होती है, जो प्रत्येक तुलना के साथ खोज स्थान को आधा कर देती है।
474
EN + हिं Medium
GB Which sorting algorithm has worst-case O(n log n)?
IN किस सॉर्टिंग एल्गोरिदम में सबसे खराब स्थिति O(n log n) है?
A
Bubble sort बुलबुले की तरह
B
Quick sort त्वरित छँटाई
C
Merge sort मर्ज सॉर्ट
D
Insertion sort सम्मिलन प्रकार
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Merge sort guarantees O(n log n) in all cases — best, average, and worst case.
व्याख्या (हिन्दी) मर्ज सॉर्ट सभी मामलों में ओ (एन लॉग एन) की गारंटी देता है - सर्वोत्तम, औसत और सबसे खराब स्थिति।
475
EN + हिं Medium
GB Stack data structure follows?
IN स्टैक डेटा संरचना इस प्रकार है?
A
FIFO फीफो
B
LIFO जीवन
C
Random access यादृच्छिक पहुंच
D
Priority order प्राथमिक आदेश
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Stack follows LIFO (Last In, First Out) — the last element pushed is the first to be popped.
व्याख्या (हिन्दी) स्टैक LIFO (लास्ट इन, फर्स्ट आउट) का अनुसरण करता है - अंतिम धक्का दिया गया तत्व सबसे पहले पॉप किया जाता है।
476
EN + हिं Medium
GB Queue data structure follows?
IN कतार डेटा संरचना इस प्रकार है?
A
LIFO जीवन
B
FIFO फीफो
C
Random access यादृच्छिक पहुंच
D
Priority order प्राथमिक आदेश
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Queue follows FIFO (First In, First Out) — elements are added at rear and removed from front.
व्याख्या (हिन्दी) कतार FIFO (फर्स्ट इन, फर्स्ट आउट) का अनुसरण करती है - तत्वों को पीछे से जोड़ा जाता है और सामने से हटा दिया जाता है।
477
EN + हिं Medium
GB A linked list node contains?
IN एक लिंक्ड सूची नोड में शामिल है?
A
Data only केवल डेटा
B
Pointer only केवल सूचक
C
Data and pointer to next node अगले नोड के लिए डेटा और सूचक
D
Index and data सूचकांक और डेटा
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) A linked list node stores data and a pointer (link) to the next node in the list.
व्याख्या (हिन्दी) एक लिंक्ड सूची नोड सूची में अगले नोड पर डेटा और एक पॉइंटर (लिंक) संग्रहीत करता है।
478
EN + हिं Medium
GB Binary tree node has maximum?
IN बाइनरी ट्री नोड अधिकतम है?
A
1 child 1 बच्चा
B
2 children 2 बच्चे
C
3 children 3 बच्चे
D
Unlimited children बेहद के बच्चे
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) A binary tree node has at most 2 children: left child and right child.
व्याख्या (हिन्दी) एक बाइनरी ट्री नोड में अधिकतम 2 बच्चे होते हैं: बायां बच्चा और दायां बच्चा।
479
EN + हिं Medium
GB In a full binary tree, every node has?
IN एक पूर्ण बाइनरी ट्री में, प्रत्येक नोड में क्या होता है?
A
0 or 2 children 0 या 2 बच्चे
B
Exactly 2 children बिल्कुल 2 बच्चे
C
1 or 2 children 1 या 2 बच्चे
D
0 or 1 children 0 या 1 बच्चे
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) In a full binary tree, every node has either 0 (leaf) or 2 children.
व्याख्या (हिन्दी) एक पूर्ण बाइनरी ट्री में, प्रत्येक नोड में या तो 0 (पत्ती) या 2 बच्चे होते हैं।
480
EN + हिं Medium
GB Recursion is?
IN प्रत्यावर्तन है?
A
Loop-based technique लूप-आधारित तकनीक
B
Function calling itself फ़ंक्शन स्वयं को कॉल कर रहा है
C
Parallel processing समानांतर प्रसंस्करण
D
Memory management स्मृति प्रबंधन
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Recursion is a programming technique where a function calls itself to solve smaller subproblems.
व्याख्या (हिन्दी) रिकर्सन एक प्रोग्रामिंग तकनीक है जहां एक फ़ंक्शन छोटी उप-समस्याओं को हल करने के लिए स्वयं को कॉल करता है।
466–480 of 2941