DBMS — MCQ Practice

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

📚 136 Questions 🌐 Hindi + English ✅ Free
भाषा / Language:
136 questions
1
EN + हिं
GB Data Redundancy increases the cost of storing and retrieving data.
IN डेटा रिडंडेंसी से डेटा संग्रहीत करने और पुनर्प्राप्त करने की लागत बढ़ जाती है।
A
FALSE असत्य
B
TRUE सत्य
C
none कोई नहीं
D
all सभी
✅ Correct Answer:
2
EN + हिं
GB Thus a _______ of course data gives the values of all attributes, such as title and department, of all courses at a particular point in time.
IN इस प्रकार पाठ्यक्रम डेटा का _______ एक विशेष समय पर सभी पाठ्यक्रमों की सभी विशेषताओं, जैसे शीर्षक और विभाग, का मान देता है।
A
Instance उदाहरण
B
Snapshot स्नैपशॉट
C
Both Instance and Snapshot इंस्टेंस और स्नैपशॉट दोनों
D
All of the mentioned सभी का उल्लेख किया गया है
✅ Correct Answer:
3
EN + हिं
GB Which of the following is not true of the traditional approach to information processing
IN निम्नलिखित में से कौन सा सूचना प्रसंस्करण के पारंपरिक दृष्टिकोण के लिए सत्य नहीं है
A
There is common sharing of data among the various applications विभिन्न अनुप्रयोगों के बीच डेटा का साझाकरण आम है
B
It is file oriented यह फ़ाइल उन्मुख है
C
Programs are dependent on the file प्रोग्राम फ़ाइल पर निर्भर होते हैं
D
It is inflexible यह अनम्य है
✅ Correct Answer:
4
EN + हिं
GB The database design that consists of multiple tables that are linked together through matching data stored in each table is called
IN डेटाबेस डिज़ाइन जिसमें कई तालिकाएँ होती हैं जो प्रत्येक तालिका में संग्रहीत मिलान डेटा के माध्यम से एक साथ जुड़ी होती हैं, कहलाती है
A
Hierarchical database पदानुक्रमित डेटाबेस
B
Network database नेटवर्क डेटाबेस
C
Object oriented database ऑब्जेक्ट ओरिएंटेड डेटाबेस
D
Relational database संबंधपरक डेटाबेस
✅ Correct Answer:
5
EN + हिं
GB If the state of the database no longer reflects a real state of the world that the database is supposed to capture, then such a state is called
IN यदि डेटाबेस की स्थिति अब दुनिया की वास्तविक स्थिति को प्रतिबिंबित नहीं करती है जिसे डेटाबेस को कैप्चर करना है, तो ऐसी स्थिति को कहा जाता है
A
Consistent state सुसंगत अवस्था
B
Parallel state समांतर अवस्था
C
Durable state टिकाऊ अवस्था
D
Inconsistent state असंगत अवस्था
✅ Correct Answer:
6
EN + हिं
GB Database __________ which is the logical design of the database, and the database _______ which is a snapshot of the data in the database at a given instant in time.
IN डेटाबेस __________ जो डेटाबेस का तार्किक डिज़ाइन है, और डेटाबेस _______ जो किसी दिए गए समय में डेटाबेस में डेटा का एक स्नैपशॉट है।
A
Instance, Schema उदाहरण, स्कीमा
B
Relation, Schema संबंध, स्कीमा
C
Relation, Domain संबंध, डोमेन
D
Schema, Instance स्कीमा, उदाहरण
✅ Correct Answer:
7
EN + हिं
GB If a1, a2, a3 are attributes in a relation and S is another relation, which of the following is an incorrect specification of an integrity constraint?
IN यदि a1, a2, a3 एक संबंध में विशेषताएँ हैं और S एक अन्य संबंध है, तो निम्नलिखित में से कौन सा एक अखंडता बाधा का गलत विनिर्देश है?
A
primary key(a1, a2, a3) प्राथमिक कुंजी(a1, a2, a3)
B
primary key(a1) प्राथमिक कुंजी(a1)
C
foreign key(a1, a2) references S विदेशी कुंजी (ए1, ए2) संदर्भ एस
D
foreign key(a1, a2) विदेशी कुंजी(a1, a2)
✅ Correct Answer:
8
EN + हिं
GB With SQL, how do you select all the records from a table named “Persons” where the value of the column “FirstName” ends with an “a”?
IN एसक्यूएल के साथ, आप "व्यक्ति" नामक तालिका से सभी रिकॉर्ड कैसे चुनते हैं जहां कॉलम "फर्स्टनाम" का मान "ए" के साथ समाप्त होता है?
A
SELECT * FROM Persons WHERE FirstName=’a’ उन व्यक्तियों से चयन करें जहां प्रथम नाम='ए'
B
SELECT * FROM Persons WHERE FirstName LIKE ‘a%’ उन व्यक्तियों में से चुनें जिनका पहला नाम 'a%' जैसा है
C
SELECT * FROM Persons WHERE FirstName LIKE ‘%a’ * उन व्यक्तियों में से चुनें जिनका पहला नाम '%a' जैसा है
D
SELECT * FROM Persons WHERE FirstName=’%a%’ * उन व्यक्तियों से चुनें जहां प्रथम नाम='%a%'
✅ Correct Answer:
9
EN + हिं
GB The command to remove rows from a table ‘CUSTOMER’ is __________________
IN 'ग्राहक' तालिका से पंक्तियों को हटाने का आदेश __________________ है
A
DROP FROM CUSTOMER ग्राहक से ड्रॉप
B
UPDATE FROM CUSTOMER ग्राहक से अद्यतन
C
REMOVE FROM CUSTOMER ग्राहक से हटाएँ
D
DELETE FROM CUSTOMER WHERE ग्राहक से हटाएँ जहाँ
✅ Correct Answer:
10
EN + हिं
GB ___________ is stored only in the Master database.
IN ___________ केवल मास्टर डेटाबेस में संग्रहीत है।
A
Database-scoped Dynamic Management View डेटाबेस-स्कोप्ड डायनेमिक प्रबंधन दृश्य
B
Complex View जटिल दृश्य
C
Catalog View कैटलॉग दृश्य
D
None of the mentioned उल्लेखित कोई भी नहीं
✅ Correct Answer:
11
EN + हिं
GB Which of the following is not a key?
IN निम्नलिखित में से कौन सी कुंजी नहीं है?
A
A
B
E
C
B, C बी, सी
D
D डी
✅ Correct Answer:
12
EN + हिं
GB Which of the following is not a Storage Manager Component?
IN निम्नलिखित में से कौन सा स्टोरेज मैनेजर घटक नहीं है?
A
transaction manager लेन-देन प्रबंधक
B
logical manager तार्किक प्रबंधक
C
file manager फ़ाइल मैनेजर
D
buffer manager बफ़र प्रबंधक
✅ Correct Answer:
13
EN + हिं
GB The Primary key must be
IN प्राथमिक कुंजी होनी चाहिए
A
non null गैर शून्य
B
unique अद्वितीय
C
option a or b विकल्प ए या बी
D
option a and b विकल्प ए और बी
✅ Correct Answer:
14
EN + हिं
GB Which of the following is the structure of the Database?
IN निम्नलिखित में से कौन डेटाबेस की संरचना है?
A
table मेज़
B
none of these इनमें से कोई नहीं
C
schema योजना
D
relation रिश्ता
✅ Correct Answer:
15
EN + हिं
GB What is the language used by most of the DBMSs for helping their users to access data?
IN अधिकांश DBMS अपने उपयोगकर्ताओं को डेटा तक पहुँचने में मदद करने के लिए किस भाषा का उपयोग करते हैं?
A
high level language उच्च स्तरीय भाषा
B
4gl 4 ग्रा
C
query language पूछताछ भाषा
D
sql एसक्यूएल
✅ Correct Answer:
1–15 of 136