Program components in C++ are called ______ and ______.

Fill in the blank(s) with the appropriate word(s).


functions, classes.

Computer Science & Information Technology

You might also like to view...

Both the client and the access point share a key called a pre-shared key (PSK).

What will be an ideal response?

Computer Science & Information Technology

If the computer you are using is a laptop that moves from one network to another, what tab can be used to configure a secondary configuration, such as a static IP if a DHCP server cannot be reached?

A. General Configuration B. Alternate Configuration C. Secondary Configuration D. Fallback Configuration

Computer Science & Information Technology

Buttons for deleting and inserting rows and columns are found in the ________ group under the Layout tab

A) Insert & Delete B) Cut & Paste C) Cut & Insert D) Rows & Columns

Computer Science & Information Technology

An Internet store sends emails to customers and would like to use a database to keep track of which messages are sent to which customers. A message has a message id (mId), a subject (subject), and a body (body). A customer is identied by the email address (email), and customer's data includes the attributes name, sex, householdSize, and address. When an email is sent, the date (sendDate) is

recorded. You can assume any reasonable domains for these attributes. (a) Give an E-R diagram that completely describes the entities and relationships of this plan. (b) Translate the E-R diagram into SQL tables using SQL DDL, by specifying a table for messages, a table for customers, and a table for which messages are sent to which customers, in SQL DDL. (c) How to specify that the subject of a message must not be longer than 60 characters, in SQL? (d) How to require that customers at the same address all have di erent names, in SQL? (e) How to enforce the restriction that the only valid values of sex are male or female, in SQL? (f) How to specify that each message must be sent to no more than one customer, in SQL? (g) How to specify that each customer must be sent one or more messages, in SQL? (h) How to specify that each message must be sent to exactly one customer, in SQL? (i) How to specify that each customer must be sent exactly one message, in SQL? (j) How to specify that a message can be deleted only if no customer has been sent that message, in SQL? (k) Shipping department needs not be concerned with the sex and household size of the customers. Create an element of an external schema which is a view of customers that does not contain these attributes.

Computer Science & Information Technology