हिंदी

During a practical exam, a student Ankita has to fill in the blanks in a Python program that generates a bar chart. This bar chart represents the number of books read by four students in one month. - Informatics Practices

Advertisements
Advertisements

प्रश्न

During a practical exam, a student Ankita has to fill in the blanks in a Python program that generates a bar chart. This bar chart represents the number of books read by four students in one month. 

Student Name Books Read
Karan 12
Lina 9
Raj 5
Simran 3

Help Ankita to complete the code.

import _____ as plt #Statement-1
students = ['Karan', 'Lina', 'Raj', 'Simran']
books_read = [12, 9, 5, 3]
plt.bar( students, _____, label='Books Read') #Statement-2
plt.xlabel('Student Name')
plt._____('Books Read') #Statement-3
plt.legend()
plt.title('_____') #Statement-4
plt.show()
  1. Write the suitable code for the import statement in the blank space in the line marked as Statement-1.
  2. Refer to the graph shown above and fill in the blank in Statement-2 with suitable Python code.
  3. Fill in the blank in Statement-3 with the name of the function to set the label on the y-axis. 
  4. Refer the graph shown above and fill the blank in Statement-4 with suitable Chart Title. 
कोड लेखन
रिक्त स्थान भरें

उत्तर

import matplotlib.pyplot as plt #Statement-1
students = ['Karan', 'Lina', 'Raj', 'Simran']
books_read = [12, 9, 5, 3]
plt.bar( students, books_read, label='Books Read') #Statement-2
plt.xlabel('Student Name')
plt.ylabel ('Books Read') #Statement-3
plt.legend()
plt.title('Number of Books Read by Students') #Statement-4
plt.show()
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2024-2025 (March) Board Sample Paper
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×