• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/30

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

30 Cards in this Set

  • Front
  • Back
<system.serviceModel> element
An element located near the bottom of the web.config file which holds the specifications for all your hosted services
App_WebReferences folder
A Web services folder that contains files with the extensions wsdl, xsd, disco, and discomap and that define the references to the Web services that Web applications use
DataReader
An object that provides the properties and methods that enable the Web developer to retrieve data from a database on the server
DataSet
An object that provides the properties and methods that enable the Web developer to retrieve dta from a database on the server and which can also be used to change the database
DTD
Short for Document Type Definition, it's one of several ways an XML and XHTML document structure can be defined with rules
schema
The format of an object or database
Web Service
An application programming interface (API) that allows service-oriented applications to access Web-based service providers
Windows Communication Foundation (WCF)
Used in ASP.NET to easily create and consume web services
XML
Used to simplify data storage, transport data between systems having incompatable formats, separate data from HTML, save configuration settings, define XHTML, and so on.
XML Validation
A program that uses rules to make sure no mistakes were made in creating the XML file
What is the PRIMARY purpose of XML?

To provide the additional syntax rules for XHTML

To transfer data between Web server and database

To improve the functionality of Web pages

To structure hierarchical data
To structure hierarchical data
What informs us of a broken DTD rule in a web page?

Any browser

A schema Validator

IntelliSense

All of the above
IntelliSense
How does the Schema compare to the DTD?

The Schema is more powerful than a DTD

The Schema is simpler than a DTD

Both use XML syntax to record the rules

Both are used to validate XHMLT documents
The Schema is more powerful than a DTD
What is NOT true about the Primary key of a database table?

A table is unable to store data without the primary key

It is one of the many available database constraints

It essentially "names" each row in the table

It must be unique and not NULL
A table is unable to store data without the primary key
How does the DataReader object compare to the DataSet object?

The DataReader reads all the data with a single method, while the DataSet reads a single row at a time as it moves forward

The DataReader is more powerful but reads more slowly than that DataSet

The DataSet uses the DataAdapter and the DataReader does not

The DataSet uses SQL to retrieve data, while the DataReader reads it directly without the need for SQL
The DataSet uses the DataAdapter and the DataReader does not
How is a DataSet object used to change the source data?

It uses the SQL method

It uses the Update method of the DataAdapter Object

It uses SQL through the Command object

It automatically changes the source as changes are made in the object
It uses the Update method of the DataAdapter Object
What is the primary purpose of the DataAdapter object?

To fill the DataSet with data

To connect the DataReader to the database

To adapt our controls to a variety of databases

To adapt our data into a format that will fit into a DataSet
To fill the DataSet with data
What is a valid advantage or disadvantage to using Visual Web Developer to create a WCF service?

Visual Web Developer is the only way to create a WCF service

It creates more efficient code than could be created with a text editor

It is easier to create a WCF service with Visual Web Developer than with a text editor

It is easier to create a WCF service with a text editor thatn with Visual Web Developer
It is easier to create a WCF service with Visual Web Developer than with a text editor
What is NOT true about App_WebReferrences?

It is a default directory for a WCF service

It keeps the Web site from having to look for some needed files

It is just one of many App_ directories

It must always be available to ASP.NET
It must always be available to ASP.NET
Which element is a grandchild of one of the 3 child elements of the <system.serviceModel> element of the web.config file

<endpoint>
<services>
<bindings>
<behaviors>
<endpoint>
The ___ markup language is the superset of XML
SGML or Standard General
Every XML document must have one and only one ___ element
root or top-level
Both XML and ___ require that every tag have an ending tag
XHTML or SGML
The ___ validator not only defines the structure of an XML document, it defines the content and attribute values
schema
Both the DataSet and DataReader objects require the ___ object to make the connection to the datasource
Connection or SqlConnection
The DataReader object can use the SqlCommand object to send the SQL statement while the DataSet would use the ___
SqlDataAdapter
Once the SQL statement is sent to the server, the DataReader uses the ___ method to execute the statement
ExecuteReader
The ___ method is used by the DataReader to retrieve indivudal rows sent from the server
read
The ___ .exe file is used to test the client side of a WCF service
WcfTextClient
The special directory used by Visual Web Developer to hold WCF service files is called ___
AppWebResources