Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
ODBC, OLE DB, ADO, and ASP Questions
In Open Database Connectivity (ODBC), does the Driver Manager accept application ODBC API calls and route the requests to the appropriate driver, effectively submitting the SQL to the targeted data source type?
In Object Linking and Embedding Database (OLE DB), is the programming interface defined by COM objects together with the properties and methods (interfaces) they expose to consumers?
In ODBC terminology, is a “data source” (DSN) the configuration that identifies the target database and the DBMS/driver that will process requests?
Do OLE DB tabular data providers expose result data in the form of rowsets (a tabular abstraction similar to a table)?
In ODBC configuration, is a “User Data Source” intended to be shared among all users, or is it scoped only to the current operating system user profile?
Is an OLE DB rowset best described as an abstraction of a table (relation), while an ADO Recordset is a higher-level wrapper over that rowset—rather than the relation being an abstraction of a recordset?
Does ODBC distinguish driver architectures as single-tier and multiple-tier (reflecting direct file/data store access versus client–server drivers)?
Is ODBC a Microsoft-specific data access technology, or is it a cross-platform, DBMS-independent standard adopted well beyond the Microsoft ecosystem?
Does ODBC provide a DBMS-independent interface that Web server programs (and other applications) can use to access and process relational data sources?
In classic ADO (ActiveX Data Objects), is an ADO Connection object created only after an ADO Errors collection is created, or is the Errors collection owned by the Connection and populated after operations?
ODBC portability claim:\nIf an application is written against the Open Database Connectivity (ODBC) interface, can it process any ODBC-compliant database with no program code changes at all?
OLE DB roles and terminology:\nAre the users of OLE DB functionality called data providers (rather than consumers)?
ODBC data source types:\nIs a file data source (File DSN) restricted to a single local computer?
OLE DB object model:\nIs an OLE DB collection defined as an object that contains a group of other objects?
Rowset semantics:\nIs an OLE DB rowset effectively equivalent to a cursor (a navigable result set of rows)?
OLE DB provider types:\nDoes OLE DB define two broad provider categories—tabular data providers and service providers?
Core software engineering concept:\nIs an abstraction best described as a generalization of something (capturing essential characteristics while omitting detail)?
ODBC conformance:\nDo ODBC conformance levels specify which SQL statements, expressions, functions, and data types a driver can process?
System DSN creation:\nDoes defining a system data source name (System DSN) require specifying the driver type and the identity/location of the target database?
ADO usage scope:\nDoes ActiveX Data Objects (ADO) sit above OLE DB and support only scripting languages—not compiled programming languages?
1
2