Describe a macro virus.
What will be an ideal response?
A macro virus is written in a script known as a macro. A macro is a series of commands and instructions that can be grouped together as a single command. Macros often are used to automate a complex set of tasks or a repeated series of tasks. Macros can be written by using a macro language, such as Visual Basic for Applications (VBA), and are stored within the user document (such as in an Excel .XLSX worksheet). Once the document is opened, the macro instructions execute, whether those instructions are benign or a macro virus.
You might also like to view...
Answer the following statements true (T) or false (F)
1. In an inheritance situation, you may not pass arguments to a base class constructor. 2. More than one class may be derived from a base class. 3. A derived class may become a base class if another class is derived from it. 4. The base class access specification can be viewed as a filter that base class members must pass through when becoming inherited members of a derived class.
The ________ displays buttons to perform frequently used commands with a single click at the top of your screen while working within Microsoft Office programs
A) File Tab B) Title Bar C) Status Bar D) Quick Access Toolbar
A table in Microsoft Word or a spreadsheet in Microsoft Excel, can be used as a flat database.
Answer the following statement true (T) or false (F)
Assume you have three int variables: x = 2, y = 6, and z. Choose the value of z in the following expression: z = (y / x > 0) ? x : y;.
A. 2 B. 3 C. 4 D. 6