COGNITIVE ASSESSMENT
Which of the following is recommended to avoid malware infections?

A. Some software touted as offering malware protection actually installs more malware.
B. Flash memory storage from a friend should be safe to use without scanning.
C. Malware authors typically avoid social media.
D. If a pop-up window warns you that your computer is infected with a virus, follow its instructions.


Answer: A

Computer Science & Information Technology

You might also like to view...

Which statements successfully swap the contents of an array at index 3 and index 4?

a) values( 3 ) = values( 4 ) values( 4 ) = values( 3 ) b) values( 4 ) = values( 3 ) values( 3 ) = values( 4 ) c) Dim temp As Integer = values( 3 ) values( 3 ) = values( 4 ) values( 4 ) = temp; d) Dim temp As Integer = values( 3 ) values( 3 ) = values( 4 ) values( 4 ) = values( 3 ) A

Computer Science & Information Technology

Animated special effects begin as a sequence of ____ images, in which one or more objects are moved or otherwise changed between each frame.

A. 2-D B. 3-D C. double D. triple

Computer Science & Information Technology

What will be output from the following code:

``` public void t e s t 7 ( ) { int x = 1 2 ; int y = 0 ; while ( x < 10 j j y < 1) { x = x + 1 ; y = y + 1 ; System . out . p r i n t l n ( x + " , " + y ) ; } } ```

Computer Science & Information Technology

In CentOS 7, the command to change a directory is __________. (Choose all that apply.)

a. the same as the command in Windows 10, and case does not matter b. the same as the command in Windows 10, but it must be lowercase c. complicated and not widely used d. able to use standardized channels to move up and down in the directory tree structure

Computer Science & Information Technology