Exam 13: Working With Access Databases and Linq

arrow
  • Select Tags
search iconSearch Question
flashcardsStudy Flashcards
  • Select Tags

A(n)____ is an electronic file that contains an organized collection of related information.

(Multiple Choice)
4.8/5
(27)

The field used to link a child table to a parent table is known as the ____ in the child table.

(Multiple Choice)
4.7/5
(37)

The ____ object is responsible for retrieving the appropriate information from the database and storing it in the DataSet.

(Multiple Choice)
4.7/5
(29)

Case 1 - MaidToOrder The database for a cleaning service company contains the following table, named tblCustomer, that includes customer invoice data. The InvoiceNum, CustomerNum, and InvoicePaid fields contain text. The InvoiceDate field contains dates. The InvoiceAmt field contains numbers. InvoiceNum CustomerNum InvoiceDate InvoiceAmt InvoicePaid 631 13020 01/15/2013 200.00 632 15411 01/20/2013 685.00 633 10002 01/23/2013 75.00 634 13104 01/23/2013 150.00 635 12124 01/26/2013 75.00 636 13328 02/02/2013 350.00 637 10206 02/02/2013 175.00 638 10334 02/07/2013 450.00 -Which of the following statements will calculate a total for all of the unpaid invoices?

(Multiple Choice)
4.8/5
(28)

If you do not take deliberate steps in your code to handle exceptions,Visual Basic "handles" them for you.

(True/False)
4.9/5
(32)

A ____ is a single item of information about a person,place,or thing-such as a name,a salary amount,a Social Security number,or a price.

(Multiple Choice)
4.8/5
(36)

The intersection of a row and a column in a DataGridView control is called a ____.

(Multiple Choice)
4.9/5
(26)

When an application is running,you can use the ____ control to move from one record to the next in the dataset,as well as to add or delete a record and save any changes made to the dataset.

(Multiple Choice)
4.9/5
(36)

The ____ clause of LINQ is used to arrange the records in either ascending (the default)or descending order by one or more fields.

(Multiple Choice)
4.9/5
(40)

Before an application can access the data stored in a database,you need to connect the application to the database.

(True/False)
4.9/5
(42)

Write the code needed to include a Try...Catch statement that will handle an error that might occur while saving in an application.Use the following statements in the Try block,along with a message for the user of the Student Data Application that notifies the user the changes have been saved.Provide an error message if an exception occurs. Me.Validate() Me.TblStudentBindingSource.EndEdit() Me.TableAdapterManager.UpdateAll(Me.StudentsDataSet)

(Essay)
4.8/5
(41)

List the five objects that are placed in the component tray when a table object is bound to a DataGridView control.

(Essay)
4.7/5
(33)

A(n)____ is a group of related fields that contain all of the necessary data about a specific person,place,or thing.

(Multiple Choice)
4.8/5
(29)

The ____ property (of the DataGridView)allows you to format a column's data,as well as change the column's width and alignment.

(Multiple Choice)
4.8/5
(33)

Relational databases contain multiple tables that relate to each other in some way.How are primary and foreign keys used in such a database?

(Essay)
5.0/5
(44)

What is the DataGridView control and how is it used?

(Essay)
4.8/5
(37)

Case 1 - MaidToOrder The database for a cleaning service company contains the following table, named tblCustomer, that includes customer invoice data. The InvoiceNum, CustomerNum, and InvoicePaid fields contain text. The InvoiceDate field contains dates. The InvoiceAmt field contains numbers. InvoiceNum CustomerNum InvoiceDate InvoiceAmt InvoicePaid 631 13020 01/15/2013 200.00 632 15411 01/20/2013 685.00 633 10002 01/23/2013 75.00 634 13104 01/23/2013 150.00 635 12124 01/26/2013 75.00 636 13328 02/02/2013 350.00 637 10206 02/02/2013 175.00 638 10334 02/07/2013 450.00 -Which of the following statements will select all invoices of $200.00 or more and arrange the invoices in ascending order by Customer number?

(Multiple Choice)
4.8/5
(36)

When you drag an object from a dataset to an empty area on the form,the computer creates a control and automatically binds the object to it.

(True/False)
4.9/5
(36)

Writing LINQ Statements The tblBicycle table contains five fields: ItemNum, ItemName, Color, Price, and Quantity. The Price and Quantity fields are numeric; all other fields are text. The dataset name is BicycleDataSet. -Write the code to calculate the average price of all of the bicycles in inventory.

(Essay)
4.7/5
(39)

A database file contained in a project is referred to as a logic database file.

(True/False)
4.8/5
(39)
Showing 21 - 40 of 60
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)