DBMS — MCQ Practice

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

📚 130 Questions 🌐 Hindi + English ✅ Free
भाषा / Language:
130 questions
1
EN + हिं
GB A model developed by Hammer and Mc Leod in 1981.
IN 1981 में हैमर और मैक लेओड द्वारा विकसित एक मॉडल।
A
SDM एसडीएम
B
OODBM OODBM
C
DDM डीडीएम
D
RDM आरडीएम
✅ Correct Answer:
2
EN + हिं
GB Designers use which of the following to tune the performance of systems to support timecritical operations?
IN डिज़ाइनर समय-महत्वपूर्ण संचालन का समर्थन करने के लिए सिस्टम के प्रदर्शन को ट्यून करने के लिए निम्नलिखित में से किसका उपयोग करते हैं?
A
Denormalization असमान्यीकरण
B
Redundant optimization निरर्थक अनुकूलन
C
Optimization अनुकूलन
D
Realization वसूली
✅ Correct Answer:
3
EN + हिं
GB An audit trail ___________
IN एक ऑडिट ट्रेल ___________
A
Is used to make backup copies बैकअप प्रतियां बनाने के लिए उपयोग किया जाता है
B
Is the recorded history of operations performed on a file किसी फ़ाइल पर किए गए कार्यों का रिकॉर्ड किया गया इतिहास है
C
Can be used to restore lost information खोई हुई जानकारी को पुनर्स्थापित करने के लिए इसका उपयोग किया जा सकता है
D
None of the mentioned उल्लेखित कोई भी नहीं
✅ Correct Answer:
4
EN + हिं
GB The property (or set of properties) that uniquely defines each row in a table is called the:
IN वह गुण (या गुणों का समूह) जो तालिका में प्रत्येक पंक्ति को विशिष्ट रूप से परिभाषित करता है, कहलाता है:
A
Identifier पहचानकर्ता
B
Index अनुक्रमणिका
C
Primary key प्राथमिक कुंजी
D
Symmetric key सममित कुंजी
✅ Correct Answer:
5
EN + हिं
GB Which of the following are the process of selecting the data storage and data access characteristics of the database?
IN डेटाबेस के डेटा भंडारण और डेटा एक्सेस विशेषताओं को चुनने की प्रक्रिया निम्नलिखित में से कौन सी है?
A
Logical database design तार्किक डेटाबेस डिज़ाइन
B
Physical database design भौतिक डेटाबेस डिज़ाइन
C
Testing and performance tuning परीक्षण और प्रदर्शन ट्यूनिंग
D
Evaluation and selecting मूल्यांकन एवं चयन
✅ Correct Answer:
6
EN + हिं
GB The term _______ is used to refer to a row.
IN _______ शब्द का प्रयोग किसी पंक्ति को संदर्भित करने के लिए किया जाता है।
A
Attribute गुण
B
Tuple टपल
C
Field मैदान
D
Instance उदाहरण
✅ Correct Answer:
7
EN + हिं
GB Which of the following information does an SQL DDL not specify?
IN SQL DDL निम्नलिखित में से कौन सी जानकारी निर्दिष्ट नहीं करता है?
A
The schema for each relation प्रत्येक संबंध के लिए स्कीमा
B
The integrity constraints अखंडता बाधाएँ
C
The operations on the tuples टुपल्स पर संचालन
D
The security and authorization information for each relation प्रत्येक संबंध के लिए सुरक्षा और प्राधिकरण जानकारी
✅ Correct Answer:
8
EN + हिं
GB Which of the following statement is true?
IN निम्नलिखित में से कौन सा कथन सत्य है?
A
DELETE does not free the space containing the table and TRUNCATE free the space containing the table DELETE से तालिका वाला स्थान खाली नहीं होता है और TRUNCATE से तालिका वाला स्थान खाली नहीं होता है
B
Both DELETE and TRUNCATE free the space containing the table DELETE और TRUNCATE दोनों ही तालिका वाले स्थान को खाली कर देते हैं
C
Both DELETE and TRUNCATE does not free the space containing the table DELETE और TRUNCATE दोनों ही तालिका वाले स्थान को खाली नहीं करते हैं
D
DELETE free the space containing the table and TRUNCATE does not free the space containing the table DELETE से तालिका वाला स्थान खाली हो जाता है और TRUNCATE से तालिका वाला स्थान खाली नहीं होता है
✅ Correct Answer:
9
EN + हिं
GB Find the name of those cities with temperature and condition whose condition is either sunny or cloudy but temperature must be greater than 70.
IN तापमान और स्थिति वाले उन शहरों के नाम खोजें जिनकी स्थिति या तो धूप या बादल है लेकिन तापमान 70 से अधिक होना चाहिए।
A
SELECT city, temperature, condition FROM weather WHERE condition = ‘sunny’ AND condition = ‘cloudy’ OR temperature > 70 मौसम से शहर, तापमान, स्थिति चुनें जहां स्थिति = 'धूप' और स्थिति = 'बादल' या तापमान > 70
B
SELECT city, temperature, condition FROM weather WHERE condition = ‘sunny’ OR condition = ‘cloudy’ OR temperature > 70 मौसम से शहर, तापमान, स्थिति चुनें जहां स्थिति = 'धूप' या स्थिति = 'बादल' या तापमान > 70
C
SELECT city, temperature, condition FROM weather WHERE condition = ‘sunny’ OR condition = ‘cloudy’ AND temperature > 70 मौसम से शहर, तापमान, स्थिति चुनें जहां स्थिति = 'धूप' या स्थिति = 'बादल' और तापमान > 70
D
SELECT city, temperature, condition FROM weather WHERE condition = ‘sunny’ AND condition = ‘cloudy’ AND temperature > 70 मौसम से शहर, तापमान, स्थिति चुनें जहां स्थिति = 'धूप' और स्थिति = 'बादल' और तापमान > 70
✅ Correct Answer:
10
EN + हिं
GB You can delete a view with ___________ command.
IN आप ___________ कमांड से किसी दृश्य को हटा सकते हैं।
A
DROP VIEW ड्रॉप दृश्य
B
DELETE VIEW दृश्य हटाएँ
C
REMOVE VIEW दृश्य हटाएँ
D
TRUNCATE VIEW काट-छाँट दृश्य
✅ Correct Answer:
11
EN + हिं
GB Consider a relation R(A,B,C,D,E) with the following functional dependencies:
ABC -> DE and
D -> AB The number of superkeys of R is:
IN निम्नलिखित कार्यात्मक निर्भरताओं के साथ एक संबंध आर (ए, बी, सी, डी, ई) पर विचार करें: एबीसी -> डीई और डी -> एबी आर की सुपरकी की संख्या है:
A
2 2
B
7 7
C
10 10
D
12 12
✅ Correct Answer:
12
EN + हिं
GB Which of the following is not a level of data abstraction?
IN निम्नलिखित में से कौन सा डेटा अमूर्तन का स्तर नहीं है?
A
view level देखने का स्तर
B
physical level भौतिक स्तर
C
logical level तार्किक स्तर
D
critical level महत्वपूर्ण स्तर
✅ Correct Answer:
13
EN + हिं
GB Which of the following is not Unary operation?
IN निम्नलिखित में से कौन सा यूनरी ऑपरेशन नहीं है?
A
rename नाम बदलने
B
union मिलन
C
select चुनना
D
project परियोजना
✅ Correct Answer:
14
EN + हिं
GB In DBMS, FD stands for _______
IN DBMS में, FD का अर्थ _______ है
A
facilitate data डेटा को सुविधाजनक बनाना
B
functional data कार्यात्मक डेटा
C
facilitate dependency निर्भरता को सुविधाजनक बनाना
D
functional dependency कार्यात्मक निर्भरता
✅ Correct Answer:
15
EN + हिं
GB One data dictionery software package is called
IN एक डेटा डिक्शनरी सॉफ्टवेयर पैकेज को कहा जाता है
A
db/dc dictionary डीबी/डीसी शब्दकोश
B
datapac datapac
C
total कुल
D
access पहुँच
✅ Correct Answer:
1–15 of 130