A(n) ________ copy of a file or folder should be copied to another drive in case the original drive is damaged or the data is lost for some reason

Fill in the blank(s) with correct word


backup

Computer Science & Information Technology

You might also like to view...

Assume the file Alphabet.txt contains 26 records, the lowercase letters of the alphabet in ascending order. What happens when the following code is executed?

``` Dim letter As String Dim sr As IO.StreamReader = IO.File.OpenText"Alphabet.txt" Do While Not sr.EndOfStream letter = sr.ReadLine Dim sw As IO.StreamWriter = IO.File.CreateText(letter.ToUpper & "txt" sw.WriteLine(letter.ToUpper & "xt" sw.Close() Loop sr.Close() ``` (A) A"too many files open"error is produced. (B) Twenty-six files are created and named with one of the uppercase letters of the alphabet and each containing only its own file name. (C) A file called z is created containing all of the letters of the alphabet in lowercase. (D) An "nvalid file name"error is produced.

Computer Science & Information Technology

When an object is ____, the remaining components are automatically grouped.

A. united B. divided C. compounded D. masked

Computer Science & Information Technology

Which type of network consists of a group of clients and servers under the control of one central security database?

a.Domain b.Homegroup c.IEEE 802 .11 d.Workgroup

Computer Science & Information Technology

_____ means that one technology can work with another technology.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology