subject

Write a class ssrow. objects of this class should keep track of string name, int score, int weight, string calc. ssrow also has a tostring method that returns this data in order, separated by commas. name + "," + score + "," + weight + "," + calc further design of the ssrow class is left to you. add what you need, but don't get carried away. write a class sswriter that has a main method. for each of the grading categories (lab, reading quizzes, group work, midterm, project, final, instructor discretion), query the user for a score, and create the following ssrow objects: "lab", , 20, "=b1*c1/100" "reading quizzes", , 10, "=b2*c2/100" "group work", , 10, "=b3*c3/100" "midterm", , 20, "=b4*c4/100" "project", , 15, "=b5*c5/100" "final", , 20, "=b6*c6/100" "instructor discretion", , 5, "=b7*c7/100" open a file for output with a file type of csv (say mygrades. csv, for example). write the tostring value for each ssrow to the file. finally, write a row "average",=(d1+d2+d3+d4+d5+d6+d7) open mygrades. csv with excel or libreoffice calc.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 01:00
Which option marks all modification made within a document? review comment track changes balloons
Answers: 1
question
Computers and Technology, 23.06.2019 00:40
Consider the following statements: struct nametype{string first; string last; }; struct coursetype{string name; int callnum; int credits; char grade; }; struct studenttype{nametype name; double gpa; coursetype course; }; studenttype student; studenttype classlist[100]; coursetype course; nametype name; mark the following statements as valid or invalid. if a statement is invalid, explain why.a.) student.course.callnum = "csc230"; b.) cin > > student.name; c.) classlist[0] = name; d.) classlist[1].gpa = 3.45; e.) name = classlist[15].name; f.) student.name = name; g.) cout < < classlist[10] < < endl; h.) for (int j = 0; j < 100; j++)classlist[j].name = name; i.) classlist.course.credits = 3; j.) course = studenttype.course;
Answers: 1
question
Computers and Technology, 25.06.2019 04:30
Consider a list of full names formatted “firstname lastname”, like ["jules verne", "alexandre dumas", "maurice druon"]. write a list comprehension that produces a list with the full names in the format “lastname, firstname”. the resulting list should look like ['verne, jules', 'dumas, alexandre', 'druon, maurice']. the simplest solution may involve a nested comprehension: [ …. for … in [ … for … in … ]].
Answers: 3
question
Computers and Technology, 25.06.2019 05:30
When a game allows you to pick party members from a large pool, each with different classes and roles but in which no single party combination is clearly superior to others, the game is using: intransitive relationships transitive relationships orthogonal relationships parallel relationships
Answers: 1
You know the right answer?
Write a class ssrow. objects of this class should keep track of string name, int score, int weight,...
Questions
question
Mathematics, 09.07.2019 08:00
Questions on the website: 13722361