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

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;

6 Cards in this Set

  • Front
  • Back
From which interface in the DOM are all the others derived?
The <em> Node </em> interface, with the exception of the <em> NodeList </em> interface.
The DOM is specific to which programming language?
It is not specific to any language.
What is a try/catch block used for?
It is the first step in creating an exception handler. Formatted similarly to an if else statement this particular combination must always be used in conjunction with eachother.
How should a try/catch statement be formatted?
try {
<em>some code</em>
}
catch (<b>ExceptionType name</b>) {
<em>some code</em>
}
What does the catch block do?
It contains code that is executed if and when the exception handler is invoked. There can be multiple catch statments.
What is the major benefit of SAX over DOM technology?
DOM uses large amounts of RAM, so when you have a large XML file it eats up memory. SAX can run through a TB of information by only pulling the data relevant to the tag or other entity the user is searching for. In a short amount of time they can search an XML document using up the data space.