Accounting
Anthropology
Archaeology
Art History
Banking
Biology & Life Science
Business
Business Communication
Business Development
Business Ethics
Business Law
Chemistry
Communication
Computer Science
Counseling
Criminal Law
Curriculum & Instruction
Design
Earth Science
Economic
Education
Engineering
Finance
History & Theory
Humanities
Human Resource
International Business
Investments & Securities
Journalism
Law
Management
Marketing
Medicine
Medicine & Health Science
Nursing
Philosophy
Physic
Psychology
Real Estate
Science
Social Science
Sociology
Special Education
Speech
Visual Arts
Design
Q:
Jerry, the owner of Exotic Flower's Inc., built a small greenhouse to store several types of exotic flowers that he purchases from wholesale suppliers around the world. Each exotic flower Jerry buys and resells falls into one of several flower groups that differ with respect to their storage needs, duration, time in bloom, price, etc. Each of the orders placed by customers specifies the type of exotic flower, the supplier it came from, the date of order, expected delivery date, flower condition on delivery, as well as the quantity ordered. Customer's data contain all the standard information needed to collect payment and deliver the flowers.For questions 87-91, please refer to the preceding paragraph.Configure DetailsView control for flower table in flowers database so that new records can be inserted and existing records updated and deleted.
Q:
Configure GridView control for customer table so that you can update an existing record of your choice.
Q:
Using DetailsView control, delete the record of you inserted in question 82.
Q:
Using DetailsView control, update a record of your choice in customer table.
Q:
Using DetailsView control, insert a new record of your choice into customer table.
Q:
Plymouth Car Rental (PCR) started with two compact cars and has expanded its fleet of vehicles with several sedans and trucks. When a customer books a rental, his/her age has to be at least 18 for compact cars and sedans, which are rented by the day and must be returned the following morning by 11 A.M. Trucks are rented for a maximum of six hours. The owner requires a deposit on the reservation to be paid within seven days of booking. Vehicle records consist of the makes and types (Honda sedan), color, seating capacity, required deposit, rental rate and rental limit (in hours). Customer data consists of customer's names, addresses, phone numbers, and birth dates. Bookings identify the customer, vehicle, as well as the time rented and returned. There can be several payments up until the reservation date. Payments must reflect the payment status for each booking, including deposit, when the deposit was made, then each of the payments made, and when the entire payment was completed.For questions 82-86, please refer to the preceding paragraph.Configure DetailsView control for customer table in rental database so that new records can be inserted, existing records updated and deleted.
Q:
Use __ SQL statement to configure the data source to delete all the fields for a particular record from employee table.
Q:
Use __ SQL statement to configure the data source to edit all the fields (except ssn) for a particular record in employee table.
Q:
Use __ SQL statement to configure the data source to insert a new record into employee table.
Q:
For years, QuickTax, Inc. has helped small businesses manage their taxes. The management wants a database to keep track of clients, employees, and jobs. Managers need to keep track of client names, addresses, contact persons, phone numbers, and email addresses. They also need to track the employee's social security numbers, names, and birth dates. Also, the company needs to be able to keep track of the data on each job an employee performs for each of their clients.For questions 78-81, please refer to the preceding paragraph.Use __ SQL statement to configure the data source to select all the fields and records from employee table would.
Q:
All of the table maintenance activities performed with DetailsView control can be accomplished with GridView control except __ records.
Q:
Advanced SQL Generation Options allows us to automatically generate __ SQL statements based on a __ statement.
Q:
The data source will have a record removed by writing an appropriate SQL statement under __ tab.
Q:
When using the Edit link button to update a record, another screen is presented with __ and __ links.
Q:
The data source will be altered by writing an appropriate SQL statement under _ tab.
Q:
Setting AutoGenerateDeleteButton property to True will place __ link into DetailsView control.
Q:
DetailsView control property AutoGenerateDeleteButton should be set to __ in order to be able to remove a record from the data source.
Q:
When using the New link button to insert a new record, another screen is presented with __ and __ links.
Q:
For the columns that are checked off in the process of creating an Insert statement, __ cells associated with them appear in the query grid.
Q:
Because the Insert statement will add an entire new record to the table, __ of the table columns should be __ in the query grid.
Q:
Query grid helps us by placing a skeleton __ into the query grid.
Q:
The data source will receive an additional record by writing an appropriate SQL statement under __ tab.
Q:
Setting AutoGenerateEditButton property to True will place __ link into DetailsView control.
Q:
DetailsView control property AutoGenerateEditButton should be set to __ in order to be able to edit records into the data source.
Q:
DetailsView control property that allows us to browse through the records of the data source is called __.
Q:
_ allows us to use either graphical interface when building a query or a place to write SQL statements to accomplish the same.
Q:
There are __ tabs in a custom SQL statement window, one for each of_ SQL statements.
Q:
Consecutive numbers at the bottom of DetailsView control allow us to browse through the __ of associated table.
Q:
Server control used to make changes to the data in a database is called _.
Q:
Configuring the data source to remove all the fields for a particular record in employee table would use which SQL statement?a) Select * From employeeb) Insert Into employee (ssn, name, bdate) Values (?,?,?)c) Update employee Set name = ?, bdate = ? Where ssn = ?d) Delete From employee Where ssn = ?
Q:
Configuring the data source to edit all the fields (except ssn) for a particular record from employee table would use which SQL statement?
a) Select * From employee
b) Insert Into employee (ssn, name, bdate) Values (?,?,?)
c) Update employee Set name = ?, bdate = ? Where ssn = ?
d) Delete From employee Where ssn = ?
Q:
Configuring the data source to insert a new record into employee table would use which SQL statement?
a) Select * From employee
b) Insert Into employee (ssn, name, bdate) Values (?,?,?)
c) Update employee Set name = ?, bdate = ? Where ssn = ?
d) Delete From employee Where ssn = ?
Q:
For years, QuickTax, Inc. has helped small businesses manage their taxes. The management wants a database to keep track of clients, employees, and jobs. Managers need to keep track of client names, addresses, contact persons, phone numbers, and email addresses. They also need to track the employee's social security numbers, names, and birth dates. Also, the company needs to be able to keep track of the data on each job an employee performs for each of their clients.For questions 53-56, please refer to the preceding paragraph.Configuring the data source to select all the fields from employee table would use which SQL statement?a) Select * From employeeb) Insert Into employee (ssn, name, bdate) Values (?,?,?)c) Update employee Set name = ?, bdate = ? Where ssn = ?d) Delete From employee Where ssn = ?
Q:
All of the table maintenance activities performed with DetailsView control can be made with GridView control, excepta) inserting new records.b) updating existing records.c) deleting existing records.d) All the activities performed with DetailsView can be made with GridView.
Q:
Optimistic concurrency does which of the following as you work on a particular record in the database?
a) Checks if somebody else made a change since you retrieved the record
b) Checks if you made the change before releasing the record to somebody else
c) Checks if you made a change since the last time you retrieved this record
d) Checks if the record was changed within last couple of days
Q:
Advanced SQL Generation Option allows us to do which of the following?
a) Generate Insert statements.
b) Generate Update statements.
c) Generate Delete statements.
d) All of the above
Q:
Query Builder helps us delete an existing record in a table, by placing a skeleton of which of the following SQL statements?
a) Insert Into table () Values ()
b) Update table Set fields Where ()
c) Remove From table Where ()
d) Delete From table Where ()
Q:
Setting DetailsView control AutoGenerateDeleteButton property to True will enable us to do which of the following?
a) Add a new record.
b) Update an existing record.
c) Delete an existing record.
d) Delete an existing column.
Q:
When Edit link is tested in the browser, DetailsView control does which of the following?
a) Displays a list of empty textboxes for all fields except the primary key
b) Displays the Update link that executes the Update SQL statement
c) Displays the Cancel link that allows us to stop the update operation
d) All of the above
Q:
After all appropriate columns are checked off, which of the following appears next to these columns in the query grid of an Update SQL statement?
a) Table from which each column originates
b) Set column with checked or unchecked boxes
c) New Value column with question marks
d) All of the above
Q:
Query Builder helps us edit an existing record in a table by placing a skeleton of which of the following SQL statements?
a) Insert Into table () Values ()
b) Update table Set fields Where ()
c) Edit table Into () Insert ()
d) Delete From table Where ()
Q:
The data source will be edited by writing an appropriate SQL statement under which of the following?
a) Select tab
b) Insert tab
c) Update tab
d) Edit tab
Q:
Setting AutoGenerateEditButton property to True will place which of the following into DetailsView control?
a) New link
b) Update link
c) Edit link
d) Delete link
Q:
Setting DetailsView control AutoGenerateEditButton property to True will enable us to do which of the following?
a) Add a new record.
b) Update an existing record.
c) Add a new field.
d) Delete a column.
Q:
When New link is tested in the browser, DetailsView control does which of the following?
a) Displays a list of empty textboxes, one for each field
b) Displays the Insert link that executes the Insert SQL statement
c) Displays the Cancel link that allows us to stop the insert operation
d) All of the above
Q:
The question marks are placed in Values (?,?,...) part of the Insert SQL statement because of which of the following reason(s)?
a) This is what the new data is.
b) We don"t know what to enter.
c) Actual data will be entered later.
d) Actual data will never be entered.
Q:
After all appropriate columns are checked off, which of the following appears next to these columns in the query grid of an Insert SQL statement?
a) A place to enter new data for each column
b) A New Value column with blank cells
c) Values (,,,,,,) in the SQL statement
d) All of the above
Q:
Since the Insert statement will add a row to a table, which of the following fields should be checked off in the query grid?
a) Primary key
b) All the fields
c) Only updateable fields
d) No fields should be checked.
Q:
Query Builder helps us insert a new record into a table, by placing a skeleton of which of the following SQL statements?
a) Insert Into table () Values ()
b) Update table Set fields Where ()
c) Edit table Into () Insert ()
d) Delete From table Where ()
Q:
The data source will be altered by writing an appropriate SQL statement under which of the following?
a) Select tab
b) Insert tab
c) Update tab
d) Delete tab
Q:
Setting AutoGenerateInsertButton property to True will place which of the following into DetailsView control?
a) Links to individual records
b) New link
c) Update link
d) Links to individual fields
Q:
Which DetailsView control property should be set to True in order to be able to insert records into the data source?
a) AutoGenerateInsertButton
b) AutoGenerateUpdateButton
c) AutoGenerateEditButton
d) AutoGenerateDeleteButton
Q:
Enable paging property of DetailsView control allows us to do which of the following?
a) Browse through the columns of the data source.
b) Browse through the fields of the data source.
c) Browse through the records of the data source.
d) Browse through the files of the current record.
Q:
Query builder allows us to create queries using which of the following?
a) Only by writing SQL statements
b) Only by graphically designing the query
c) Both by writing SQL statements or by graphically designing the query
d) By going through a query wizard that builds the query for us
Q:
Custom SQL statement window contains which of the following tabs?
a) Select statement tab only
b) Update, insert, and delete tabs
c) Select, update, insert, and delete tabs
d) Select, update, and insert tabs
Q:
When configuring the data source, the option to specify a custom SQL statement or stored procedure allows us to do which of the following?
a) Automatically generate insert, update, and delete statements.
b) Write our own insert, update, and delete SQL statements.
c) Pick the columns and build criteria to restrict resulting records.
d) Pick the columns and sort them by particular fields.
Q:
Configure data source step of configuring DetailsView server control allows us specify how to retrieve data using which of the following?
a) A custom SQL statement or stored procedure
b) Specifying columns from a table
c) Specifying columns from a query
d) All of the above
Q:
Consecutive numbers at the bottom of DetailsView control allow us to do which of the following?
a) Browse through the columns of associated table.
b) Browse through the fields of associated table.
c) Browse through the records of associated table.
d) Browse through fields of the displayed record.
Q:
Server control used to make changes to the data in the database is which of the following?
a) DataView
b) DetailsView
c) GridView
d) SourceView
Q:
Configuring the data source to select all the fields and records from employee table would use Insert Into employee (ssn, name, bdate) Values (?,?,?) SQL statement.
Q:
Configuring the data source to delete all the fields for a particular record from employee table would use Delete From employee Where ssn = ? SQL statement.
Q:
Configuring the data source to edit all the fields (except ssn) for a particular record in employee table would use Update employee Set name = ?, bdate = ? Where ssn = ? SQL statement.
Q:
For years, QuickTax, Inc. has helped small businesses manage their taxes. The management wants a database to keep track of clients, employees, and jobs. Managers need to keep track of client names, addresses, contact persons, phone numbers, and email addresses. They also need to track the employee's social security numbers, names, and birth dates. Also, the company needs to be able to keep track of the data on each job an employee performs for each of their clients.For questions 23-26, please refer to the preceding paragraph.Configuring the data source to insert a new record into employee table would use Select * From employee SQL statement.
Q:
Optimistic concurrency checks the database prior to saving changes to make sure somebody else has not made a change since we retrieved the record.
Q:
All of the table maintenance activities performed with DetailsView control can be accomplished with GridView control as well.
Q:
DetailsView control associated with automatic inserts, updates, and deletions, should have all Enable tasks checkboxes unchecked.
Q:
Advanced SQL Generation Options allow us to automatically generate Insert, Update, and Delete SQL statements based on the Select statement.
Q:
When the Delete link in DesignView is tested, the links to records at the bottom of the control will decrease by one.
Q:
A record in the data source will be removed by writing an appropriate SQL statement under Delete tab.
Q:
The data source will be edited by writing an appropriate SQL statement under Update tab.
Q:
Setting AutoGenerateEditButton property to True will place New link into DetailsView control.
Q:
DetailsView control property AutoGenerateEditButton should be set to True in order to be able to edit records in the data source.
Q:
When the New link in DesignView is tested, a list of empty text boxes will allow us to enter the new record into the corresponding table.
Q:
As the table columns are checked off, they appear in the query grid with New Value cells associated with them.
Q:
Because the Insert statement will add a row to a table, only certain columns in the table should be checked off in the query grid.
Q:
Query Builder helps us by placing a skeleton Insert Into table Values statement in the query grid.
Q:
The data source will be altered by writing an appropriate SQL statement under Select tab.
Q:
Setting AutoGenerateInsertButton property to True will place New link into DetailsView control.
Q:
DetailsView control property AutoGenerateInsertButton should be set to False in order to be able to insert records into the data source.
Q:
Enable paging will create links to records in the data source.