Which keystroke combination moves focus to the last field of the last record?
A. [Alt][Ctrl][Up Arrow]
B. [Ctrl][Up Arrow]
C. [Ctrl][End]
D. [Ctrl][Page Up]
Answer: C
You might also like to view...
A(n) ____________________ lets you record information about people.
Fill in the blank(s) with the appropriate word(s).
What is displayed after line 7 is run?
``` string new1, new2; 1 string text1 = “C++”; 2 string text2 = “math”; 3 string text3 = “chocolate”; 4 stringstream ss; 5 ss << “I love” << text3 << “and” << text2; 6 new1 = ss.str(); 7 cout << new1; 8 st << text1 << “is easy to learn!”; 9 new2 = st.str(); 10 cout << st;``` A. I love chocolate and math B. I love C++ C. I love D. I love math and chocolate.
How does the Home action button differ from the Beginning action button?
A) Both can be set to go to any slide, but the Beginning button can also be set to go to the final slide. B) The Home button goes to the first slide; the Beginning button goes to the first line of the current slide. C) The Beginning button can be set to go to any slide; the Home button moves to the first slide. D) The Home button can be set to go to any slide; the Beginning button moves to the first slide.
When output is meant for the screen, you should use the ____ keyword.
A. Declare B. Print C. Display D. Input