____ is the ability of a program to start another program by creating a new process.

A. Multithreading
B. Multiprocessing
C. Forking
D. Context switching


Answer: C

Computer Science & Information Technology

You might also like to view...

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

1. Given the two C++ array declarations: ``` int a[10], b[10]; ``` You can successfully compute one array, say a, then assign b to a: ``` a = b; ``` 2. In the sequential search algorithm, items are examined alternately, odd then evens, in order to find whether the target value is in the array (and if the target is present, to the index of the target.) 3. In a sorting an array, the items in the array are rearranged so that ``` for all j and k, if j < k, then array[j]<=array[k] ``` 4. In the definition, ``` double d[10] = {0.0}; ``` only ``` d[0] ```is initialized to zero,the rest are uninitialized, just like x in the definition``` double x; ```

Computer Science & Information Technology

List the styles commonly used to create and place a background image on a Web page.

What will be an ideal response?

Computer Science & Information Technology

The enforcement of ________ integrity helps to maintain the integrity of a database

A) referential B) primary C) foreign D) mandatory

Computer Science & Information Technology

Which of the following social media sites is designed for MMORPG?

A) Facebook B) Instagram C) YouTube D) Webkinz

Computer Science & Information Technology