Answer:
Explanation:
Spreadsheet software is the correct answer
Answer:
names = ['Peter', 'Bruce', 'Steve', 'Tony', 'Natasha', 'Clint', 'Wanda', 'Hope', 'Danny', 'Carol']
numbers = [100, 50, 10, 1, 2, 7, 11, 17, 53, -8, -4, -9, -72, -64, -80]
for index, element in enumerate(names):
if index % 2 == 0:
print(element)
for num in numbers:
if num >= 0:
print(num, end = " ")
count = 0
for i in numbers:
count += i
avg = count/len(numbers)
print("sum = ", count)
print("average = ", avg)
for num in numbers:
if num % 2 != 0:
print(num, end = " ")
Explanation:
I'm stuck on the last two.. I have to do those too for an assignment.
Answer:
Decision Support System (DSS)
Explanation:
- Decision Support System is an interactive information system that intends to help the people in an organization in business decision making.
- These software based systems obtain large volumes of knowledge produced from the various related information systems included in corporate business processes.
- DSS comprises of three main components that are, software system, database and user interface.
- DSS gathers, manages and assesses business data to enable better business decision making and planning.
- This aids organizations to detect and solve various semi-structured and unstructured problems and make decisions.
- It helps to make the decision making process quick and efficient.
- It helps to automate and simplify organizational processes and makes interpersonal interaction easier. DSS is flexible and adaptive to support the changes in decision making process of a user.
- DSS enables decision makers to collect a range of data from various sources like raw data, records, management, business models, administrators etc.
- DSS are used in medical diagnosis (clinical decision support systems),business management, forest management, railway systems, agricultural production etc.
Answer:

Explanation:
Given

Required
Write an equivalent expression in C
The given expression uses
brackets ();
Subtraction -
and
Division /
In C,
Bracket is represented using ()
Subtraction is represented using -
Division is represented using /
Hence
The equivalent of
in C is

A is anything that puts computer information at risk