Word's ________ feature saves a document you are working with every ten minutes

Fill in the blank(s) with correct word


AutoRecover

Computer Science & Information Technology

You might also like to view...

Given the following stack declaration, which of the following function definitions would correctly implement the destructor?

struct StackFrame { char data; StackFrame *link; }; typedef StackFrame* StackFramePtr; class Stack { public: Stack( ); Stack(const Stack& a_stack); ~Stack( ); void push(char the_symbol); char pop( ); bool empty( ) const; private: StackFramePtr top; }; a. top=NULL; b. char next; while (! empty( )) next = pop( );//pop calls delete. c. char next; while(!empty( )) next = push(); d. none of the above

Computer Science & Information Technology

In order to operate properly, technical and behavioral controls have to be coordinated from within a single consistent ____.

A. foundation B. landscape C. resource D. framework

Computer Science & Information Technology

____ give you fast access to folders you use frequently.

A. Favorites B. Public folders C. Shared folders D. Private folders

Computer Science & Information Technology

A ________ database allows the user to place the same field in two tables and then join the tables using the related fields

A) primary B) cascading C) single form D) relational

Computer Science & Information Technology