Which of the following methods can you use to group selected slide objects?
A. Click the Group button (Drawing Tools Format tab | Arrange group)
B. Press CTRL+G
C. Right-click selected objects and click Regroup
D. Press SHIFT+CTRL+G
Ans: A, B, C.
A. Click the Group button (Drawing Tools Format tab | Arrange group)
B. Press CTRL+G
C. Right-click selected objects and click Regroup
You might also like to view...
The _________ algorithm requires a use bit to be associated with each page in memory.
A) ?page placement B) ?working set C) ?VSWS ? D) ?page fault frequency
Lori first coded recursive binarySearch() as follows. Where did she go wrong?
``` public static int binarySearch( int[]coll, int target ) { int first = 0, last = target.length, mid = ( first + last ) / 2; if ( first > last ) return -1; // failure — base case if ( coll[ mid ] == target ) // success — base case return mid; if ( coll[ mid ] < target ) { // recursive cases last = mid – 1; return binarySearch( coll, target ); } else { first = mid + 1; return binarySearch( coll, target ); } }
A subclass can directly access ____.
A. public members of a superclass B. private members of a superclass C. all members of a superclass D. none of the members of a superclass
________is an Office component that provides a series of commands related to the open file.
A. OneDrive B. Live Preview C. Format Painter D. Backstage view