A(n) ____________________ is an arrangement of placeholders that can hold text, graphics, and other slide content.
Fill in the blank(s) with the appropriate word(s).
layout
You might also like to view...
A smaller version of a image that usually links to the larger image is called a:
a. hyperlink b. thumbnail image c. small image d. wallpaper
WPA ____________________ was designed for individuals or small office home office (SOHO) settings of generally 10 or fewer employees.
Fill in the blank(s) with the appropriate word(s).
Identify and correct the error(s) in each of the following:
a) if ( age >= 65 ); cout << "Age is greater than or equal to 65" << endl; else cout << "Age is less than 65 << endl"; b) if ( age >= 65 ) cout << "Age is greater than or equal to 65" << endl; else; cout << "Age is less than 65 << endl"; c) int x = 1, total; while ( x <= 10 ) { total += x; ++x; } d) While ( x <= 100 ) total += x; ++x; e) while ( y > 0 ) { cout << y << endl; ++y; }
The ____ function should be used before deleting files and directories to determine if the file or directory name exists.
A. file_exists() B. dir_exists() C. file_dir_exists() D. dir_file_exists()