student_details < -data.frame(
stud_id=c(1: 10),
stud_name=c("Anu", "Abhi", "Bob",
"Charan", "Chandu",
"Daniel", "Girish", "Harish",
"Pandit", "Suchith"),
age=c(18, 19, 17, 18, 19, 15, 21,
16, 15, 17),
section=c(1, 2, 1, 2, 1, 1, 2, 1,
2, 1)
)
print(student_details)