0% found this document useful (0 votes)
8 views3 pages

1312 - 109 LAB Project 1 - Tagged

The document outlines a lab project report for a Bachelor in Computer Science course, focusing on a programming assignment that evaluates student grades based on their marks. It includes grading criteria, a description of the project requirements, and instructions for implementing a Python program to assign grades to three students. The report format requires student details, grading marks, and evaluator information for submission.

Uploaded by

rbd45585h5
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views3 pages

1312 - 109 LAB Project 1 - Tagged

The document outlines a lab project report for a Bachelor in Computer Science course, focusing on a programming assignment that evaluates student grades based on their marks. It includes grading criteria, a description of the project requirements, and instructions for implementing a Python program to assign grades to three students. The report format requires student details, grading marks, and evaluator information for submission.

Uploaded by

rbd45585h5
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

College of Computer Science

Department of Computer Science


Bachelor in Computer Science
Semester II Academic Year 2024-2025

1312 CCS-3, Introduction to Programming


Lab Project Report

Student Name: _____________________________________________________________

Student ID: ___________________

Section: 109

Submission Date: ______________

Grading Marks

Criteria Maximum Points Points Awarded Comments


Code 2
Implementation(40%)
Demo(30%) 1.5
Report(20%) 1
Logistics(10%) 0.5
Total 5

Final Grade: ___________________

Evaluator's Name: _____________

Signature: ____________________

Date: ________________________

Project 1
Description
A University evaluates student marks and assigns grades: A+ (95-100),A (90-94), B+ (85-89) B (80-84), C+
(75-79) C (70-74), D+ (65-69) D (60-64), or Fail (below 60). The process repeats for multiple students.
Write a Python program to evaluate grades for 3 students. Your program should:
 Use a for loop to iterate over 3 students (use range (1, 4)).

 Use sequential statements inside the loop to prompt for each student’s marks.

 Use an if-elif-else statement to assign a grade based on the marks.

 Ensure proper indentation for all blocks.

 Print each result as "Student [number] grade: [grade]".

Write your Code here 5


Paste your program and output Screen here 5

Different outputs with different scenarios by screenshots

You might also like