Question: Write a Python function that will take a list of even length as the parameter and find the CGPA of a student using that list. In the list, two consecutive values denote the grade point of a course and the corresponding credit for that particular course. The formula of calculating CGPA for this task is given below: CGPA = summation of (individual course grade point x corresponding credit) | total credits Finally, return the value in the function call. [You do not need to take the list as user input. But your program should work for any similar format list passed as the parameter.] Function Call 1: calc_cgpa([4, 3, 3.7, 3, 4, 4]) Sample Output 1: 3.91 Explanation: In the given list, the even indexed values contain the grade points of three courses (4, 3.7 and 4) and the odd indexed values contain the corresponding credit for those courses (3, 3 and 4). So, the CGPA of that student will be: [(4 * 3) + (3.7 * 3) + (4 * 4)] / (3 + 3 + 4) = 3.91 which will be returned in the function call.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
Please follow the question and the sample. And please do not use any built in function.
Question:
Write a Python function that will take a list of even
length as the
parameter and find the CGPA of a student using
that list. In the list, two
consecutive values denote the grade point of a
course and the corresponding
credit for that particular course. The formula of
calculating CGPA for this
task is given below:
CGPA = summation of (individual course grade
point x corresponding credit)
| total credits
Finally, return the value in the function call.
[You do not need to take the list as user input. But
your program should
work for any similar format list passed as the
parameter.]
Function Call 1:
calc_cgpa([4, 3, 3.7, 3, 4, 4])
Sample Output 1:
3.91
Explanation: In the given list, the even indexed
values contain the grade
points of three courses (4, 3.7 and 4) and the odd
indexed values contain
the corresponding credit for those courses (3, 3
and 4). So, the CGPA of
that student will be:
[(4 * 3) + (3.7 * 3) + (4 * 4)] / (3 + 3 + 4) = 3.91
which will be returned
in the function call.
Transcribed Image Text:Question: Write a Python function that will take a list of even length as the parameter and find the CGPA of a student using that list. In the list, two consecutive values denote the grade point of a course and the corresponding credit for that particular course. The formula of calculating CGPA for this task is given below: CGPA = summation of (individual course grade point x corresponding credit) | total credits Finally, return the value in the function call. [You do not need to take the list as user input. But your program should work for any similar format list passed as the parameter.] Function Call 1: calc_cgpa([4, 3, 3.7, 3, 4, 4]) Sample Output 1: 3.91 Explanation: In the given list, the even indexed values contain the grade points of three courses (4, 3.7 and 4) and the odd indexed values contain the corresponding credit for those courses (3, 3 and 4). So, the CGPA of that student will be: [(4 * 3) + (3.7 * 3) + (4 * 4)] / (3 + 3 + 4) = 3.91 which will be returned in the function call.
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY