Module 8 : Database Concepts, Queries & Joints and Functions

Question 1What is the need for our query to execute successfully on an existing view? | विद्यमान दृश्य पर हमारी क्वेरी को सफलतापूर्वक निष्पादित करने की क्या आवश्यकता है?
Question 2A domain is atomic if elements of the domain are considered to be ____________ units. | एक डोमेन परमाणु है यदि डोमेन के तत्वों को ____________ इकाइयाँ माना जाता है।
Question 3Which of the following are TCL commands? | निम्नलिखित में से कौन से TCL कमांड हैं?
Question 4What is full form of DML? | DML का पूर्ण रूप क्या है?
Question 5Which of the following systems is responsible for ensuring durability? | स्थायित्व सुनिश्चित करने के लिए निम्नलिखित में से कौन सी प्रणाली जिम्मेदार है?
Question 6Execution of translation in isolation preserves the _________ of a database. | आइसोलेशन में अनुवाद का निष्पादन डेटाबेस के _________ को संरक्षित करता है।
Question 7Create procedure dept_count proc(in dept name varchar(20),out d_count integer) begin select count(*) into d_count from instructor where instructor.dept name= dept count proc.dept name end Which of the following is used to call the procedure given above? | Create procedure dept_count proc(in dept name varchar(20),out d_count integer) begin select count(*) into d_count from instructor where instructor.dept name= dept count proc.dept name end ऊपर दी गई प्रक्रिया को कॉल करने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
Question 8What is full form of DDL? | DDL का पूर्ण रूप क्या है?
Question 9What is the best way to represent the attributes in a large database? | किसी बड़े डेटाबेस में विशेषताओं को प्रस्तुत करने का सबसे अच्छा तरीका क्या है?
Question 10The tuples of the relations can be of ________ order. | संबंधों के टुपल्स ________ क्रम के हो सकते हैं।
Question 11What does the following code snippet do? ALTER TABLE STUDENT ADD(ADDRESS VARCHAR2(20)); | निम्नलिखित कोड स्निपेट क्या करता है? ALTER TABLE STUDENT ADD(ADDRESS VARCHAR2(20));
Question 12Which of the following is not a type of database? | निम्नलिखित में से कौन सा डेटाबेस का एक प्रकार नहीं है?
Question 13Collections of operations that form a single logical unit of work are called __________. | कार्य की सिगल ल़ॉजिकल यूनिट बनाने वाले संचालन के संग्रह को __________ कहा जाता है।
Question 14In the database design, to characterize fully the data needs of the prospective database user in the ________ | डेटाबेस डिजाइन में, ________ में संभावित डेटाबेस यूज़र की डेटा आवश्यकताओं को पूरी तरह से चिह्नित करने के लिए।
Question 15Which of the following is used to input the entry and give the result in a variable in a procedure? | किसी प्रक्रिया में प्रविष्टि को इनपुट करने और एक वेरिएबल में परिणाम देने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
Question 16The term attribute refers to a ___________ of a table. | विशेषता शब्द किसी टेबल के ___________ को संदर्भित करता है।
Question 17What does the following statement in SQL do? DROP TABLE student; | SQL में निम्नलिखित कथन क्या करता है? DROP TABLE student;
Question 18Create function dept count(dept_name varchar(20)) begin declare d_count integer; select count(*) into d_count from instructor where instructor.dept_name= dept_name return d_count; end Find the error in the above statement. | फ़ंक्शन विभाग बनाएँ count(dept_name varchar(20)) begin declare d_count integer; select count(*) into d_count from instructor where instructor.dept_name= dept_name return d_count; end उपरोक्त कथन में त्रुटि ज्ञात कीजिए।
Question 19Which of the following is/are TRUE about DDL command? | DDL कमांड के बारे में निम्नलिखित में से कौन सा TRUE है?
Question 20Database __________ 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. | डेटाबेस __________ जो डेटाबेस का लॉजिकल डिज़ाइन है, और डेटाबेस _______ जो किसी दिए गए समय में डेटाबेस में डेटा का एक स्नैपशॉट है।
Question 21Declare out of classroom seats condition DECLARE exit handler FOR OUT OF classroom seats BEGIN SEQUENCE OF statements END The above statements are used for___ | Declare out of classroom seats condition DECLARE exit handler FOR OUT OF classroom seats BEGIN SEQUENCE OF statements END उपरोक्त कथनों का उपयोग ___ के लिए किया जाता है।
Question 22The scheme that controls the interaction between executing transaction is called as _____. | वह योजना जो लेनदेन निष्पादित करने के बीच परस्पर क्रिया को नियंत्रित करती है, उसे _____ कहा जाता है।
Question 23For each attribute of a relation, there is a set of permitted values, called the ________ of that attribute. | किसी संबंध की प्रत्येक विशेषता के लिए, अनुमत मानों का एक सेट होता है, जिसे उस विशेषता का ________ कहा जाता है।
Question 24Which of the following is the correct format for if statement? | निम्नलिखित में से कौन सा if स्टेटमेंट के लिए सही प्रारूप है?
Question 25The format for compound statement is________. | कंपाउंड स्टेटमेंट का फॉर्मेट ________ है।
Question 26Representations such as the in the dept year relation, with one column for each value of an attribute, are called _______ they are widely used in spreadsheets and reports and in data analysis tools. | किसी विशेषता के प्रत्येक मान के लिए एक कॉलम वाले विभाग वर्ष संबंध जैसे अभ्यावेदन को _______ कहा जाता है, इनका व्यापक रूप से स्प्रेडशीट और रिपोर्ट और डेटा विश्लेषण टूल में उपयोग किया जाता है।
Question 27To obtain the structure of an Oracle table, the command to use is______. | Oracle टेबल की संरचना प्राप्त करने के लिए, उपयोग करने योग्य कमांड ______ है।