Case 2Carolyn is a web designer who is responsible for the home page for a real estate company with branches in all 50 states.  The home page should be attractive and functional, allowing potential sellers and buyers to find information quickly.
Carolyn has some code that she types over and over as she creates the web site. What can Carolyn create using JavaScript to help speed up the process?

A. Macros
B. Style conversions
C. Code hints
D. CSS rules


Answer: C

Computer Science & Information Technology

You might also like to view...

What is the printout of the following code?

``` #include using namespace std; class Count { public: int count; Count(int c) { count = c; } Count() { count = 0; } }; void increment(Count c, int& n) { c.count++; n++; } int main() { Count myCount; int n = 0; for (int i = 0; i < 100; i++) increment(myCount, n); cout << "myCount.count is " << myCount.count; cout << " n is " << n; return 0; } ``` a. myCount.count is 0 n is 0 b. myCount.count is 100 n is 100 c. myCount.count is 0 n is 100 d. myCount.count is 100 n is 0

Computer Science & Information Technology

Windows allows you to open many windows, depending on the amount of ____________________ that is installed on the computer.?

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

By default, themes are stored in the ________ folder

A) Picture B) Templates C) Theme D) Documents

Computer Science & Information Technology

The ____ protocol is nonproprietary and is a standard supported by the Internet Engineering Task Force.

TLS TSL SSL SLT

Computer Science & Information Technology