You can use the Relationships group on the ____ tab to create, view, and modify relationships between the tables in a database.

A. DATABASE
B. DATABASE TOOLS
C. TABLES
D. DETAILS


Answer: B

Computer Science & Information Technology

You might also like to view...

Rewrite the following while loops as for loops:

a) ``` int i = 1; while(i<=10) { if (i<5 && i !=2) cout << 'X'; i++; } ``` b) ``` b) int i =1; while(i<=10) { cout << 'X'; i = i + 3; } int n = 100; do { cout << 'X'; n = n + 100; }while(n < 1000); ```

Computer Science & Information Technology

The ________ feature allows you to limit the display to those rows that match the criteria you select

Fill in the blank(s) with correct word

Computer Science & Information Technology

What is the missing code in the contains method for a Lisp-like list? def contains(item, lyst): if isEmpty(lyst): return False elif item == first(lyst): else: return contains(item, rest(lyst))

A. return True B. return contains(item-1) C. return False D. return first(lyst)

Computer Science & Information Technology

Andrew is researching a new operating system for the computers at his workplace. His boss wants the computers to be able to connect to the cloud and thus have security in case the laptops are stolen.   What version of Windows 8.1 does not have the ability to lock the hard drive so that it is unusable if removed from a laptop?

A. Window 8.1 Core B. Windows 8.1 Basic C. Windows 8.1 Pro D. Windows 8.1 Enterprise

Computer Science & Information Technology