0% found this document useful (0 votes)
49 views5 pages

Data Visualization Test

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
49 views5 pages

Data Visualization Test

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Q.

1 (A)

Q. 1 (B)
Q. 2 (A)

Q. 2 (B)
Q.3 (A)

Q. 3 (B)
Ans 1 (a)

import [Link] as plt ½

Food = ['Apple', 'Banana', 'Rice', 'Wheat', 'Carrot'] ½

Calorie = [72, 105, 204, 455, 52] ½

[Link](Food, Calorie, color='skyblue') 1

[Link]('Calorie Count of Different Food Items') ½

[Link]('Food Items') ½

[Link]('Calories') ½

[Link]('[Link]') ½

[Link]() ½

Ans 1 (B)

import [Link] as plt ½

Year = [2019, 2020, 2021, 2022, 2023] ½

Student_Strength = [150, 180, 240, 120, 180] ½

[Link](Year, Student_Strength, marker='o', linestyle='-', color='blue') 1

[Link]('Year Wise Students Strength in Class XII') ½

[Link]('Year') ½

[Link]('Student Strength') ½

[Link]('[Link]') ½

[Link]() ½

Ans 2 (A)

import [Link] as plt ½


Class = [7, 8, 9, 10, 11, 12] ½
Marks = [83, 75, 81, 72, 88, 86] ½
[Link](Class, Marks, marker='o', linestyle='-', color='black') 1
[Link]('AVERAGE RESULT OF CLASSES VII-XII') ½
[Link]('CLASS →') ½
[Link]('AVERAGE MARK SCORED ↑') ½
[Link](Class) ½
[Link](range(72, 89, 2)) ½
[Link]()
Ans 2 (B)
import [Link] as plt ½
names = ['Ruby', 'Yugesh', 'Vishesh', 'Rakesh'] ½
marks = [84, 92, 45, 72] ½
[Link](names, marks) 1½
[Link]('RESULT OF TERM-2 EXAM') ½
[Link]('STUDENT NAMES') ½
[Link]('AVERAGE MARKS SECURED') ½
[Link]() ½

Ans 3 (A)
import [Link] as plt ½
smarks = [10, 40, 30, 60, 55] ½
sname = ['Sahil', 'Deepak', 'Anil', 'Ravi', 'Riti'] ½
[Link](sname, smarks, color='black') 1½
[Link]('Marks secured by students in Term-1') ½
[Link]('Student Name') ½
[Link]('Marks Scored') ½
[Link]() ½

Ans 3 (B)
import [Link] as plt ½
sales = [450, 300, 500, 650] ½
qtr = ["QTR1", "QTR2", "QTR3", "QTR4"] ½
[Link](qtr, sales, color='black') 1
[Link]('Sales each quarter') ½
[Link]('Quarter') ½
[Link]('Sales') ½
[Link]() ½

You might also like