Some ____ available in the Research Tools toolbox include a dictionary and, if you are connected to the Web, a Web search tool.

A. dialogs
B. pathways
C. indices
D. services


Answer: D

Computer Science & Information Technology

You might also like to view...

Write a program that reads a C++ source-code file and reports the occurrence of each keyword in the file. Here is a sample run:

``` Enter a C++ source file name: Welcome.cpp int occurs 3 times void occurs 1 time ... static occurs 1 time ``` Suppose a set of keywords is already given as follows: ``` set s; s.insert("asm"); s.insert("auto"); s.insert("bool"); ... s.insert("while"); ``` So you don’t need to populate the set in the program.

Computer Science & Information Technology

Case EX 1-2Donovan is starting to use the keyboard to navigate around an Excel spreadsheet.To move to cell A1, Donovan presses the ____ .

A. Page Down key B. Page Up key C. Ctrl+End keys D. Ctrl+Home keys

Computer Science & Information Technology

In the context of in-house software development options, a firm that enhances a commercial package by adding custom features and configuring it for a particular industry is called a(n) _____.?

A. ?business process outsourcing (BPO) B. ?enterprise resource planner (ERP) C. ?online service provider (OSP) D. ?value-added reseller (VAR)

Computer Science & Information Technology

Which of the following is not a step in inserting a node into a linear list?

A. Allocate memory for the new node. B. Determine the insertion point for the new node. C. Set the new nodes link pointer to NULL. D. Point the new node to its successor. E. Point the predecessor to the new node.

Computer Science & Information Technology