CBSE Class 12 Informatics Practices Data Handling using Pandas II Assignment

Read and download free pdf of CBSE Class 12 Informatics Practices Data Handling using Pandas II Assignment. Get printable school Assignments for Class 12 Informatics Practices. Class 12 students should practise questions and answers given here for Chapter 3 Data Handling using Pandas II 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 3 Data Handling using Pandas II

Class 12 Informatics Practices students should refer to the following printable assignment in Pdf for Chapter 3 Data Handling using Pandas II 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 3 Data Handling using Pandas II Class 12 Informatics Practices Assignment

Short Answer Type Questions :

Question. What is the differences between HAVING clause and WHERE clause?
Answer:

CBSE-Class-12-Informatics-Practices-Data-Handling-using-Pandas-II-Assignment-12

Question. Write the query for (i) and predict the output for (ii) and (iii):

CBSE-Class-12-Informatics-Practices-Data-Handling-using-Pandas-II-Assignment-11

(i) To count the product manufacture wise from the table Product.
(ii) SELECT Manufacture,MAX(Price),
MIN(Price), COUNT(*)FROM Product GROUP BY Manufacture;
(iii) SELECT Manufacture, MAX(Price) FROM Product;
Answer: (i) SELECT COUNT(ProductName),Manufacture FROM Product
GROUP BY Manufacture;

CBSE-Class-12-Informatics-Practices-Data-Handling-using-Pandas-II-Assignment-10

Question. What are the aggregate functions in SQL?
Answer: Aggregate function is a function where the values of multiple-rows are grouped together as input on certain criteria to form a single value of more significant meaning.
Some aggregate functions used in SQL are
SUM ( ), AVG( ), MIN(), etc.

Question. Write a query that counts the number of doctors registering patients for each day. (If a doctor has more than one patient on a given day, he or she should be counted only once .)
Answer: SELECT ord_date, COUNT (DISTINCT doctor_code)
FROM Patients
GROUP BY ord_date;

Question. Shanya Khanna is using a table EMPLOYEE. It has the following columns:
Admno, Name, Agg, Stream [column Agg contains Aggregate marks]
She wants to display highest Agg obtained in each Stream.
She wrote the following statement:
SELECT Stream, MAX(Agg) FROM EMPLOYEE;
But she did not get the desired result. Rewrite the above query with necessary changes to help her get the desired output. 
Answer: SELECT Stream, MAX(Agg)
FROM EMPLOYEE
GROUP BY Stream;

Question. Why is it not allowed to give String and Date type arguments for SUM () and AVG() functions ?
Ans. SUM() and AVG() functions take an argument of type numeric only. So, sum and Avg are not defined the String and date data.

Question. What is the purpose of GROUP BY clause in MySQL? How is it different from ORDER BY clause? 
Answer: The GROUP BY clause can be used to combine all those records that have identical value in a particular field or a group of fields.
Whereas, ORDER BY clause is used to display the records either in ascending or descending order based on a particular field. For ascending order ASC is used and for descending order, DESC is used. The default order is ascending order.

Question. Gopi Krishna is using a table Employee. It has the following columns :
Code, Name, Salary, Dept_code
He wants to display maximum salary department wise. He wrote the following command :
SELECT Deptcode, Max(Salary) FROM Employee;
But he did not get the desired result.
Rewrite the above query with necessary changes to help him get the desired output. 
Answer: SELECT Deptcode, Max(Salary)
FROM Employee
GROUP BY Deptcode;

Question. Consider the following table Employee :

CBSE-Class-12-Informatics-Practices-Data-Handling-using-Pandas-II-Assignment-9

Write a query to get the total salary, maximum, minimum, average salary of employees (Job_ID wise), for Dept_ID 90 only.
Answer: SELECT Job_ID, SUM(Salary), AVG(Salary),
MAX(Salary), MIN(Salary)
FROM Employee
WHERE Dept_ID = ‘90’
GROUP BY Job_ID;

Long Answer Type Questions :

Question. Consider the table DOCTOR given below. Write commands in SQL for (i) to (ii) and output for (iii) to (v).

CBSE-Class-12-Informatics-Practices-Data-Handling-using-Pandas-II-Assignment-8

(i) Display the names and salaries of doctors in descending order of salaries.
(ii) Display names of each department along with total salary being given to doctors of that department.
(iii) SELECT SUM(Salary) FROM DOCTOR WHERE Department==‘Surgery’;
(iv) SELECT Department, COUNT(*) FROM DOCTOR GROUP BY Department;
(v) SELECT DOCName FROM DOCTOR WHERE Department LIKE ‘%gery%’;
Answer: (i) SELECT DOCName, Salary FROM DOCTOR ORDER BY Salary DESC;
(ii) SELECT Department, SUM(Salary) FROM DOCTOR GROUP BY Department;

CBSE-Class-12-Informatics-Practices-Data-Handling-using-Pandas-II-Assignment-7

Question. Go through the following table ‘Persons’ and answer the questions:

CBSE-Class-12-Informatics-Practices-Data-Handling-using-Pandas-II-Assignment-6

(i) What will be the output of the following command?
SELECT * FROM Persons WHERE Gender =‘F’ AND City LIKE “%Nagar”;

CBSE-Class-12-Informatics-Practices-Data-Handling-using-Pandas-II-Assignment-5

(d) No Output
(ii) Which column is used as primary key?
(a) PId
(b) PinCode
(c) Salary
(d) Gender
(iii) Choose the correct output.
SELECT City, COUNT (*) FROM Persons GROUP BY
City HAVING COUNT (*) > 1;

CBSE-Class-12-Informatics-Practices-Data-Handling-using-Pandas-II-Assignment-4

Answer: (i) (d) No ouput
(ii) (a) PId
(iii) (b)

CBSE-Class-12-Informatics-Practices-Data-Handling-using-Pandas-II-Assignment-3

Question. Write commands in SQL for (i) to (iii) and output for (iv) and (v): 

CBSE-Class-12-Informatics-Practices-Data-Handling-using-Pandas-II-Assignment-2

(i) To display names of stores along with Sales Amount of those stores that are located in Mumbai.
(ii) To display the details of store in alphabetical order of name.
(iii) To display the City and the number of stores located in that City, only if number of stores is more than 2.
(iv) SELECT MIN(DateOpen) FROM Store;
(v) SELECT COUNT(StoreId), NoOfEmp FROM Store GROUP BY NoOfEmp HAVING MAX(SalesAmt)<60000;
Answer: (i) SELECT Name,SalesAmt FROM Store WHERE City=‘Mumbai’;
(ii) SELECT * FROM Store ORDER BY Name;
(iii) SELECT City, COUNT(*) FROM Store GROUP BY Store HAVING COUNT(*)>2;

CBSE-Class-12-Informatics-Practices-Data-Handling-using-Pandas-II-Assignment-1

Question. Consider the table FANS:

CBSE-Class-12-Informatics-Practices-Data-Handling-using-Pandas-II-Assignment

Write MySQL queries for the following questions.
(i) To display the details of fans in descending order of their DOB.
(ii) To display the details of FANS who does not belong to AJMER.
(iii) To count the total number of fans of each fanmode.
(iv) To display the DOB of the youngest fan.
Answer: (i) SELECT * FROM FANS ORDER BY FAN_DOB DESC;
(ii) SELECT * FROM FANS WHERE
FAN_CITY<>‘AJMER’;
(iii) SELECT FAN_MODE, COUNT(*) FROM FANS GROUP BY
FAN_MODE;
(iv) SELECT MAX(FAN_DOB) FROM FANS;

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 3 Data Handling using Pandas II Assignment

We hope you liked the above assignment for Chapter 3 Data Handling using Pandas II 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 3 Data Handling using Pandas II?

a. Score higher marks: Regular practice of Informatics Practices Class 12 Assignments for chapter Chapter 3 Data Handling using Pandas II 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 3 Data Handling using Pandas II, short answers, long answers, and also case studies.
d. Improve time management: Daily solving questions from Chapter 3 Data Handling using Pandas II 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 3 Data Handling using Pandas II reduces exam stress.

How to Solve CBSE Class 12 Informatics Practices Chapter 3 Data Handling using Pandas II 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 3 Data Handling using Pandas II.
b. Solve without checking answers: You should first attempt the assignment questions on Chapter 3 Data Handling using Pandas II 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 3 Data Handling using Pandas II assignment and read them in Revision notes for Class 12 Informatics Practices

How to practice CBSE Class 12 Informatics Practices Chapter 3 Data Handling using Pandas II Assignment for best results?

a. Solve assignments daily: Regular practice of Chapter 3 Data Handling using Pandas II 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 3 Data Handling using Pandas II assignment under timed conditions improves speed and accuracy.

Where can I download in PDF assignments for CBSE Class 12 Informatics Practices Chapter 3 Data Handling using Pandas II

You can download free Pdf assignments for CBSE Class 12 Informatics Practices Chapter 3 Data Handling using Pandas II from StudiesToday.com

How many topics are covered in Chapter 3 Data Handling using Pandas II Informatics Practices assignments for Class 12

All topics given in Chapter 3 Data Handling using Pandas II 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 3 Data Handling using Pandas II Informatics Practices Class 12

No, all Printable Assignments for Chapter 3 Data Handling using Pandas II Class 12 Informatics Practices have been given for free and can be downloaded in Pdf format

Are these assignments for Chapter 3 Data Handling using Pandas II 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 3 Data Handling using Pandas II Class 12

Are there solutions or answer keys for the Class 12 Informatics Practices Chapter 3 Data Handling using Pandas II assignments

Yes, we have provided detailed answers for all questions given in assignments for Chapter 3 Data Handling using Pandas II Class 12 Informatics Practices