Which of the following is TRUE about tables in PowerPoint 2013?

A) After a table is inserted, columns can be widened, but rows cannot be changed.
B) PowerPoint can only create simple, uncomplicated tables.
C) Tables are difficult to insert into a slide.
D) Tables organize information on a slide in columns and rows.

D

Computer Science & Information Technology

You might also like to view...

(What Does this Program Do?) What does the following program print?

``` // Exercise 4.22: Mystery3.cpp #include using namespace std; int main() { unsigned int row{10}; while (row >= 1) { unsigned int column{1}; while (column <= 10) { cout << (row % 2 == 1 ? "<" : ">"); ++column; } --row; cout << endl; } } ```

Computer Science & Information Technology

A ____allows you to organize and categorize your presentation to keep things clear.

A. section B. chapter C. baseline D. staging area

Computer Science & Information Technology