When creating a hyperlink to a document that already exists, the ________ box can be used to find the already existing document

Fill in the blank(s) with correct word


Look in

Computer Science & Information Technology

You might also like to view...

A new class of objects can be created conveniently by ________; the new class (called the ________) starts with the characteristics of an existing class (called the ________), possibly customizing them and adding unique characteristicsof its own.

a. inheritance, superclass, subclass. b. composition, subclass, superclass c. inheritance, subclass, superclass d. composition, superclass, subclass

Computer Science & Information Technology

In list view, the Kind column lists the file type or the program that created the file.

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

Computer Science & Information Technology

When advising a customer on the purchase of a new power supply, you should explain that if the power supply runs at peak performance all the time, it will overheat. Additionally, power supplies can lose some capacity over time. Considering these conditions, you recommend that the customer purchase a power supply with a power rating higher than what the system currently uses.   How much more wattage over peak do you recommend the customer purchase? 

A. 15% more B. 20% more C. 30% more D. 40% more

Computer Science & Information Technology

Consider the following function to calculate the nth Fibonacci number:long fib (long num){    if (num == 0 || num == 1)        return num;    return (fib (num - 1) + fib (num - 2));}What line of code represents the general case?

A. long fib (long num) B. if (num == 0 || num == 1) C. return num; D. return (fib (num - 1) + fib (num - 2));

Computer Science & Information Technology