हिंदी
Tamil Nadu Board of Secondary EducationHSC Science Class 12

Samacheer Kalvi solutions for Computer Science [English] Class 12 TN Board chapter 15 - Data manipulation through SQL [Latest edition]

Advertisements

Chapters

Samacheer Kalvi solutions for Computer Science [English] Class 12 TN Board chapter 15 - Data manipulation through SQL - Shaalaa.com
Advertisements

Solutions for Chapter 15: Data manipulation through SQL

Below listed, you can find solutions for Chapter 15 of Tamil Nadu Board of Secondary Education Samacheer Kalvi for Computer Science [English] Class 12 TN Board.


Evaluation
Evaluation [Pages 317 - 319]

Samacheer Kalvi solutions for Computer Science [English] Class 12 TN Board 15 Data manipulation through SQL Evaluation [Pages 317 - 319]

Part I - Choose the best answer

Evaluation | Q 1. | Page 317

Which of the following is an organized collection of data?

  • Database

  • DBMS

  • Information

  • Records

Evaluation | Q 2. | Page 317

SQLite falls under which database system?

  • Flat file database system

  • Relational Database system

  • Hierarchical database system

  • Object-oriented Database system

Evaluation | Q 3. | Page 317

Which of the following is a control structure used to traverse and fetch the records of the database?

  • Pointer

  • Key

  • Cursor

  • Insertion point

Evaluation | Q 4. | Page 317

Any changes made in the values of the record should be saved by the command.

  • Save

  • Save As

  • Commit

  • Oblige

Evaluation | Q 5. | Page 317

Which of the following executes the SQL command to perform some action?

  • execute()

  • key()

  • cursor()

  • run()

Evaluation | Q 6. | Page 317

Which of the following function retrieves the average of a selected column of rows in a table?

  • Add()

  • SUM()

  • AVG()

  • AVERAGE()

Evaluation | Q 7. | Page 317

The function that returns the largest value of the selected column is ______

  • MAX()

  • LARGE()

  • HIGH()

  • MAXIMUM()

Evaluation | Q 8. | Page 317

Which of the following is called the master table?

  • sqlite_master

  • sql_master

  • main_master

  • master_main

Evaluation | Q 9. | Page 317

The most commonly used statement in SQL is ______

  • cursor

  • select

  • execute

  • commit

Evaluation | Q 10. | Page 317

Which of the following clause avoid the duplicate?

  • Distinct

  • Remove

  • Where

  • GroupBy

Part II - Answer the following questions (2 Marks)

Evaluation | Q 1. | Page 318

Mention the users who use the Database.

Evaluation | Q 2. | Page 318

Which method is used to connect a database? Give an example.

Evaluation | Q 3. | Page 318

What is the advantage of declaring a column as “INTEGER PRIMARY KEY”

Evaluation | Q 4. | Page 318

Write the command to populate the record in a table. Give an example.

Evaluation | Q 5. | Page 318

Which method is used to fetch all rows from the database table?

Part III - Answer the following questions (3 Marks)

Evaluation | Q 1. | Page 318

What is SQLite?What is its advantage?

Evaluation | Q 2. | Page 318

Mention the difference between fetchone() and fetchmany().

Evaluation | Q 3. a. | Page 318

What is the use of the Where Clause?

Evaluation | Q 3. b. | Page 318

Give a python statement Using the where clause.

Evaluation | Q 4. | Page 318

Read the following details Based on that write a python script to display department-wise records

database name:- organization.db

Table name:- Employee

Columns in the table:- Eno, EmpName, Esal, Dept

Evaluation | Q 5. | Page 318

Read the following details Based on that write a python script to display records in descending order of

Eno

database name:- organization.db

Table name:- Employee

Columns in the table:- Eno, EmpName, Esal, Dept

Part IV - Answer the following questions (5 Marks)

Evaluation | Q 1. | Page 318

Write in brief about SQLite and the steps used to use it.

Evaluation | Q 2. | Page 318

Write the Python script to display all the records of the following table using fetchmany().

Icode ItemName Rate
1003 Scanner 10500
1004 Speaker 3000
1005 Printer 8000
1008 Monitor 15000
1010 Mouse 700
Evaluation | Q 3. | Page 319

The hat is the use of the HAVING clause. Give an example python script.

Evaluation | Q 4. | Page 319

Write a Python script to create a table called ITEM with the following specifications.

Add one record to the table.

Name of the database:- ABC

Name of the table:- Item

Column name and specification:-

Icode :- integer and act as primary key
Item Name :- The character with a length of 25
Rate :- Integer
Record to be added :- 1008, Monitor, 15000
Evaluation | Q 5. (i) | Page 319

Consider the following table Supplier and item. Write a python script for the following Question? 

SUPPLIER
Suppno Name City Icode SuppQty
S001 Prasad Delhi 1008 100
S002 Anu Bangalore 1010 200
S003 Shahid Bangalore 1008 175
S004 Akila Hydrabad 1005 195
S005 Girish Hydrabad 1003 25
S006 Shylaja Chennai 1008 180
S007 Lavanya Mumbai 1005 325

Display Name, City, and Itemname of suppliers who do not reside in Delhi.

Evaluation | Q 5. (ii) | Page 319

Consider the following table Supplier and item. Write a python script for the following Question? 

SUPPLIER
Suppno Name City Icode SuppQty
S001 Prasad Delhi 1008 100
S002 Anu Bangalore 1010 200
S003 Shahid Bangalore 1008 175
S004 Akila Hydrabad 1005 195
S005 Girish Hydrabad 1003 25
S006 Shylaja Chennai 1008 180
S007 Lavanya Mumbai 1005 325

Increment the SuppQty of Akila by 40

Solutions for 15: Data manipulation through SQL

Evaluation
Samacheer Kalvi solutions for Computer Science [English] Class 12 TN Board chapter 15 - Data manipulation through SQL - Shaalaa.com

Samacheer Kalvi solutions for Computer Science [English] Class 12 TN Board chapter 15 - Data manipulation through SQL

Shaalaa.com has the Tamil Nadu Board of Secondary Education Mathematics Computer Science [English] Class 12 TN Board Tamil Nadu Board of Secondary Education solutions in a manner that help students grasp basic concepts better and faster. The detailed, step-by-step solutions will help you understand the concepts better and clarify any confusion. Samacheer Kalvi solutions for Mathematics Computer Science [English] Class 12 TN Board Tamil Nadu Board of Secondary Education 15 (Data manipulation through SQL) include all questions with answers and detailed explanations. This will clear students' doubts about questions and improve their application skills while preparing for board exams.

Further, we at Shaalaa.com provide such solutions so students can prepare for written exams. Samacheer Kalvi textbook solutions can be a core help for self-study and provide excellent self-help guidance for students.

Concepts covered in Computer Science [English] Class 12 TN Board chapter 15 Data manipulation through SQL are Database, Creating a Database Using SQLite, SQL Query Using Python, SQLite, The SQL and, or and Not Operators, Querying a Date Column, Aggregate Functions, Updating a Record, Deletion Operation, Data Input by User, Using Multiple Table for Querying, Integrating Query with CSV File, Table List.

Using Samacheer Kalvi Computer Science [English] Class 12 TN Board solutions Data manipulation through SQL exercise by students is an easy way to prepare for the exams, as they involve solutions arranged chapter-wise and also page-wise. The questions involved in Samacheer Kalvi Solutions are essential questions that can be asked in the final exam. Maximum Tamil Nadu Board of Secondary Education Computer Science [English] Class 12 TN Board students prefer Samacheer Kalvi Textbook Solutions to score more in exams.

Get the free view of Chapter 15, Data manipulation through SQL Computer Science [English] Class 12 TN Board additional questions for Mathematics Computer Science [English] Class 12 TN Board Tamil Nadu Board of Secondary Education, and you can use Shaalaa.com to keep it handy for your exam preparation.

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×