3581 Database Management Systems • SQL Statements SQL में तालिका से डेटा प्राप्त करने के लिए कौन-सा कथन उपयोग होता है? Which SQL statement is used to retrieve data from a table? A. UPDATE UPDATE B. INSERT INSERT C. SELECT SELECT D. DELETE DELETE उत्तर और व्याख्या देखें Show answer and explanation सही उत्तर: C Correct Answer: C SELECT डेटाबेस से डेटा प्राप्त करता है। चुने गए स्तंभों और शर्तों के आधार पर परिणाम बनाया जा सकता है। SELECT retrieves data from a database. Results can be based on selected columns and specified conditions.
3582 Database Management Systems • SQL Statements SQL में नया रिकॉर्ड जोड़ने के लिए कौन-सा कथन उपयोग होता है? Which SQL statement is used to add a new record? A. ALTER TABLE ALTER TABLE B. UPDATE UPDATE C. SELECT SELECT D. INSERT INTO INSERT INTO उत्तर और व्याख्या देखें Show answer and explanation सही उत्तर: D Correct Answer: D INSERT INTO तालिका में नई पंक्ति जोड़ता है। UPDATE मौजूदा पंक्ति के मान बदलता है। INSERT INTO adds a new row to a table. UPDATE changes values in existing rows.
3583 Database Management Systems • SQL Statements SQL में मौजूदा रिकॉर्ड के मान बदलने के लिए कौन-सा कथन उपयोग होता है? Which SQL statement is used to change values in an existing record? A. UPDATE UPDATE B. CREATE TABLE CREATE TABLE C. INSERT INTO INSERT INTO D. DROP TABLE DROP TABLE उत्तर और व्याख्या देखें Show answer and explanation सही उत्तर: A Correct Answer: A UPDATE मौजूदा रिकॉर्ड बदलता है। इच्छित पंक्तियाँ चुनने के लिए सामान्यतः WHERE लगाया जाता है; उसके बिना सभी पंक्तियाँ प्रभावित हो सकती हैं। UPDATE modifies existing records. WHERE is generally used to target intended rows; without it, all rows can be affected.
3584 Database Management Systems • Filtering Data SQL में SELECT द्वारा केवल निर्धारित शर्त से मेल खाने वाली पंक्तियाँ चुनने के लिए कौन-सा क्लॉज उपयोग होता है? Which clause filters rows returned by an SQL SELECT statement according to a specified condition? A. ORDER BY ORDER BY B. GROUP BY GROUP BY C. WHERE WHERE D. FROM FROM उत्तर और व्याख्या देखें Show answer and explanation सही उत्तर: C Correct Answer: C WHERE पंक्तियों पर शर्त लागू करता है। उदाहरणतः Marks >= 40 शर्त कम से कम 40 अंक वाले रिकॉर्ड चुनती है। WHERE applies a condition to rows. For example, Marks >= 40 selects records with marks of at least 40.
3585 Database Management Systems • Sorting Data SQL में परिणाम को किसी स्तंभ के अनुसार क्रमबद्ध करने के लिए कौन-सा क्लॉज उपयोग होता है? Which SQL clause sorts query results according to a column? A. WHERE WHERE B. ORDER BY ORDER BY C. GROUP BY GROUP BY D. HAVING HAVING उत्तर और व्याख्या देखें Show answer and explanation सही उत्तर: B Correct Answer: B ORDER BY परिणामों को क्रमबद्ध करता है। ASC आरोही और DESC अवरोही क्रम दर्शाते हैं। ORDER BY sorts query results. ASC specifies ascending order and DESC specifies descending order.
3586 Database Management Systems • Aggregate Functions SQL में COUNT(*) क्या गिनता है? What does COUNT(*) count in SQL? A. केवल पाठ वाले सेल Only cells containing text B. केवल अद्वितीय स्तंभ Only unique columns C. केवल गैर-NULL संख्यात्मक मान Only non-NULL numeric values D. संबंधित परिणाम या समूह की सभी पंक्तियाँ All rows in the relevant result or group उत्तर और व्याख्या देखें Show answer and explanation सही उत्तर: D Correct Answer: D COUNT(*) पंक्तियाँ गिनता है, भले ही उनमें किसी स्तंभ का मान NULL हो। COUNT(ColumnName) उस स्तंभ के गैर-NULL मान गिनता है। COUNT(*) counts rows even when a column contains NULL. COUNT(ColumnName) counts non-NULL values in that column.
3587 Database Management Systems • NULL Values SQL में NULL सामान्यतः क्या दर्शाता है? What does NULL generally represent in SQL? A. अज्ञात या अनुपलब्ध मान An unknown or missing value B. हमेशा संख्या शून्य Always the number zero C. हमेशा खाली पाठ Always an empty string D. हमेशा असत्य Always false उत्तर और व्याख्या देखें Show answer and explanation सही उत्तर: A Correct Answer: A NULL अज्ञात या अनुपलब्ध मान का संकेत है। यह शून्य या खाली स्ट्रिंग के समान नहीं है; इसकी जाँच IS NULL से की जाती है। NULL indicates an unknown or missing value. It is not the same as zero or an empty string; IS NULL is used to test for it.
3588 Database Management Systems • Table Joins SQL में INNER JOIN का सामान्य परिणाम क्या होता है? What does an INNER JOIN generally return in SQL? A. केवल पहली तालिका की सभी पंक्तियाँ All rows of only the first table B. केवल दूसरी तालिका की सभी पंक्तियाँ All rows of only the second table C. दोनों तालिकाओं में JOIN शर्त से मेल खाने वाली पंक्तियों के संयोजन Combinations of rows from both tables that satisfy the join condition D. दोनों तालिकाओं की केवल संरचना Only the structures of both tables उत्तर और व्याख्या देखें Show answer and explanation सही उत्तर: C Correct Answer: C INNER JOIN उन पंक्तियों को जोड़ता है जो JOIN शर्त से मेल खाती हैं। जिन पंक्तियों का कोई मिलान नहीं होता, वे सामान्यतः शामिल नहीं होतीं। INNER JOIN combines rows that satisfy the join condition. Rows without a match are generally excluded.
3589 Database Management Systems • Database Indexes डेटाबेस इंडेक्स का प्रमुख उद्देश्य क्या है? What is the main purpose of a database index? A. हर रिकॉर्ड की सामग्री बदलना To change the contents of every record B. उपयुक्त क्वेरी में डेटा खोजने की गति बढ़ाना To improve data retrieval speed for suitable queries C. सभी डुप्लिकेट स्वतः हटाना To automatically remove every duplicate D. डेटाबेस का बैकअप बनाना To create a database backup उत्तर और व्याख्या देखें Show answer and explanation सही उत्तर: B Correct Answer: B इंडेक्स संबंधित डेटा जल्दी खोजने में सहायता कर सकता है। इसके लिए अतिरिक्त संग्रहण और डेटा बदलते समय रखरखाव की आवश्यकता होती है। An index can help locate relevant data more quickly. It requires additional storage and maintenance when data changes.
3590 Database Management Systems • Database Administration DBA का सही पूर्ण रूप क्या है? What is the correct expansion of DBA? A. Data Binary Access Data Binary Access B. Digital Backup Application Digital Backup Application C. Database Basic Algorithm Database Basic Algorithm D. Database Administrator Database Administrator उत्तर और व्याख्या देखें Show answer and explanation सही उत्तर: D Correct Answer: D DBA डेटाबेस के प्रशासन से जुड़ा व्यक्ति या भूमिका है। कार्यों में उपयोगकर्ता पहुँच, बैकअप, पुनर्प्राप्ति और प्रदर्शन का प्रबंधन शामिल हो सकता है। A DBA is a person or role responsible for database administration. Duties can include managing access, backups, recovery and performance.