Question 11
1 pts
Which of the following programming scenarios would benefit most from the use of lists?
Writing a program which calculates the length of an inputted number of days in seconds.
Writing a program which needs to make use of various properties of a car (e.g. its fuel efficiency,
year of manufacturer and model name).
O Writing a program to find the value of 1453 cubed.
O Writing a program to calculate statistics about a large set of exam scores (e.g. highest/lowest
score, median average score).
Question 12
1 pts

Respuesta :

Lanuel

The programming scenarios which would benefit most from the use of lists is: D. writing a program to calculate statistics about a large set of exam scores (e.g highest/lowest score, median average score).

Computer programming involves the process of designing, writing and developing executable codes (instructions) or collection of data to perform a specific task on a computer.

In Computer programming, a list refers to an abstract data type that represents a finite number of either ordered or unordered values. Also, a list can be used to perform the following tasks:

  • Add data items.
  • Delete data items.
  • Store data items.

In this context, a computer program that is used to calculate statistics about a large set of exam scores (e.g highest/lowest score, median average score) would benefit most from the use of lists because it contains series of numerical value that can be sorted as an ordered or unordered array.

Read more on lists here: https://brainly.com/question/15092271