Question

CIS 120 Final Project Case Study Grades Analysis 1. 4. Overview Please use the Excel data file to analyze the grades for stud
0 0
Add a comment Improve this question Transcribed image text
Answer #1

1. Step 1: Insert a new column next to the column with full name.

Step 2: Select the names in column.

Step 3: Go to Data -> Text to Columns option (shown in screenshot)

Step 4: Keep the file type as ‘Delimiter’ and click ‘Next’ (shown in screenshot)

Step 5: Select the checkbox for ‘Space’ and uncheck for ‘Tab’ and click next

Step 6: Click ‘Finish’ on next step.

Step 7: Names will get separated to next column. Rename the column headers.

File Step 3ne Insert Page Layout Formulas Data Review View Developer A. A 1 Clear Reapply Y Advanced Step 5 Sort Filter From

2. Step 1: Let’s consider the sample data as given in the screenshot.

Step 2: Select the cell to put Minimum, Maximum and Average values and put the below formula

Test 1 -> Min and put formula =MIN(C2:C6) where C2: C6 is range of the Test 1 marks

Test 1 -> Max and put formula =MAX(C2:C6) where C2: C6 is range of the Test 1 marks

Test 1 -> Average and put formula =AVERAGE(C2:C6) where C2: C6 is range of the Test 1 marks

A B с D E F G Test2 Final Test 70 45 68 60 78 58 1 First Name 2 Any 3 Liza 4 Allen 5 Adam 6 Grayson 7 Last Name Testi Frank b

3. Repeat the step 2 for Test 2

4. Repeat step 2 for Final Test

Final sheet will look as below:

D12 F А 1 First Name 2 Any 3 Liza 4 Allen 5 Adam 6 Grayson 7 fx =AVERAGE(D2:D6) B с D E Last Name Test1 Test2 Final Test Fran

5. Final Average is average of three tests with below logic:

Final Average = (Test 1 Average + Test 2 Average + Final Test Average)/3

Let’s use a formula to calculate the above logic:

AVERAGE(Test 1 Average , Test 2 Average , Final Test Average)

Select the cell where to put the final average and put below formula:

=AVERAGE(D11:D13) where D11:D13 are cells with other averages.

D14 F A First Name 2 Any 3 Liza Allen Adam 5 Grayson fx =AVERAGE(D11:013) B с Last Name Testi Test2 Final Test Frank 70 45 68

6. Select a new column where want to insert the new expected marks to obtain 95 average and put below formula:

=95*(3)-SUM(C6:D6) where C6 and D6 are the cells holding Test 1 and Test 2 marks.

Consider the points for student Grayson in below sample:

F6 A G B С Last Name Test1 Frank belle Holy Rocj Singh =95*(3)-SUM(C6:06) D E F Test2 Final Test Expected Final Test to get A

**As per HomeworkLib gudielines, answering first 4 parts is mandatory, when required parts to be answered are not mentioned. Kindly refer above 6 parts and let me know if there is any clarification needed at any step. As the data was not available, current solution is on sample data in screenshots.Thanks.

Add a comment
Know the answer?
Add Answer to:
CIS 120 Final Project Case Study Grades Analysis 1. 4. Overview Please use the Excel data...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Microsoft Excel Question. I'm having trouble using the vlookup function, I have calculated a final numerical...

    Microsoft Excel Question. I'm having trouble using the vlookup function, I have calculated a final numerical grade for a hypothetical course, and and trying to use a set of numerical grades with their corresponding letter grades to get a vlookup function to return the letter grade from the numerical grade. However the function for some reason only returns the lowest value out of the set grades, not the closest match. Projects Classwork Teamwork/Integrity 100 100 A+ 98 A+ 97 A...

  • In C Langage Write a grading program for a class with the following grading policies:- a. There are two quizzes, each gr...

    In C Langage Write a grading program for a class with the following grading policies:- a. There are two quizzes, each graded on the basis of 10 points. b. There is one midterm exam and one final exam, each graded on the basis of 100 points. c. The final exam counts for 50 percent of the grade, the midterm counts for 25 percent and the two quizzes together count for a total of 25 percent. Grading system is as follows:-...

  • c++ implement a student class Determine the final scores, letter grades, and rankings of all students...

    c++ implement a student class Determine the final scores, letter grades, and rankings of all students in a course. All records of the course will be stored in an input file, and a record of each student will include the first name, id, five quiz scores, two exam scores, and one final exam score. For this project, you will develop a program named cpp to determine the final scores, letter grades, and rankings of all students in a course. All...

  • A continuation of your grading software will be made (you do not need your other code...

    A continuation of your grading software will be made (you do not need your other code for this assignment). In this one you will intake a students first name and last name from a file called "students.txt". Next, there is a file called grades.txt that contains the grades in a course. There will be three grades for each student in "grades.txt" (see example file bellow). In "student.txt" there are two students first and last names. In "grades.txt" the grades for...

  • C++ Language A continuation of your grading software will be made you do not need your...

    C++ Language A continuation of your grading software will be made you do not need your other code for this assignment). In this one you will intake a students first name and last name from a file called "students.txt". Next, there is a file called grades.txt that contains the grades in a course. There will be three grades for each student in "grades.txt" (see example file bellow). In "student.txt" there are two students first and last names. In "grades.txt" the...

  • C++ Write a program that reads the number of students in the class, then reads each...

    C++ Write a program that reads the number of students in the class, then reads each student's name and his/her test score. Print out each student name, test score and grade, and the average score of the whole class. The program must use vectors and loops for the implementation. The grades are determined as follows: A >= 90; 80 <= B < 90; 70 <= C < 80; 60 <= D < 70; F < 60.

  • Java Gradebook

    Requirements:1.     The number of students to enter will be dynamic, minimum of 5.2.     Ask the user for a student's:a.     first nameb.     last namec.      student IDd.     4 exam grades (each out of 100 points)Calculate the student's:e.     final letter grade.3.     For each student, if the user enters invalid data he will be allowed to enter it again.4.     Letter grade calculation will use the standard grading scale.a.     90% - 100% = Ab.     80% - 89% = Bc.      70% - 79% = Cd.     60% - 69% = De.     Below 60% = F5.     The output will consist of:a.     A list of...

  • First, create two inputs that can be stored in variables consisting of a student's name. When...

    First, create two inputs that can be stored in variables consisting of a student's name. When the program begins ask "Who is the first student?" followed by "Who is the second student?" You only have to have two students for this program. Ask the user for the scores for the last three test grades for each of the students .   After the user has entered both names, and three scores for each, the program should display the following as output:...

  • Create a C++ program to calculate grades as well as descriptive statistics for a set of...

    Create a C++ program to calculate grades as well as descriptive statistics for a set of test scores. The test scores can be entered via a user prompt or through an external file. For each student, you need to provide a student name (string) and a test score (float). The program will do the followings: Assign a grade (A, B, C, D, or F) based on a student’s test score. Display the grade roster as shown below: Name      Test Score    ...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT