When do you need to use a fully qualified URL in a hyperlink?

a. when creating a link to the same web page
b. when linking to a page in another folder on the same site
c. when linking to a page on an external web site
d. never


c. when linking to a page on an external web site

Computer Science & Information Technology

You might also like to view...

Given the following class definition and the following member function header, which is the correct way to output the private data? class Pe

class Person { public: void outputPerson(ostream& out); private: int age; float weight; int id; }; void Person::outputPerson(ostream& out) { //what goes here? } a. out << person.age << person.weight << person.id; b. out << person; c. out << age << weight << id; d. outputPerson(person);

Computer Science & Information Technology

Prepare opening comments that give the class an overview of project management.

What will be an ideal response?

Computer Science & Information Technology

The most common type of relationship in an OpenOffice Base database is the ________ relationship

Fill in the blank(s) with correct word

Computer Science & Information Technology

In Java, a period is used to terminate a statement.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology