Programs to try using lists in R - Assignment 6
1. Student Grade Card System Problem Statement Create a list to store the details of a student including: Roll Number Name Marks in three subjects (stored as a vector) Attendance Percentage Perform the following operations: Display all student details. Calculate the total marks. Calculate the average marks. Determine whether the student has passed ( mark >=40 , max marks=100) 2. Shopping Cart Management System Problem Statement Create a list containing: Customer Name Product Names (vector) Product Prices (vector) Quantity Purchased (vector) Perform the following operations: Display the products purchased. Calculate the amount for each product. Calculate the total bill. Find the most expensive item. 3. Employee Payroll System Problem Statement Create a list storing: Employee ID Employee Name Basic Salary Allowances Deductions Calculate: Gross Salary Net Salary Annual Salary Display all details. 4. Cricket Team ...