CBSE Class 12 Informatics Practices Querying and SQL Functions Assignment

Read and download free pdf of CBSE Class 12 Informatics Practices Querying and SQL Functions Assignment. Get printable school Assignments for Class 12 Informatics Practices. Class 12 students should practise questions and answers given here for Chapter 1 Querying and SQL Functions Informatics Practices in Class 12 which will help them to strengthen their understanding of all important topics. Students should also download free pdf of Printable Worksheets for Class 12 Informatics Practices prepared as per the latest books and syllabus issued by NCERT, CBSE, KVS and do problems daily to score better marks in tests and examinations

Assignment for Class 12 Informatics Practices Chapter 1 Querying and SQL Functions

Class 12 Informatics Practices students should refer to the following printable assignment in Pdf for Chapter 1 Querying and SQL Functions in Class 12. This test paper with questions and answers for Class 12 Informatics Practices will be very useful for exams and help you to score good marks

Chapter 1 Querying and SQL Functions Class 12 Informatics Practices Assignment

Question: What is a database?
Answer: A database is a collection of interrelated data

Question: What is tuple?
Answer: Rows in a table are called tuple

Question: Full form of DML.
Answer: Data Manipulation Language

Question: How many primary key can be present in a table ?
Answer: one

Question: Which command is used to add new record in table?
Answer: INSERT INTO

Question: In SQL, name the clause that is used to display the tuples in ascending order of an attribute
Answer: ORDER BY

Question: In SQL, what is the use of IS NULL operator?
Answer: IS NULL used to compare NULL values present in any column

Question: What is the full form of SQL?
Answer: Structured Query Language

Question: What is the minimum number of column required in MySQL to create table?
Answer: ONE (1)

Question: Which command is used to add new column in existing table?
Answer: ALTER TABLE

Question: Which command is used to remove the table from database?
Answer: DROP TABLE

Question: Which of the following types of table constraints will prevent the entry of duplicate rows? a)Unique b)Distinct c)Primary Key d)NULL
Answer: c) Primary Key

Question: What is data redundancy?
Answer: Data Redundancy meAnswer: duplication of data in a database.

Question: What is metadata ?
Answer: Data about data

Question: What is domain?
Answer: Domain is the pool of values from which actual values appearing in a column are taken.

Question: What is the full form of DBMS?
Answer: Database Management System

Question: Full form of DDL.
Answer: Data Definition Language

Question: What do you mean by degree and cardinality of a table?
Answer: Degree:- No. of columns with in a table.
Cardinality:- No. of rows within a table.

Question: Which is the subset of SQL commands used to manipulate database structures, including tables?
a. None of these
b. Both Data Definition Language (DDL) and Data Manipulation Language (DML)
c. Data Definition Language (DDL)
d. Data Manipulation Language (DML)
Answer: c.Data Definition Language (DDL)

1. Consider the table STUDENT given below:

CBSE-Class-12-Informatics-Practices-Querying-and-SQL-Functions-Assignment-4

 

Question: State the command that will give the output as :

 

CBSE-Class-12-Informatics-Practices-Querying-and-SQL-Functions-Assignment-3

i. select name from student where class=’XI’ and class=’XII’;
ii. select name from student where not class=’XI’ and class=’XII’;
iii. select name from student where city=”Agra” OR city=”Mumbai”;
iv. select name from student where city IN(“Agra”, “Mumbai”);
Choose the correct option:
a. Both (i) and (ii).
b. Both (iii) and (iv).
c. Any of the options (i), (ii) and (iv)
d. Only (iii)
Answer: b. Both (iii) and (iv).

Question: What will be the output of the following command?
Select * from student where gender =”F” order by marks;

CBSE-Class-12-Informatics-Practices-Querying-and-SQL-Functions-Assignment-2

 

CBSE-Class-12-Informatics-Practices-Querying-and-SQL-Functions-Assignment-1

 
 

Question: Prachi has given the following command to obtain the highest marks Select max(marks) from student where group by class;
but she is not getting the desired result. Help her by writing the correct command.
a. Select max(marks) from student where group by class;
b. Select class, max(marks) from student group by marks;
c. Select class, max(marks) group by class from student; 
Answer: d. Select class, max(marks) from student group by class; 

Question: State the command to display the average marks scored by students of each gender who are in class XI?
i. Select gender, avg(marks) from student where class= “XI” group by gender;
ii Select gender, avg(marks) from student group by gender where class=”XI”;
iii. Select gender, avg(marks) group by gender from student having class=”XI”;
iv. Select gender, avg(marks) from student group by gender having class = “XI”;
Choose the correct option:
a. Both (ii) and (iii)
b. Both (ii) and (iv)
c. Both (i) and (iii)
d. Only (iv)
Answer: d. Only (iv)

Question: From the given table, Answer:wer the following questions:
TableName-House

CBSE-Class-12-Informatics-Practices-Querying-and-SQL-Functions-Assignment

 

Question: Write the degree and cardinality of the above table.
Answer: Degree=3 and cardinality=4

Question: Write the domain of House_Captain attribute.
Answer: Yathin, Hari Narayan, Anil Sharma, Felicita

Question: Write a Query to insert House_Name=Tulip, House_Captain= Rajesh and House_Point=278
Answer: Insert into House values (‘Tulip’,’Rajesh’,278)

Question: Any field of above table can be made Primary key
Answer: House_Points

Question: If we want  to add a new column in above table which SQL command we use
Answer: Alter table House
Add <new column> <data type>;

Question: Write the full forms of DDL and DML. Write any two commands of DML in SQL.
Answer: DDL: Data Definition Language, DML: Data Manipulation Language
DML Commands: SELECT, UPDATE

Question: Mr. Mittal is using a table with following columns :
Name, Class, Streamed, Stream_name
He needs to display names of students who have not been assigned any stream or have been
assigned stream_name that ends with “computers
He wrote the following command, which did not give the desired result.
SELECT Name, Class FROM Students
WHERE Stream_name = NULL OR Stream_name = “%computers” ;
Help Mr. Mittal to run the query by removing the error and write correct query
Answer: SELECT Name, Class FROM Students
WHERE Stream_name IS NULL OR Stream_name = “%computers” ;

Question: What do you understand by Degree and Cardinality of a table?
Answer: Degree: Number of attributes and Cardinality is number of tuples in a relation

Class 12 Informatics Practices Assignments
CBSE Class 12 Informatics Practices Concept Of Inheritance In Java
CBSE Class 12 Informatics Practices Database Concepts Assignment
CBSE Class 12 Informatics Practices Database Query using Sql
CBSE Class 12 Informatics Practices Database Transactions Assignment
CBSE Class 12 Informatics Practices Extensible Markup Language Assignment
CBSE Class 12 Informatics Practices Free And Open Source Software Assignment
CBSE Class 12 Informatics Practices GUI Dialogs And Tables Assignment
CBSE Class 12 Informatics Practices HTML I Basic HTML Elements Assignment
CBSE Class 12 Informatics Practices HTML II Lists Tables and Forms Assignment
CBSE Class 12 Informatics Practices Introduction to Computer Networks Assignment
CBSE Class 12 Informatics Practices IT Applications Assignment
CBSE Class 12 Informatics Practices Java Database Connectivity To MySQL Assignment
CBSE Class 12 Informatics Practices Java GUI Programming Revision Tour Assignment
CBSE Class 12 Informatics Practices More About Classes And Libraries Assignment
CBSE Class 12 Informatics Practices More on SQL Grouping Records and Table Joins Assignment
CBSE Class 12 Informatics Practices More RDBMS Assignment
CBSE Class 12 Informatics Practices MYSQL Revision Tour Assignment
CBSE Class 12 Informatics Practices Networking and open standards Assignment
CBSE Class 12 Informatics Practices Programming Fundamentals Assignment
CBSE Class 12 Informatics Practices Revision Assignment Set A
CBSE Class 12 Informatics Practices Revision Assignment Set C
CBSE Class 12 Informatics Practices Revision Assignment Set D
CBSE Class 12 Informatics Practices Web Application Development Assignment
CBSE Class 12 Informatics Practices Worksheet All Chapters

CBSE Class 12 Informatics Practices Chapter 1 Querying and SQL Functions Assignment

We hope you liked the above assignment for Chapter 1 Querying and SQL Functions which has been designed as per the latest syllabus for Class 12 Informatics Practices released by CBSE. Students of Class 12 should download and practice the above Assignments for Class 12 Informatics Practices regularly. We have provided all types of questions like MCQs, short answer questions, objective questions and long answer questions in the Class 12 Informatics Practices practice sheet in Pdf. All questions have been designed for Informatics Practices by looking into the pattern of problems asked in previous year examinations. You can download all Revision notes for Class 12 Informatics Practices also absolutely free of cost. Lot of MCQ questions for Class 12 Informatics Practices have also been given in the worksheets and assignments for regular use. All study material for Class 12 Informatics Practices students have been given on studiestoday. We have also provided lot of Worksheets for Class 12 Informatics Practices which you can use to further make your self stronger in Informatics Practices.

What are benefits of doing Assignment for CBSE Class 12 Informatics Practices Chapter 1 Querying and SQL Functions?

a. Score higher marks: Regular practice of Informatics Practices Class 12 Assignments for chapter Chapter 1 Querying and SQL Functions will help to improve understanding and help in solving exam questions correctly.
b. As per CBSE pattern: All questions given above follow the latest Class 12 Informatics Practices Sample Papers so that students can prepare as per latest exam pattern.
c. Understand different question types: These assignments include MCQ Questions for Class 12 Informatics Practices with answers relating to Chapter 1 Querying and SQL Functions, short answers, long answers, and also case studies.
d. Improve time management: Daily solving questions from Chapter 1 Querying and SQL Functions within a set time will improve your speed and accuracy.
e. Boost confidence: Practicing multiple assignments and Class 12 Informatics Practices mock tests for Chapter 1 Querying and SQL Functions reduces exam stress.

How to Solve CBSE Class 12 Informatics Practices Chapter 1 Querying and SQL Functions Assignment effectively?

a. Start with Class 12 NCERT and syllabus topics: Always read the chapter carefully before attempting Assignment questions for Class 12 Informatics Practices Chapter 1 Querying and SQL Functions.
b. Solve without checking answers: You should first attempt the assignment questions on Chapter 1 Querying and SQL Functions yourself and then compare with provided solutions.
c. Use Class 12 worksheets and revision notes: Refer to NCERT Class 12 Informatics Practices worksheets, sample papers, and mock tests for extra practice.
d. Revise tricky topics: Focus on difficult concepts by solving Class 12 Informatics Practices MCQ Test.
e. Maintain notebook: Note down mistakes in Chapter 1 Querying and SQL Functions assignment and read them in Revision notes for Class 12 Informatics Practices

How to practice CBSE Class 12 Informatics Practices Chapter 1 Querying and SQL Functions Assignment for best results?

a. Solve assignments daily: Regular practice of Chapter 1 Querying and SQL Functions questions will strengthen problem solving skills.
b.Use Class 12 study materials: Combine NCERT book for Class 12 Informatics Practices, mock tests, sample papers, and worksheets to get a complete preparation experience.
c. Set a timer: Practicing Class 12 Informatics Practices Chapter 1 Querying and SQL Functions assignment under timed conditions improves speed and accuracy.

Where can I download in PDF assignments for CBSE Class 12 Informatics Practices Chapter 1 Querying and SQL Functions

You can download free Pdf assignments for CBSE Class 12 Informatics Practices Chapter 1 Querying and SQL Functions from StudiesToday.com

How many topics are covered in Chapter 1 Querying and SQL Functions Informatics Practices assignments for Class 12

All topics given in Chapter 1 Querying and SQL Functions Informatics Practices Class 12 Book for the current academic year have been covered in the given assignment

Is there any charge for this assignment for Chapter 1 Querying and SQL Functions Informatics Practices Class 12

No, all Printable Assignments for Chapter 1 Querying and SQL Functions Class 12 Informatics Practices have been given for free and can be downloaded in Pdf format

Are these assignments for Chapter 1 Querying and SQL Functions Class 12 Informatics Practices designed as per CBSE curriculum?

Latest syllabus issued for current academic year by CBSE has been used to design assignments for Chapter 1 Querying and SQL Functions Class 12

Are there solutions or answer keys for the Class 12 Informatics Practices Chapter 1 Querying and SQL Functions assignments

Yes, we have provided detailed answers for all questions given in assignments for Chapter 1 Querying and SQL Functions Class 12 Informatics Practices