CBSE Class 12 Computer Science Sql Worksheet Set A

Read and download free pdf of CBSE Class 12 Computer Science Sql Worksheet Set A. Download printable Computer Science Class 12 Worksheets in pdf format, CBSE Class 12 Computer Science Sql Worksheet has been prepared as per the latest syllabus and exam pattern issued by CBSE, NCERT and KVS. Also download free pdf Computer Science Class 12 Assignments and practice them daily to get better marks in tests and exams for Class 12. Free chapter wise worksheets with answers have been designed by Class 12 teachers as per latest examination pattern

Sql Computer Science Worksheet for Class 12

Class 12 Computer Science students should refer to the following printable worksheet in Pdf in Class 12. This test paper with questions and solutions for Class 12 Computer Science will be very useful for tests and exams and help you to score better marks

Class 12 Computer Science Sql Worksheet Pdf

 

STRUCTURED QUERY LANGUAGE(SQL)

Q. Create the table TEACHER given below:

CBSE Class 12 Computer Science Sql Worksheet Set A 1

Write commands in SQL for the questions (1) to (34) given below.
 
1. To create the table TEACHER with the constraints as mentioned above.
2. To insert the first two rows as shown in the above table.
3. To display the structure of the table.
4. To modify the name field with 25 characters.
5. To display the entire information of all teachers.
6. To display all information about teachers of ‘PGT’ category.
7. To list the names of female teachers of Hindi department.
8. To list names, departments and date of hiring of all the teachers in ascending order of hiredate.
9. Display the names of all teachers in descending order of salary.
10. To display the details of all teachers with hiredate > ‘1990-01-01’.
11. To display name and salary of those teachers who are not in English , Math or Science department.
12. To display list of teachers whose category is NULL.
13. To display name, department and hiredate of those teachers who are not ‘PGT’.
14. To display name and gender of those teachers who are in English, Hindi or Art department.
15. To display list of teachers of English department or salary > 30000.
16. To display details of teachers where second alphabet is ‘a’.
17. To display names of teachers where first alphabet is ‘S’.
18. To display names with exactly 12 characters(including space).
19. To display name which is ending with letter ‘a’.
20. To display the names of all departments (non-redundant).
21. To display name and salary of teachers having salary in the range of 20000 and 40000.
22. To find the minimum and maximum salary of teachers.
23. To display the name and salary of the teacher having maximum salary.
24. To count number of teachers in Hindi department.
25. To find the average salary.
26. To find the total salary of all teachers.
27. To count teachers department wise.
28. To display the department name with 2 or more teachers.
29. To increase the salary of Nandita Arora by 5000
30. To display teachers name with the text is in the department of department name.
31. To add one more column ‘Address’ with 30 characters to table teacher.
32. To delete the row with id 7.
33. To delete all rows of the teacher table.
34. To drop the table teacher.
 
Interface Python with SQL database

I. Multiple choice Questions:

Question. A _____ is a property of the entire relation, rather than of the individual tuples in which each tuple is unique.
a) Rows
b) Key
c) Attribute
d) Fields
Answer. B

Question. Which of the following is not a legal method for fetching records from database.
a) fetchone()
b) fetchtwo()
c) fetchall()
d) fetchmany()
Answer. B

Question. To run an sql query from within python you may use cursor.------------- method.
a) query()
b) execute()
c) commit()
d) final()
Answer. B

Question. A database …………..controls the connection to an actual database , established in program.
a) database object
b) connection object
c) fetch object
d) query object
Answer. B

Question. Which one of the following attribute can be taken as a primary key?
a) Name
b) Street
c) Id
d) Department
Answer. C

Question. DBMS stands for_____________
a) Data Base Management Software
b) Data Base Maintenance System
c) Data Basic Management System
d) Data Base management system
Answer. D

Question. In RDBMS, R stands for_________
a) Relational
b) Rotational
c) Rational
d) None of the above
Answer. A

Question. A relational database consists of a collection of ..............
a) Fields
b) Records
c) Keys
d) Tables
Answer. D

Question. A row in a database.
a) Field
b) Record
c) Key
d) Table
Answer. B

Question. A _________ integrity constraint requires that the values appearing in specified attributes of any tuple in the referencing relation also appear in specified attributes of at least one tuple in the referenced relation.
a) Referencing
b)Referential
c)Primary
d)Specific
Answer. B

Question. Referential Integrity is a rule that ensures ____________ between records in related tables are valid.
a) Links
b) difference
c) relationship
d) similarity
Answer. C

Question. Mismatched redundant copies of data is known as data ............
a) Dependence
b) Inconsistency
c) Isolation
d) Redundancy
Answer. B


Question. Fill in the blanks:

1) ___________ helps in efficient retrieval, inserting and deleting of data.
2) ___________ is a software for creating and managing databases.
3) _________ means that data is accurate and consistent in the database.
4) ______________- ensure that the database properly changes states upon a successfully committed transaction.
5) RDBMS stands for __________.
6) In RDBMS a database is considered as a collection of ___________
7) Collection of rows and columns are called as ______________
8) Record is also called as a ____________
9) The group of one or more columns used to uniquely identify each row of a relation is called________
10) __________ is data about data.
11) A _________ is a request to a database for obtaining information in a desired way.
12) ___________ is collection of values from which the value is derived for a column.
13) _______ are the columns of a table that points to the primary key of another table.
Answer. 
1 Database
2 DBMS
3 Data integrity
4 Consistency
5 Relational Database Management System
6 Interrelated data
7 Table
8 Tuple
9 Primary key
10 Meta – data
11 Query
12 Domain
13 Foreign key


Very Short Answer Questions:

Question. What is meant by a database?
Answer. A database is an organized collection of structured information, or inter-related data, typically stored in a computer system.

Question. What is meant by database schema?
Answer. Database schema is also called the visual or logical architecture as it tells us how the data are organized in a database.

Question. What is meant by data constraint?
Answer. Restrictions or limitations are put on the type of data that can be inserted in one or more columns of a table to ensure accuracy and reliability of data in the database.

Question. What is meant by relation?
Answer. A relation is a named, two dimensional table storing logically related data.

Please click on below link to download CBSE Class 12 Computer Science Sql Worksheet Set A

Practice Worksheets Class 12 Computer Science
CBSE Class 12 Computer Science All Chapters Worksheet
CBSE Class 12 Computer Science Arrays Worksheet
CBSE Class 12 Computer Science Binary Files Worksheet
CBSE Class 12 Computer Science Boolean Algebra Worksheet
CBSE Class 12 Computer Science C++ Worksheet Set A
CBSE Class 12 Computer Science C++ Worksheet Set B
CBSE Class 12 Computer Science Classes And Objects Worksheet
CBSE Class 12 Computer Science Communication Technology Worksheet
CBSE Class 12 Computer Science Computer Networks Worksheet Set A
CBSE Class 12 Computer Science Computer Networks Worksheet Set B
CBSE Class 12 Computer Science Computer Networks Worksheet Set C
CBSE Class 12 Computer Science Constructor And Destructor Worksheet Set A
CBSE Class 12 Computer Science Constructor And Destructor Worksheet Set A
CBSE Class 12 Computer Science Constructor And Destructor Worksheet Set B
CBSE Class 12 Computer Science Data Base Concept Worksheet
CBSE Class 12 Computer Science Data File Handling Worksheet
CBSE Class 12 Computer Science Data Management Worksheet Set A
CBSE Class 12 Computer Science Data Management Worksheet Set B
CBSE Class 12 Computer Science Data Management Worksheet Set C
CBSE Class 12 Computer Science Data Management Worksheet Set D
CBSE Class 12 Computer Science Data Management Worksheet Set E
CBSE Class 12 Computer Science File Handling Worksheet Set A
CBSE Class 12 Computer Science File Handling Worksheet Set B
CBSE Class 12 Computer Science File Handling Worksheet Set C
CBSE Class 12 Computer Science Function In Python Program Worksheet
CBSE Class 12 Computer Science Functions Worksheet Set A
CBSE Class 12 Computer Science Functions Worksheet Set B
CBSE Class 12 Computer Science Header Files Worksheet
CBSE Class 12 Computer Science Implementation of Queue Worksheet Set A
CBSE Class 12 Computer Science Implementation of Queue Worksheet Set B
CBSE Class 12 Computer Science Implementation of Stack Worksheet
CBSE Class 12 Computer Science Inheritance Worksheet Set A
CBSE Class 12 Computer Science Inheritance Worksheet Set B
CBSE Class 12 Computer Science Pointers Worksheet
CBSE Class 12 Computer Science Programming and Computational Thinking Worksheet Set A
CBSE Class 12 Computer Science Programming and Computational Thinking Worksheet Set B
CBSE Class 12 Computer Science Programming and Computational Thinking Worksheet Set C
CBSE Class 12 Computer Science Programming and Computational Thinking Worksheet Set D
CBSE Class 12 Computer Science Programming and Computational Thinking Worksheet Set E
CBSE Class 12 Computer Science Programming and Computational Thinking Worksheet Set F
CBSE Class 12 Computer Science Python Worksheet
CBSE Class 12 Computer Science Recursion Worksheet
CBSE Class 12 Computer Science Revision Worksheet
CBSE Class 12 Computer Science Society Law and Ethics Worksheet Set A
CBSE Class 12 Computer Science Society Law and Ethics Worksheet Set B
CBSE Class 12 Computer Science Society Law and Ethics Worksheet Set C
CBSE Class 12 Computer Science Society Law and Ethics Worksheet Set D
CBSE Class 12 Computer Science Society Law and Ethics Worksheet Set E
CBSE Class 12 Computer Science Sql Worksheet Set A
CBSE Class 12 Computer Science Sql Worksheet Set B
CBSE Class 12 Computer Science Using Python Libraries Worksheet
CBSE Class 12 Computer Science Worksheet Set A Solved
CBSE Class 12 Computer Science Worksheet Set B Solved
CBSE Class 12 Computer Science Worksheet Set C Solved
CBSE Class 12 Computer Science Worksheet Set D Solved
CBSE Class 12 Computer Science Worksheet Set E Solved
CBSE Class 12 Computer Science Worksheet Set F Solved

More Study Material

CBSE Class 12 Computer Science Sql Worksheet

The above practice worksheet for Sql has been designed as per the current syllabus for Class 12 Computer Science released by CBSE. Students studying in Class 12 can easily download in Pdf format and practice the questions and answers given in the above practice worksheet for Class 12 Computer Science on a daily basis. All the latest practice worksheets with solutions have been developed for Computer Science by referring to the most important and regularly asked topics that the students should learn and practice to get better scores in their examinations. Studiestoday is the best portal for Printable Worksheets for Class 12 Computer Science students to get all the latest study material free of cost.

Worksheet for Computer Science CBSE Class 12 Sql

Teachers of studiestoday have referred to the NCERT book for Class 12 Computer Science to develop the Computer Science Class 12 worksheet. If you download the practice worksheet for the above chapter daily, you will get better scores in Class 12 exams this year as you will have stronger concepts. Daily questions practice of Computer Science printable worksheet and its study material will help students to have a stronger understanding of all concepts and also make them experts on all scoring topics. You can easily download and save all revision Worksheets for Class 12 Computer Science also from www.studiestoday.com without paying anything in Pdf format. After solving the questions given in the practice sheet which have been developed as per the latest course books also refer to the NCERT solutions for Class 12 Computer Science designed by our teachers

Sql worksheet Computer Science CBSE Class 12

All practice paper sheet given above for Class 12 Computer Science have been made as per the latest syllabus and books issued for the current academic year. The students of Class 12 can be assured that the answers have been also provided by our teachers for all test paper of Computer Science so that you are able to solve the problems and then compare your answers with the solutions provided by us. We have also provided a lot of MCQ questions for Class 12 Computer Science in the worksheet so that you can solve questions relating to all topics given in each chapter. All study material for Class 12 Computer Science students have been given on studiestoday.

Sql CBSE Class 12 Computer Science Worksheet

Regular printable worksheet practice helps to gain more practice in solving questions to obtain a more comprehensive understanding of Sql concepts. Practice worksheets play an important role in developing an understanding of Sql in CBSE Class 12. Students can download and save or print all the printable worksheets, assignments, and practice sheets of the above chapter in Class 12 Computer Science in Pdf format from studiestoday. You can print or read them online on your computer or mobile or any other device. After solving these you should also refer to Class 12 Computer Science MCQ Test for the same chapter.

Worksheet for CBSE Computer Science Class 12 Sql

CBSE Class 12 Computer Science best textbooks have been used for writing the problems given in the above worksheet. If you have tests coming up then you should revise all concepts relating to Sql and then take out a print of the above practice sheet and attempt all problems. We have also provided a lot of other Worksheets for Class 12 Computer Science which you can use to further make yourself better in Computer Science

Where can I download latest CBSE Practice worksheets for Class 12 Computer Science Sql

You can download the CBSE Practice worksheets for Class 12 Computer Science Sql for the latest session from StudiesToday.com

Can I download the Practice worksheets of Class 12 Computer Science Sql in Pdf

Yes, you can click on the links above and download chapter-wise Practice worksheets in PDFs for Class 12 for Computer Science Sql

Are the Class 12 Computer Science Sql Practice worksheets available for the latest session

Yes, the Practice worksheets issued for Sql Class 12 Computer Science have been made available here for the latest academic session

How can I download the Sql Class 12 Computer Science Practice worksheets

You can easily access the links above and download the Class 12 Practice worksheets Computer Science for Sql

Is there any charge for the Practice worksheets for Class 12 Computer Science Sql

There is no charge for the Practice worksheets for Class 12 CBSE Computer Science Sql you can download everything free

How can I improve my scores by solving questions given in Practice worksheets in Sql Class 12 Computer Science

Regular revision of practice worksheets given on studiestoday for Class 12 subject Computer Science Sql can help you to score better marks in exams

Are there any websites that offer free Practice test papers for Class 12 Computer Science Sql

Yes, studiestoday.com provides all the latest Class 12 Computer Science Sql test practice sheets with answers based on the latest books for the current academic session

Can test sheet papers for Sql Class 12 Computer Science be accessed on mobile devices

Yes, studiestoday provides worksheets in Pdf for Sql Class 12 Computer Science in mobile-friendly format and can be accessed on smartphones and tablets.

Are practice worksheets for Class 12 Computer Science Sql available in multiple languages

Yes, practice worksheets for Class 12 Computer Science Sql are available in multiple languages, including English, Hindi