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
Humanities
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.
Q:
Query builder 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 four tabs in a custom SQL statement window, one for each of the select, update, insert, and delete SQL statements.
Q:
When configuring the data source, the option to specify a custom SQL statement or stored procedure allows us to automatically generate insert, update, and delete statements.
Q:
Consecutive numbers at the bottom of DetailsView control allow us to browse through the records in associated table.
Q:
Server control used to make changes to data in the database is called GridView.
Q:
Draw the appropriate server control that will allow you to display the customer data, and describe the steps needed for proper configuration.
Q:
Fill the appropriate elements of the last step in data source configuration assuming we want to retrieve all the customers from customer table in Exposures database.
Q:
List the connection properties that need to be defined in order to set up data connection to Exposure database on Microsoft SQL Server. Describe the benefits of saving the connection details to Web.config file.
Q:
Exposures is a specialty retailer of fine gifts, picture frames, albums, scrapbooks, as well as occasional gift ideas. Visit their Web site at www.exposureonline.com, and using the registration, billing, catalog, and shopping cart screens below, go through each of the five ER design steps.For questions 90-93, please refer to the preceding paragraph and Web screens.Draw the appropriate server control and describe the steps for creating the new connection and selecting the appropriate server provider, assuming Exposures database is available on SQL Server.
Q:
Draw the appropriate server control that will allow you to display the flower data and describe the steps needed for proper configuration.
Q:
Fill the appropriate elements of the last step in data source configuration assuming we want to retrieve all the flowers from flower table in flower database.
Q:
List the connection properties that need to be defined in order to set up data connection to flower database on Microsoft SQL Server. Describe the benefits of saving the connection details to Web.config file.
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 86-89, please refer to the preceding paragraph.Draw the appropriate server control and describe the steps of creating the new connection and selecting the appropriate server provider, assuming flower database is available on SQL Server.
Q:
Draw the appropriate server control that will allow you to display the customer data and describe the steps needed for proper configuration.
Q:
Fill the appropriate elements of the last step in data source configuration assuming we want to retrieve all the customers from customer table in rental database.
Q:
List the connection properties that need to be defined in order to set up data connection to rental database on Microsoft SQL Server. Describe the benefits of saving the connection details to Web.config file.
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-85, please refer to the preceding paragraph.Draw the appropriate server control and describe the steps of creating the new connection and selecting the appropriate server provider, assuming rental database is available on SQL Server.
Q:
The most appropriate server control that will allow the user to indicate the presence (yes) or absence (no) of a certain property is called a(n) __.
Q:
The most appropriate server control that will allow the user to enter text or variable length is called a(n) __.
Q:
Once the ASP page with SqlDataSource and associated GridView control are loaded up in the browser, the GridView appearance will change to reflect the _ in the data source.
Q:
Once a particular SqlDataSource is chosen, the GridView appearance changes to reflect the __ in the data source.
Q:
The first step in configuring the GridView control is to __.
Q:
A server control used to display data in a form of a table is called the _.
Q:
The last step in configuring an SqlDataSource for qtax SQL server database is to retrieve data from the database using the appropriate __.
Q:
The details of the data connection can be saved in a file called __.
Q:
The properties of a data connection that authenticate the user are __ and __.
Q:
The property of a data connection indicating Microsoft SQL Server as a data provider is called __.
Q:
The initial step in configuring an SqlDataSource for qtax SQL Server database is to create a new __.
Q:
The server control used to access an Oracle database qtax is __.
Q:
The server control used to access a Microsoft SQL Server database qtax is _.
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 68-81, please refer to the preceding paragraph.The server control used to access a Microsoft Access database qtax.mdb is _.
Q:
ASP.NET application is tested by viewing it in a __.
Q:
The assistance with entering Visual Basic statements is provided by a feature called __.
Q:
The behavior of controls, such as what happens when a button is clicked, is specified by __.
Q:
The appearance of controls, such as the size and text on a button, can be modified using the __.
Q:
Interaction with the ASP page in the main window of Web Developer can occur in __ view and __ view.
Q:
The visual component of an ASP Web page is stored in a(n) __ file and its programming logic is stored in a(n) __ file.
Q:
In addition to user inputs, the information associated with various Web Form __ is also returned to the Web server.
Q:
ASP Web page is built using a mixture of HTML tags and __.
Q:
The basic ASP.NET component is a(n) __.
Q:
Number of items left in stock for a particular product displayed on an ASP Web page most likely come from a(n) __.
Q:
Active Server Page is a Web page whose content is __ generated in response to user inputs and events related to the page.