A scoring rubric is an attempt to communicate expectations of quality around a task. In many cases, scoring rubrics are used to delineate consistent criteria for grading. Because the criteria are public, a scoring rubric allows teachers and students alike to evaluate criteria, which can be complex and subjective.
Answer:
(you have to copy and paste into the browser and I had to space out so brainly would let me post I hope you do well on the assignment)
Explanation:
h t t p s : / / w w w . y o u t u b e . c o m / w a t c h ? v = d Q w 4 w 9 W g X c Q
The remove_sort_reverse function takes a list, removes all "s" in the list elements, sorts and then reverses the remaining elements
<h3>The actual program</h3>
The program in Python, where comments are used to explain each line is as follows:
#This defines the function
def remove_sort_reverse(myList):
#This iterates through the list
for i in range(len(myList)):
#This removes all the s in the list elements
myList[i] = myList[i].replace("s","")
#This sorts and reverses the list elements
myList.sort(reverse=True)
#This returns the updated list
return(myList)
Read more about Python functions at:
https://brainly.in/question/10211834