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

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;

19 Cards in this Set

  • Front
  • Back
Who created JavaScript?
Netscape Corporation
What was JavaScript's original name?
LiveScript
Why is JavaScript named "JavaScript"?
Netscape Corporation wanted a more recognizable name, so they contacted with Sun Microsystems, creators of Java, to call it "JavaScript," though it is not derived from or a subset of Java.
What is the name of server-side JavaScript?
LiveWire
What is LiveWire?
Server-side JavaScript that can work with back-end server processes.
What is client-side JavaScript?
JavaScript written within an HTML document, which allows programmers to add interactivity to Web pages without using server-side solutions, like CGI.
What are the minimum browser requirements for JavaScript?
Navigator 2.0
IE 3.0
Mosaic 2.0
Lotus Personal Web Client 3.0
What are the six main characteristics of JavaScript?
Javascript...
1. is a scripting language.
2. is object-based, not object-oriented.
3. is event-driven
4. is platform-independent.
5. enables quick development.
6. is relatively easy to learn.
What is a scripting language?
A simple programming language designed to enable computer users to write useful programs easily.
What are the differences between scripting and programming languages?
1. Scripting is interpreted, while programming must be compiled.
2. Scripting is platform independent, while programming is not.
3. Scripting is smaller and less powerful than programming, but easier to use and create.
What is Perl?
A scripting language used for Web server tasks and CGI programs.
What is Tcl and what does it stand for?
Tool Command Language is a scripting language used to develop applications such as GUIs, prototypes, and CGI.
What is REXX?
A procedural scripting language used to create programs and algorithms.
What is a key use of scripting languages?
To allow more complex programs (created by programming languages like C and C++) to work together.
List four common scripting languages.
1. JavaScript
2. Perl
3. Tcl
4. REXX
List common programming languages.
1. C
2. C++
3. Pascal
What is JavaScript syntax similar to?
C or Pascal
What does object-oriented mean?
A collection of objects performing different functions that are related in a hierarchical manner (new objects and subclasses of objects are inherit the properties and methods of those above them). Programming is object-oriented.
What does object-based mean?
A sequence of statements that collectively perform a task and derive functionality from a collection of built-in objects or created objects. Scripting is object-based.