I would say A. Test it and receive feedback
Answer:
macro virus
Explanation:
Macro virus -
A micro virus is written in a micro language , where the programming language is present in the application of software like the powerpoint , excel , microsoft office , word processor , etc.
These virus gets activated as soon as the file is opened and then the virus starts to spread all over the system .
The virus may be send via email , and as soon as the file is opened , the macro virus gets activated.
Hence, from the given information of the question,
The correct term is macro virus.
Answer:
The solution code is written in Python 3
- count = 0
- sum = 0
-
- num = input("Enter a number: ")
-
- while(num != ''):
- sum += float(num)
- count += 1
- num = input("Enter a number: ")
-
- print("Sum : " + str(sum))
- print("Average: " + str(sum / count))
Explanation:
Firstly, we declare two variables count and sum to hold the number of input number and the total of the input number, respectively (Line 1-2)
Next, we prompt user to input the first number (Line 4). While the num is not ' ' (This means it is not "Enter" key), accumulate the num to sum variable and increment count by one (Line 6-8) and then prompt the user to input the next number (Line 9).
At the end, display the sum and average using print function (Line 11 -12).
Pseudocode algorithms are used as prototypes of an actual program.
The required pseudocode algorithm is as follows:
- <em>Start</em>
- <em>input name, score, test_worth</em>
- <em>percent_score = score/test_worth * 100</em>
- <em>print name, percent_score</em>
- <em>Stop</em>
<em />
<em />
The first line begins the pseudocode algorithm
<em>Start</em>
The second line gets input for the student's name, score and the worth of the test
<em>input name, score, test_worth</em>
The third line calculates the percentage score
<em>percent_score = score/test_worth * 100</em>
The next line prints the student's name and the percentage score
<em>print name, percent_score</em>
The last line ends the pseudocode
<em>Stop</em>
<em />
<em />
<em />
Read more about pseudocode algorithms at:
brainly.com/question/21172316