• 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/7

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;

7 Cards in this Set

  • Front
  • Back

What does WPF do, in a nutshell?

provides a single platform capable of handling things like video, 3D graphics, and audio. WPF can use your computer's hardware to accomplish these tasks

what is a markup language?

a text based notation for describing something

In XML what are the things thath specify a document's structure and how you delimit those things?

Elements are what specify a document's structure, and they are delimited by start and end tags

True/False: Every XML document must have exactly one root element that contains all the other elements.

True

What software is required for processing XML?

an XML parser, which makes sure that the XML doc conforms to W3C standards

What is the thing that precedes the root element and what does one look like?

It's called the prolog and it looks like this:



<?xml version = "1.0"?>

What is a DTD and what does it do?

it defines the proper structure of the XML file in question so that the XML parser can check to see if the XML doc has the proper structure.