{"id":37448,"date":"2022-02-19T18:10:45","date_gmt":"2022-02-19T12:40:45","guid":{"rendered":"https:\/\/mcq-questions.com\/?p=37448"},"modified":"2022-02-21T16:02:51","modified_gmt":"2022-02-21T10:32:51","slug":"case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib","status":"publish","type":"post","link":"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/","title":{"rendered":"Case Based MCQ Questions for Class 12 Informatics Practices \u2013 Plotting Data Using Matplotlib"},"content":{"rendered":"

Plotting Data Using Matplotlib Class 12 Case Based MCQ Questions<\/h2>\n

Case Study 1<\/span>
\nCustomising the Plot: Data visualisation demand much more from a graph\/plot. The graph or plot should have a proper title, X & Y limits defined, labels, legends et(c) All this make understanding the plot and taking the decision easier. Any graph or chart that you create using matplotlib\u2019s PyPlot interface is created as per a specific structure of a plot or shall we say a specific anatomy. Pyplot charts have hierarchical structures or in simple words they are actually like containers containing multiple items\/things inside it.<\/p>\n

(a) refers to study of bodily structures (or parts) of something.<\/h2>\n

(i) Anatomy
\n(ii) Figure
\n(iii) Axes
\n(iv) None of these
\nAnswer:
\n(i) Anatomy<\/p>\n

(b) Pyplot, by default, plots every chart into an area called<\/h2>\n

(i) Figsize
\n(ii) Figure
\n(iii) Title
\n(iv) Axes
\nAnswer:
\n(ii) Figure<\/p>\n

\"Case<\/p>\n

(c) The are individual points marked on X-axis and Y-axis.<\/h2>\n

(i) Limits
\n(ii) Axis Label
\n(iii) Tick_Marks
\n(iv) Legends
\nAnswer:
\n(iii) Tick_Marks<\/p>\n

(d)………. are the different colours that identify different sets of data plotted on the plot.<\/h2>\n

(i) Legends
\n(ii) Axes
\n(iii) Figure
\n(iv) None of these
\nAnswer:
\n(i) Legends<\/p>\n

(e)………defines the range of values and number of values marked on X-axis & Y-axis.<\/h2>\n

(i) Tick_Marks
\n(ii) Axes
\n(iii) Axis Label
\n(iv) Limits
\nAnswer:
\n(iv) Limits<\/p>\n

Case Study 2<\/span><\/p>\n

Mr. Sharma is working in a game development industry and he was comparing the given chart on the basis of the rating of the various games available on the play store.
\n\"MCQ
\nHe is trying to write a code to plot the graph. Help Mr. Sharma to fill in the blanks of the code and get the desired output.
\nimport #Statement 1
\nGames=[“Subway Surfer”,”Temple Run”,”Candy Crush”,”Bottle Shot”,”Runner Best”]
\nRating=[4.2,4.8,5.0,3.8,4.1]
\npit. (Games,Rating) #Statement 2
\npit.xlabel(“Games”)
\npit. (“Rating”) #Statement 3
\npit. #Statement 4<\/p>\n

(a) Choose the right code from the following for statement 1.<\/h2>\n

(i) matplotlib as pit
\n(ii) pvplot as pit
\n(iii) matplotli(b)pyplot as pit
\n(iv) matplotli(b)pit as pyplot
\nAnswer:
\n(iii) matplotli(b)pyplot as pit<\/p>\n

(b) Identify the name of the function that should be used in statement 2 to plot the above graph.<\/h2>\n

(i) line( )
\n(ii) bar( )
\n(iii) hist( )
\n(iv) barh( )
\nAnswer:
\n(ii) bar()<\/p>\n

(c) Choose the correct option for the statement 3.<\/h2>\n

(i) title(\u201dRating”)
\n(ii) ytitle(“Rating\u201d)
\n(iii) ylabel(“Rating”)
\n(iv) yaxis(“Rating”)
\nAnswer:
\n(iii) ylabel(“Rating”)<\/p>\n

(d) Choose the right function\/method from the following for the statement 4.<\/h2>\n

(i) display( )
\n(ii) print( )
\n(iii) bar( )
\n(iv) show( )
\nAnswer:
\n(iv) snow( )<\/p>\n

\"Case<\/p>\n

(e) In case, Mr. Sharma wants to change the above plot to any other shape, which statement should he change?<\/h2>\n

(i) Statement 1
\n(ii) Statement 2
\n(iii) Statement 3
\n(iv) Statement 4
\nAnswer:
\n(ii) Statement 2<\/p>\n

Case Study 3<\/span><\/p>\n

Gaurav has written a Python Code to create a bar plot as given below using the following data:<\/p>\n\n\n\n\n\n\n\n\n
City<\/td>\nHappiness_Index<\/p>\n

male<\/td>\n

Happiness_Index<\/p>\n

Female<\/td>\n<\/tr>\n

Delhi<\/td>\n60<\/td>\n30<\/td>\n<\/tr>\n
Beijing<\/td>\n40<\/td>\n60<\/td>\n<\/tr>\n
Washington<\/td>\n70<\/td>\n70<\/td>\n<\/tr>\n
Tokyo<\/td>\n65<\/td>\n55<\/td>\n<\/tr>\n
Moscow<\/td>\n85<\/td>\n75<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

Happiness Index across cities by Gender
\n\"MCQ
\nDelhi Beijing Washington Tokyo Moscow<\/p>\n

City
\nimport………as ……….#Statement 1
\nCity=[‘Delhi’,’Beijing'(Washington “Tokyo’,’Moscow’]
\nGender=[‘Male’,’Female’] Happiness_!ndex_
\nMale=[60,40,70,65,85]
\nHappinessJndex_Female=[30,60,70,55,75]
\nplt.bar([0.2 5,1.2 5,2.2 5,3.2 5,4.2 5],H a ppiness_lnd.ex_
\nMale,color=’blue’,label-‘ Male”,width=.5)
\npit. ………..([.75,1.75,2.75,3.75,4.75],Happiness_lndex_
\nFemale,color=’Green’,w idth=.5,label=”Female\u201d) #Statement 2 pos=range(len(City)) print(pos)
\nplt.xticks(pos,City,fontsize=10) plt.xlabel(‘City’, fontsize=16)
\nplt.ylabel(‘Happiness_lndex’,fontsize=16)
\n………….. #Statement 3
\n…………. #Statement 4
\n………….#Statement 5<\/p>\n

(a) Identify the suitable code to be used in the blank space in line marked as Statement 1.<\/h2>\n

(i) matplotlib as pit
\n(ii) numpy as np
\n(iii) pandas as pd
\n(iv) matplotli(b)pyplot as pit
\nAnswer:
\n(iv) matplotli(b)pyplot as pit<\/p>\n

(b) What is the name of the function to plot the required bar graph in the line marked as Statement 2?<\/h2>\n

(i) hist( )
\n(ii) pie( )
\n(iii) bar( )
\n(iv) scatter( )
\nAnswer:
\n(iii) bar()<\/p>\n

(c) Fill in the blank in statement 3 to set Chart Title as “Happiness Index across cities by gender “and font size as 18.<\/h2>\n

(i) plt.xtitle(“Happiness gender\u201d, fontsize=18) Index across cities by
\n(ii) plt.title(\u201dHappiness gender”, fontsize=18) Index across cities by
\n(iii) plt.ytitle(“Happiness gender\u201d,fontsize=18) Index across cities by
\n(iv) plt.show(“Happiness Index across cities by gender\u201d, fontsize=18)<\/p>\n

Answer:
\n(ii) plt.titlef’Happiness Index across cities by gender”,fontsize=18)<\/p>\n

(d) Identify the suitable code for line marked as Statement 4 to display the legends as shown in the plot.<\/h2>\n

(i) plt.showlegend( )
\n(ii) plt.legend( )
\n(iii) plt.display ( )
\n(iv) plt.show()
\nAnswer:
\n(ii) plt.legendO<\/p>\n

(e) Fill in the blank marked in Statement 5 to display the plot.<\/h2>\n

(i) plt.plot( )
\n(ii) plt.showplot( )
\n(iii) plt.display( )
\n(iv) plt.show( )
\nAnswer:
\n(iv) plt.show( )<\/p>\n

Assertion-Reason Type Questions<\/span><\/p>\n

Directions: In the questions given below, there are two statements marked as Assertion (A) and Reason (R). Read the statements and choose the correct option.
\n(a) Both (A) and (R) are true, and (R) is the correct explanation of (A).
\n(b) Both (A) and (R) are true, but (R) is not correct explanation of (A).
\n(c) (A) is true, but (R) is false.
\n(d) (A) is false, but (R) is true.<\/p>\n

Question 1.<\/p>\n

Assertion (A): A histogram is a plot that shows the underlying frequency distribution of a set of continuous data
\nReason (R): Pyplot interface is a collection of methods within matplotlib library of Python.<\/h2>\n

Answer:
\n(b) Both (A) and (R) are true, but (R) is not correct explanation of (A).<\/p>\n

\"Case<\/p>\n

Question 2.<\/p>\n

Assertion (A): Pyplot\u2019s plot() function is used to create line charts.
\nReason (R): Pyplot\u2019s barh( ) function is used to create horizontal bar charts.<\/h2>\n

Answer:
\n(b) Both (A) and (R) are true, but (R) is not correct explanation of (A).<\/p>\n

Question 3.<\/p>\n

Assertion (A): Pyplot\u2019s scatter() function is used to create scatter charts.
\nReason (R): Pyplot\u2019s hist( ) function is used to createn histogram.<\/h2>\n

Answer:
\n(b) Both (A) and (R) are true, but (R) is not correct explanation of (A).<\/p>\n

Question 4.<\/p>\n

Assertion (A): The datapoints plotted on a graph are called markers.
\nReason (R): The width argument of plot( ) specifies the width for the line.<\/h2>\n

Answer:
\n(c) (A) is true, but (R) is false.<\/p>\n

Question 5.<\/p>\n

Assertion (A): The linestyle argument of plot( ) specifies the style of the line.
\nReason (R): The line argument of bar() specifies the bar width.<\/h2>\n

Answer:
\n(c) (A) is true, but (R) is false.<\/p>\n

Question 6.<\/p>\n

Assertion (A): The xticks() function is used to specify ticks for x-axis.
\nReason (R): To save a plot, savefig() function is used.<\/h2>\n

Answer:
\n(b) Both (A) and (R) are true, but (R) is not correct explanation of (A).<\/p>\n

Question 7.<\/p>\n

Assertion (A): The orientation argument of hist() is set to create a horizontal histogram.
\nReason (R): The showmeans argument shows the arithmetic mean on a boxplot.<\/h2>\n

Answer:
\n(b) Both (A) and (R) are true, but (R) is not correct explanation of (A).<\/p>\n

Question 8.<\/p>\n

Assertion (A): The notch argument in a boxplot() creates a notched boxplot.
\nReason (R): The loc argument of legend( ) provides the location of legend.<\/h2>\n

Answer:
\n(b) Both (A) and (R) are true, but (R) is not correct explanation of (A).<\/p>\n

Question 9.<\/p>\n

Assertion (A): Using Python Matplotlib, histogram can be used to count how many values fall into each interval.
\nReason (R): Pyplot\u2019s barh() function is used to create line chart.<\/h2>\n

Answer:
\n(c) (A) is true, but (R) is false.<\/p>\n

Question 10.<\/p>\n

Assertion (A): Statement import pyplot.matplotlib is a valid statement for working on pyplot functions.
\nReason (R): By default, pie chart is printed in elliptical or oval shape.<\/h2>\n

Answer:
\n(c) (A) is true, but (R) is false.<\/p>\n

\"Case<\/p>\n

Question 11.<\/p>\n

Assertion (A): The axes define the area (mostly rectangular in shape for simple plots) on which actual plot (line or bar or graph et(c)) will appear. Axis have properties like label, limits and tick marks on them.
\nReason (R): A Boxplot is the visual representation of a statistical 5 number summary of a given data set.<\/h2>\n

Answer:
\n(b) Both (A) and (R) are true, but (R) is not correct explanation of (A).<\/p>\n

Question 12.<\/p>\n

Assertion (A): A marker is any symbol that represents a data value in a line chart or a scatter plot. In other words, the data points being plotted on a graph\/chart are called markers.
\nReason (R): The linewidth and linestyle property can be used to change the width and the style of the bar chart.<\/h2>\n

Answer:
\n(c) (A) is true, but (R) is false.<\/p>\n

Question 13.<\/p>\n

Assertion (A): A pie chart (or a circle chart) is a circular statistical graphic, which is divided into slices to illustrate numerical proportion.
\nReason (R): Histogram is a type of graph that provides a visual interpretation of numerical data by indicating the number of data points that lie within a range of value.<\/h2>\n

Answer:
\n(b) Both (A) and (R) are true, but (R) is not correct explanation of (A).<\/p>\n

Question 14.<\/p>\n

Assertion (A): Data visualisation demand much more from a graph\/plot. The graph or plot should have a proper title, X & Y limits defined, labels, legends et(c)
\nReason (R): Any graph or chart that you create using matplotlib\u2019s PyPlot interface is created as per a specific structure of a plot or shall we say a specific anatomy.<\/h2>\n

Answer:
\n(b) Both (A) and (R) are true, but (R) is not correct explanation of (A).<\/p>\n

Question 15.<\/p>\n

Assertion (A): Patterns, trends and correlations that might go undetected in text-based data can be exposed and recognised easier with data visualisation techniques or tools such as Line chart, bar chart, pie chart, histogram, scatter chart, etc
\nReason (R): Thus, with data visualisation tools, information can be processed in efficient manner and hence better decisions can be made.<\/h2>\n

Answer:
\n(a) Both (A) and (R) are true, and (R) is the correct explanation of (A).<\/p>\n

Question 16.<\/p>\n

Assertion (A): When we plot multiple ranges on a single plot, it becomes necessary that legends are specified. Recall that a legend is a colour or mark linked to a specific data range plotted.
\nReasons (R): bar( ) function is used to plot vertical bar graph while barh( ) function is used to plot horizontal bar graph.<\/h2>\n

Answer:
\n(b) Both (A) and (R) are true, but (R) is not correct explanation of (A).<\/p>\n

\"Case<\/p>\n

Question 17.<\/p>\n

Assertion (A): Pyplot is a collection of methods within matplotlib library (of Python) which allows user to construct 2D plots easily and interactively.
\nReason (R): A histogram is a statistical tool used to summarise discrete or continuous dat(a) It provides a visual interpretation of numerical data by showing the numbeY of data points that fall within a specified range of values (called \u201cbins”).<\/h2>\n

Answer:
\n(b) Both (A) and (R) are true, but (R) is not correct explanation of (A).<\/p>\n

Question 18.<\/p>\n

Assertion (A): A frequency polygon is a type of frequency distribution graph. In a frequency polygon, the number of observations is marked with a single point at the midpoint of an interval.
\nReason (R): The histogram chart is a graph of plotted points that show the relationship between two sets of dat(a) With a scatter plot, a mark or marker (usually a dot or small circle), represents a single data point.<\/h2>\n

Answer:
\n(c) (A) is true, but (R) is false.<\/p>\n

Question 19.<\/p>\n

Assertion (A): Histogram is a type of graph that provides a visual interpretation of numerical data by indicating the number of data points that lie within a range of value.
\nReasons (R): The loc argument of legend() provides the Location of Legend.<\/h2>\n

Answer:
\n(b) Both (A) and (R) are true, but (R) is not correct explanation of (A).<\/p>\n

\"Case<\/p>\n

Question 20.<\/p>\n

Assertion (A): Patterns, trends and correlations that might go undetected in text-based data can be exposed and recognised easier with data visualisation techniques or tools such as line chart, bar chart, pie chart, histogram, scatter chart, etc
\nReasons (R): A marker is any symbol that represents a data value in a line chart or a scatter plot. In other words, the data points being plotted on a graph\/chart are called markers.<\/h2>\n

Answer:
\n(c) (A) is true, but (R) is false.<\/p>\n

MCQ Questions for Class 12 Informatics Practices with Answers<\/a><\/h4>\n","protected":false},"excerpt":{"rendered":"

Plotting Data Using Matplotlib Class 12 Case Based MCQ Questions Case Study 1 Customising the Plot: Data visualisation demand much more from a graph\/plot. The graph or plot should have a proper title, X & Y limits defined, labels, legends et(c) All this make understanding the plot and taking the decision easier. Any graph or …<\/p>\n

Case Based MCQ Questions for Class 12 Informatics Practices \u2013 Plotting Data Using Matplotlib<\/span> Read More »<\/a><\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"default","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","spay_email":""},"categories":[35],"tags":[],"yoast_head":"\nCase Based MCQ Questions for Class 12 Informatics Practices \u2013 Plotting Data Using Matplotlib - MCQ Questions<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Case Based MCQ Questions for Class 12 Informatics Practices \u2013 Plotting Data Using Matplotlib - MCQ Questions\" \/>\n<meta property=\"og:description\" content=\"Plotting Data Using Matplotlib Class 12 Case Based MCQ Questions Case Study 1 Customising the Plot: Data visualisation demand much more from a graph\/plot. The graph or plot should have a proper title, X & Y limits defined, labels, legends et(c) All this make understanding the plot and taking the decision easier. Any graph or … Case Based MCQ Questions for Class 12 Informatics Practices \u2013 Plotting Data Using Matplotlib Read More »\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/\" \/>\n<meta property=\"og:site_name\" content=\"MCQ Questions\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/NCERTSolutionsGuru\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-19T12:40:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-21T10:32:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mcq-questions.com\/wp-content\/uploads\/2022\/01\/MCQ-Questions.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ncertsolguru\" \/>\n<meta name=\"twitter:site\" content=\"@ncertsolguru\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prasanna\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/mcq-questions.com\/#website\",\"url\":\"https:\/\/mcq-questions.com\/\",\"name\":\"MCQ Questions\",\"description\":\"MCQ Questions for Class 1 to 12\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/mcq-questions.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/i0.wp.com\/mcq-questions.com\/wp-content\/uploads\/2022\/01\/MCQ-Questions.png?fit=159%2C13&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/mcq-questions.com\/wp-content\/uploads\/2022\/01\/MCQ-Questions.png?fit=159%2C13&ssl=1\",\"width\":159,\"height\":13,\"caption\":\"MCQ Questions\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/#webpage\",\"url\":\"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/\",\"name\":\"Case Based MCQ Questions for Class 12 Informatics Practices \\u2013 Plotting Data Using Matplotlib - MCQ Questions\",\"isPartOf\":{\"@id\":\"https:\/\/mcq-questions.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/#primaryimage\"},\"datePublished\":\"2022-02-19T12:40:45+00:00\",\"dateModified\":\"2022-02-21T10:32:51+00:00\",\"author\":{\"@id\":\"https:\/\/mcq-questions.com\/#\/schema\/person\/4ba9570f32f2057e70e670c7885e47f3\"},\"breadcrumb\":{\"@id\":\"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mcq-questions.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Case Based MCQ Questions for Class 12 Informatics Practices \\u2013 Plotting Data Using Matplotlib\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/mcq-questions.com\/#\/schema\/person\/4ba9570f32f2057e70e670c7885e47f3\",\"name\":\"Prasanna\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/mcq-questions.com\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g\",\"caption\":\"Prasanna\"},\"url\":\"https:\/\/mcq-questions.com\/author\/prasanna\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Case Based MCQ Questions for Class 12 Informatics Practices \u2013 Plotting Data Using Matplotlib - MCQ Questions","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/","og_locale":"en_US","og_type":"article","og_title":"Case Based MCQ Questions for Class 12 Informatics Practices \u2013 Plotting Data Using Matplotlib - MCQ Questions","og_description":"Plotting Data Using Matplotlib Class 12 Case Based MCQ Questions Case Study 1 Customising the Plot: Data visualisation demand much more from a graph\/plot. The graph or plot should have a proper title, X & Y limits defined, labels, legends et(c) All this make understanding the plot and taking the decision easier. Any graph or … Case Based MCQ Questions for Class 12 Informatics Practices \u2013 Plotting Data Using Matplotlib Read More »","og_url":"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/","og_site_name":"MCQ Questions","article_publisher":"https:\/\/www.facebook.com\/NCERTSolutionsGuru\/","article_published_time":"2022-02-19T12:40:45+00:00","article_modified_time":"2022-02-21T10:32:51+00:00","og_image":[{"url":"https:\/\/mcq-questions.com\/wp-content\/uploads\/2022\/01\/MCQ-Questions.png"}],"twitter_card":"summary_large_image","twitter_creator":"@ncertsolguru","twitter_site":"@ncertsolguru","twitter_misc":{"Written by":"Prasanna","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/mcq-questions.com\/#website","url":"https:\/\/mcq-questions.com\/","name":"MCQ Questions","description":"MCQ Questions for Class 1 to 12","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mcq-questions.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/#primaryimage","inLanguage":"en-US","url":"https:\/\/i0.wp.com\/mcq-questions.com\/wp-content\/uploads\/2022\/01\/MCQ-Questions.png?fit=159%2C13&ssl=1","contentUrl":"https:\/\/i0.wp.com\/mcq-questions.com\/wp-content\/uploads\/2022\/01\/MCQ-Questions.png?fit=159%2C13&ssl=1","width":159,"height":13,"caption":"MCQ Questions"},{"@type":"WebPage","@id":"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/#webpage","url":"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/","name":"Case Based MCQ Questions for Class 12 Informatics Practices \u2013 Plotting Data Using Matplotlib - MCQ Questions","isPartOf":{"@id":"https:\/\/mcq-questions.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/#primaryimage"},"datePublished":"2022-02-19T12:40:45+00:00","dateModified":"2022-02-21T10:32:51+00:00","author":{"@id":"https:\/\/mcq-questions.com\/#\/schema\/person\/4ba9570f32f2057e70e670c7885e47f3"},"breadcrumb":{"@id":"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/mcq-questions.com\/case-based-mcq-questions-for-class-12-informatics-practices-plotting-data-using-matplotlib\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mcq-questions.com\/"},{"@type":"ListItem","position":2,"name":"Case Based MCQ Questions for Class 12 Informatics Practices \u2013 Plotting Data Using Matplotlib"}]},{"@type":"Person","@id":"https:\/\/mcq-questions.com\/#\/schema\/person\/4ba9570f32f2057e70e670c7885e47f3","name":"Prasanna","image":{"@type":"ImageObject","@id":"https:\/\/mcq-questions.com\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g","caption":"Prasanna"},"url":"https:\/\/mcq-questions.com\/author\/prasanna\/"}]}},"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/mcq-questions.com\/wp-json\/wp\/v2\/posts\/37448"}],"collection":[{"href":"https:\/\/mcq-questions.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mcq-questions.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mcq-questions.com\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/mcq-questions.com\/wp-json\/wp\/v2\/comments?post=37448"}],"version-history":[{"count":4,"href":"https:\/\/mcq-questions.com\/wp-json\/wp\/v2\/posts\/37448\/revisions"}],"predecessor-version":[{"id":37483,"href":"https:\/\/mcq-questions.com\/wp-json\/wp\/v2\/posts\/37448\/revisions\/37483"}],"wp:attachment":[{"href":"https:\/\/mcq-questions.com\/wp-json\/wp\/v2\/media?parent=37448"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mcq-questions.com\/wp-json\/wp\/v2\/categories?post=37448"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mcq-questions.com\/wp-json\/wp\/v2\/tags?post=37448"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}