Create a background pattern for your Web site. Use the Mirror tool (located in the Brush menu) to make the pattern symmetrical.

What will be an ideal response?


Computer Science & Information Technology

You might also like to view...

When a component is added to a region in the BorderLayout manager:

A) the component retains its original size B) it results in a compile time error, if it is too large C) the component is stretched so it fills up the entire region D) the region is resized to fit the component

Computer Science & Information Technology

What is the output of the following code?

``` #include using namespace std; class Foo { public: int x; // data field int y; // data field Foo() { x = 10; y = 10; } void p() { int x = 20; // local variable cout << "x is " << x << " "; cout << "y is " << y << endl; } }; int main() { Foo foo; foo.p(); return 0; } ``` a. x is 20 y is 10 b. x is 10 y is 20 c. x is 20 y is 20 d. x is 10 y is 10

Computer Science & Information Technology

The process of navigating the Internet either for a specific item or for an interesting topic, and then quickly moving from one item to the next is called ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

Using the Save As dialog box to save into a different location has this result: the original document will be deleted

Indicate whether the statement is true or false

Computer Science & Information Technology