Exam 14: Working With Databases
Exam 1: Introduction to Computing and Programming75 Questions
Exam 2: Data Types and Expressions75 Questions
Exam 3: Methods and Behaviors75 Questions
Exam 4: Creating Your Own Classes75 Questions
Exam 5: Making Decisions75 Questions
Exam 6: Repeating Instructions75 Questions
Exam 7: Arrays75 Questions
Exam 8: Advanced Collections74 Questions
Exam 9: Introduction to Windows Programming75 Questions
Exam 10: Programming Based on Events75 Questions
Exam 11: Advanced Object-Oriented Programming Features75 Questions
Exam 12: Debugging and Handling Exceptions75 Questions
Exam 13: Working With Files75 Questions
Exam 14: Working With Databases75 Questions
Exam 15: Web-Based Applications73 Questions
Select questions type
The DataGridView is a customizable control that can be bound to a data source.
(True/False)
4.8/5
(27)
string sConnection =
"Provider=Microsoft.ACE.OLEDB.12.0;" +
"Data Source=member.accdb";
The above connection string is associated with which type of database?
(Multiple Choice)
4.9/5
(39)
Using the local copy of data stored in a datagrid object, you can delete, insert new records or change the values of individual fields in the data grid.
(True/False)
4.8/5
(41)
DataAdapter classes are used to exchange data between a database source and a dataset object.
(True/False)
5.0/5
(35)
A cache of records retrieved from some data source that may contain one or more tables from the data source describes a(n) ____.
(Multiple Choice)
4.8/5
(28)
A data reader class allows read-only forward retrieval of data from the database.
(True/False)
4.8/5
(40)
The query language used to access, manipulate, and update data in a database is called Data Query Language.
(True/False)
4.9/5
(34)
The Dataset Designer tool provides a visual representation of the objects contained in the dataset object.
(True/False)
4.9/5
(43)
SELECT Address FROM member
WHERE FirstName = 'Bill' AND LastName = 'King';
Given the above SQL statement, which of the following statements is true?
(Multiple Choice)
4.8/5
(42)
The ADO.NET architecture encapsulates the details of differing database structures such as
Oracle, as opposed to Access, in the form of ____.
(Multiple Choice)
4.8/5
(32)
string sConnection =
"Provider=Microsoft.ACE.OLEDB.12.0;" +
"Data Source=member.accdb";
Using the segment of code above, what is member.accdb?
(Multiple Choice)
4.9/5
(37)
The CommandBuilder object used for accessing data from database tables can be used for datasets that map to one or more database tables.
(True/False)
4.7/5
(38)
All of the following are core classes that make up the ADO.NET data providers EXCEPT ____.
(Multiple Choice)
4.9/5
(41)
To position the OleDbDataReader object onto the row of the first retrieved query result, you use the ____________ method of the OleDbDataReader class. This method is also used to advance to the next record after the previous one is processed.
(Short Answer)
4.8/5
(42)
A Data Source Configuration Wizard is available in Visual Studio to automatically generate the connection string, create dataset and table adapter objects, and bring the data into an application.
(True/False)
4.8/5
(52)
You use the data adapter object to populate the data reader object.
(True/False)
4.7/5
(45)
After values have been retrieved using the OleDbDataReader, you can send the ordinal location of data fields as arguments to methods of the OleDbDataReader class.
(True/False)
4.8/5
(40)
The ____________ class can be used to generate SQL statements automatically so that you do not have to do additional SQL programming beyond the initial SELECT statement used to retrieve the records.
(Short Answer)
5.0/5
(38)
____________ provide a communication link between the application and a database. ____________ have a built-in connection object and enable you to configure the InsertCommand, UpdateCommand, and DeleteCommand SQL queries using the Properties window.
(Short Answer)
4.9/5
(26)
You identify which records and fields you want to retrieve from the database using the SQL ____________ statement.
(Short Answer)
4.7/5
(38)
Showing 41 - 60 of 75
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)