If you include a period in a UNIX file name, the characters following the period are treated as __________.

a. part of the file name
b. the file name extension
c. you cannot include a period in a UNIX file name
d. filler


b. the file name extension

Computer Science & Information Technology

You might also like to view...

How many times is the following code invoked by the call recursive(4)?

``` void recursive( int i ) { using namespace std; if (i < 8) { cout << i << " "; recursive(i); } } ``` a) 2 b) 4 c) 8 d) 32 e) This is an infinite recursion.

Computer Science & Information Technology

In a segmented logical address, the __________ points to the __________ which holds the segment’s base address.

a. offset/base b. segment descriptor /segment selector c. base/offset d. segment selector/segment descriptor

Computer Science & Information Technology

To select a variety of files that are not adjacent in order to delete them as a group, hold down the ________ while selecting each one

A) F1 B) Ctrl C) Alt D) Shift

Computer Science & Information Technology

If you have more than one picture or shape on a slide, you can align them to each other by clicking the Align button in the Close group of the Picture Tools Format tab. _________________________

Answer the following statement true (T) or false (F)

Computer Science & Information Technology