The Footer icon is found in which tab?
A) Home B) Insert C) View D) Page Layout
B
You might also like to view...
When a dynamic array with a class for a base type is declared, which constructor is called?
a. the copy constructor b. the destructor c. the default constructor d. an explicit constructor
What is the output of the following code fragment?
int f1(int base, int limit)
{
if(base > limit)
return -1;
else
if(base == limit)
return 1;
else
return base * f1(base+1, limit);
}
int main()
{
cout << f1(12,4)<
Which of the following loops counts backwards from 20 to 10?
A. Declare Numeric countDown = 20 While countdown > 0 Display countDown countDown = countDown - 1 End While B. Declare Numeric countDown = 20 While countdown > 10 Display countDown countDown = countDown - 1 End While C. Declare Numeric countDown = 20 While countdown = 10 Display countDown countDown = countDown - 1 End While D. Declare Numeric countDown = 20 While countdown > 9 Display countDown countDown = countDown - 1 End While
Three types of graphics software are paint, photo-editing, and gaming software. ____________________
Answer the following statement true (T) or false (F)