Which of the following is true about creating a blank PivotTable?
A) A PivotTable may not be created on a connection to an external dataset.
B) A PivotTable may only be created from a table.
C) A PivotTable may not be created from a range.
D) A PivotTable may be created on the same worksheet as the source data.
D
You might also like to view...
What is the result of the following code?
``` 1 ArrayList mysteryArrayList = new ArrayList(); 2 String output = ""; 3 4 mysteryArrayList.add( "1" ); 5 mysteryArrayList.add( "2" ); 6 mysteryArrayList.add( "3" ); 7 mysteryArrayList.add( "4" ); 8 mysteryArrayList.add( "5" ); 9 mysteryArrayList.remove( 1 ); 10 mysteryArrayList.remove( 2 ); 11 12 Iterator mysteryIterator = mysteryArrayList.iterator(); 13 14 while ( mysteryIterator.hasNext() ) 15 { 16 String currentElement = ( String ) mysteryIterator.next(); 17 18 output += ( currentElement + " " ); 19 } 20 21 JOptionPane.showMessageDialog( null, output, "Mystery", 22 JOptionPane.INFORMATION_MESSAGE ); ```
____ is a lock option for layer components within Photoshop.
a. Lock transparent pixels b. Lock parameters c. Lock image pixels d. Lock position