If you accidentally place two copies of the same table list in the Relationships window, which is the correct method for removing the extra table?
A) Right-click the table, and select Hide Table.
B) Right-click the table, and select Remove Table.
C) Right-click the table, and select Delete Table.
D) Click the table, and then on the Design Tab in the Relationships group, click Remove Table.
A
You might also like to view...
Match the following Acts with their corresponding descriptions
1. Wiretap Act a. makes it unlawful for local, state, or federal law enforcement authorities to search or seize those materials which may be publishable 2. Communications Assistance for Law Enforcement Act b. protects against unauthorized interception of electronic communications 3. Electronic Communications Privacy Act c. prohibits telephone carriers from developing technology which impedes law enforcement investigations 4. Privacy Protection Act d. fights terrorism and computer crime alike 5. USA Patriot Act e. protects against unauthorized access, disclosure, or interception by the government, individuals, and third parties while providing potentially harsh civil penalties.
Consider classes A, B and C, where A is an abstract superclass, B is a concrete class that inherits from A and C is a concrete class that inherits from B. Class A declares abstract method originalMethod, implemented in class B. Which of the following statements is true of class C?
a. Method originalMethod cannot be overridden in class C—once it has been implemented in concrete class B, it is implicitly final. b. Method originalMethod must be overridden in class C, or a compilation error will occur. c. If method originalMethod is not overridden in class C but is called by an object of class C, an error occurs. d. None of the above.