The Picture Tools Format tab is the Ribbon location for many different ___________ that can be applied to pictures.

a. styles
b. animations
c. transitions
d. layouts

Answer: a. styles

Computer Science & Information Technology

You might also like to view...

The ________ tool allows the user to arrange fields in a different layout

A) Report Generator B) Blank Report C) Report Maker D) Generic Report

Computer Science & Information Technology

Complete the program below by writing the function largeDiv that finds the largest divisor of a number other than itself. (Hint: try half of the number first. Then as long as you haven't found a divisor, keep subtracting 1 from your trial value. You can be sure that 1 will divide the number if you don't find a larger divisor.)

#include 
using namespace std;

// Write your function prototype for largeDiv here.





int main()
{
	int number;
	int divisor;

	cout << "Enter an integer greater than 1 => ";
	cin >> number;

	divisor = largeDiv( number );

	if ( divisor == 1 )
	   cout << number << " is a prime number." << endl;
	else
	   cout << divisor << " is the largest divisor of " << number << endl;

	return 0;
}

// Write your function definition for largeDiv here.

Computer Science & Information Technology