Which method of processing does not use the destructive update approach?

A. batch processing using direct access files
B. real-time processing
C. batch processing using sequential files
D. all of the above use the destructive update approach


Answer: C

Computer Science & Information Technology

You might also like to view...

The recursive case is shown on:

``` 1 float p( float x, int n ) 2 { 3 if ( n == 0 ) 4 return 1; 5 else 6 return x p( x, n – 1 ); 7 } ``` A. lines 5-6 B. lines 3-4 C. line 1 D. lines 3-6

Computer Science & Information Technology

Write an SQL statement that creates the Transcript table.

What will be an ideal response?

Computer Science & Information Technology

?The Spell Checker does not check the text in inserted pictures or objects.

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

Computer Science & Information Technology

Exception class has several properties. The ____________  property provides details about the cause of the exception.

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

Computer Science & Information Technology