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.
I found that,
On the basis of Model, computer is classified as: XT Computer (Extra Technology): It cannot support GUI based operating system. Its processing speed is 4.77 MHz and Intel 8080, 8086, 8088 series of microprocessors is used. PS/2 Computer: It is a laptop computer which is rechargeable and battery based system.
Answer:
The answer to this question is given below in the explanation section
Explanation:
This question is about matching the column. So, Gino used the various preinstalled application software and system tools for the following purposes.
Disk cleaner: Gino needs to locate unnecessary files that are taking up a considerable amount of space.
Data recovery: Gino notices many corrupted files and wants to extract good data from them.
Utility diagnostic program: Gino needs to check the operational status of the computer's hardware and software.
Antivirus: Gino's system is acting odd after browsing the internet, and he needs to scan the system.
Answer:
It's complicated.
Explanation:
I don't want to write the entire thing for you. However, there are multiple ways to think about this. Individualism vs. collectivism (groupthink) is a big debate itself.
---
Couple of points for the individual:
- Choice of personal freedom
- Not overly complicated (focuses on the self)
- The needs of the self comes before the needs of the many (in some situations, this might prove helpful)
Couple of points for the group:
- Shared thoughts and feelings may result in a bigger camaraderie than the thoughts of the self
- Compassion for humanity vs. selfishness
- A tendency to forge alliances
---
Interpret these for yourself. One's own mind is crucial in understanding the philosophical structures of life's biggest questions. And for it only being 2 paragraphs. Like, isn't that 10 sentences? I don't know what your teacher is looking for but your own personal thoughts on the matter may be good writing.
---
Here's a very-hard-to-see-the-text-but-helpful website, from the City University of New York (this talks about the theories of the individual and group interest in relation to government, but it <em>may</em> provide useful to you in understanding): https://www.qcc.cuny.edu/socialsciences/ppecorino/intro_text/Chapter%2010%20Political%20Philosophy/Group_vs_Individual_Interest.htm
Answer:
An array with such a large size should be sorted using Mergesort algorithm
Explanation:
Mergesort has worst case complexity of O(nlogn) whereas quicksort algorithm has worstcase complexity of O(
). So quicksort works better with smaller arrays and mergesort works better than quicksort in case of larger arrays. Insertion sort is used when array is almost sorted.So, if array is unsorted at greater level, insertion sort should not be used.It also has a worst case complexity of O(
).