A(n) ____________________ is an application program's or an individual user's picture of the database.
Fill in the blank(s) with the appropriate word(s).
view
You might also like to view...
If s1 and s2 are string objects, s1 == s2 is true when
A) s1 = "lion" and s2 = "lioness". B) s1 = "dog" and s2 = "DOG". C) s1 = "cat" and s2 = "cat ". D) None of these because in each case one or more characters in the strings have different ASCII codes. E) None of these because string objects cannot be compared with relational operators.
What is the output of the following code:
``` public class Test { public static void main(String[] args) { String s1 = new String("Java"); String s2 = new String("Java"); System.out.print((s1 == s2) + " " + (s1.equals(s2))); } }``` a. false false b. true true c. false true d. true false
The ____ button allows you to choose whether you want to copy the values from the source area to the destination area with formatting.
A. Copy Options B. Replace Options C. Formatting Options D. Auto Fill Options
The ____ view is often used for heavy data entry.
A. Gantt Chart B. Calendar C. Network Diagram D. None of the above