Questions

3 Marks Each

🎯

Test yourself on this topic

6 questions · timed · auto-graded

Question 13 Marks
Write a Python program to draw a line chart with the suitable label in the x-axis, y-axis and a title. Value of X must be entered by the user as the list from the user and Y should be twice of X.
View full question & answer
Question 23 Marks
Write a python program to create the pie chart use a different colour for the different countries.

Title: Carbon emission of the coutries 1990-2011

values=[27, 11, 25, 8, 1, 3, 25]

countres= [ "US", "China", "European Union", "Russian Federation", "Brazil","India","Rest of World"]

View full question & answer
Question 33 Marks
Write a python program to draw the line chart for the following:

x_data = [2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013]

y_data = [18, 21, 18, 21, 16, 14, 13, 18, 17, 16, 19, 23]

View full question & answer
Question 43 Marks
The data is about Time devoted by a student in various subject subjects = 'English', 'Physics', 'Chemistry', 'Mathematics', 'Comp. Sci.' time (in hours) = 0.3, 1.5, 1.5, 2, 0.4 Write a python program to draw the PIE chart for the above data. Use hexadecimal colour code, and subject chemistry is exploded value.
View full question & answer
Question 53 Marks
The data is about Time devoted by a student in various subject = 'English', 'Physics', 'Chemistry', 'Mathematics', 'Comp. Sci.' time (in hours) = 0.3, 1.5, 1.5, 2, 0.4. Write a python program to draw PIE chart for the above data.
View full question & answer
Question 63 Marks
Assuming the given data prepare the Horizontal bar chart.

Degree=["M.A.", "M.B.A"," M.Com."," M.Sc."," M.Tech."]

Enrollment=[878677,416325, 271266, 519159, 257361]

View full question & answer
3 Marks Each - Computer Science STD 12 Science Questions - Vidyadip