Page 184 - Information_Practice_Fliipbook_Class11
P. 184
• Recording and maintaining personal details of students.
• Maintaining marks scored in assessments and computing results of students.
• Keeping track of student attendance, and
• Managing many other student-related data in the school.
Let us automate the same step by step. Identify the personal details of students from your school identity card and write a program to
accept these details for all students of your school and display them in this format.
Ans.
# Program: Student Management Information System (SMIS)
# Objective: Accept and display personal details of students.
nameSchool = input("Enter Name of School:")
studentName = input("Enter the student name:")
rollNo = int(input("Enter the rollno:"))
studClass = input("Enter the class:")
section = input("Enter the section:")
addressLine1 = input("Enter the address line 1:")
addressLine2 = input("Enter the address line 2:")
city = input("Enter the city:")
pincode = input("Enter the pincode:")
contactNo = input("Enter parent's no:")
print("\t",nameSchool)
print("Student Name:",studentName,"\t \r Rollno:",rollNo)
print("Class:",studClass,"\t\t Section:",section)
print("Address Line1:",addressLine1)
print("Address Line2:",addressLine2)
print("City:",city,"\t\tPincode:",pincode)
print("Parent's/Guardian's Contact No.:",contactNo)
Answers
Multiple Choice Questions
1. (a) 2. (c) 3. (c) 4. (c) 5. (b) 6. (b) 7. (a) 8. (a)
True or False
1. (F) 2. (T) 3. (F) 4. (F) 5. (T) 6. (T)
Fill in the blanks
1. else 2. control 3.break 4. outer, inner 5. endless / infinite 6. pass
170 Touchpad Informatics Practices-XI

