How does the Play Across Slides from the Audio Options group differ from the Loop Until Stopped check box?

A) Play Across Slides lets you set the number of slides you wish the audio to play, the Loop Until Stopped option does not
B) Play Across Slides allows you to choose two or more sounds to play simultaneously; the Loop Until Stopped option only allows you to play one over and over again
C) Play Across Slides lets you choose up to 10 slide for the audio to play across; the Loop Until Stopped option allows an unlimited number of slides
D) Play Across Slides doesn't let you choose the number of slides to play the audio; the Loop Until Stopped option does


D

Computer Science & Information Technology

You might also like to view...

The Search option is located on the ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

You can adjust the position of the photo using the _____ options in the task pane.

A. scale B. transitions C. offset D. zoom

Computer Science & Information Technology

Briefly list the five items that should be included in a good change request.

What will be an ideal response?

Computer Science & Information Technology

Consider the following class definitions:class bClass{public:void setX(int a);//Postcondition: x = a;void print() const;private:int x;};class dClass: public bClass{public:void setXY(int a, int b);//Postcondition: x = a; y = b;void print() const;private:int y;};Which of the following correctly sets the values of x and y?

A. void dClass::setXY(int a, int b) { bClass::setX(a); y = b; } B. void dClass::setXY(int a, int b) { x = a; y = b; } C. void dClass::setXY(int a, int b) { x = bClass::setX(a); y = bClass::setY(b); } D. void dClass::setXY(int a, int b) { x = bClass.setX(a); b = y; }

Computer Science & Information Technology