Which of the following is not an advantage of functions in C?

A. Problems can be factored into understandable and manageable steps.
B. Functions make it possible to develop programs easily and rapidly.
C. Functions provide a way to reuse code.
D. Functions can be grouped into libraries for reuseability.
E. Functions protect data from accidental access by other functions.


Answer: B

Computer Science & Information Technology

You might also like to view...

Which of the following statements is false?

a. The while statement allows you to repeat one or more actions while a condi-tion remains True. Such a statement often is called a loop. b. The following code finds the first power of 3 larger than 50: product = 3 while product < 50: product = product * 3 c. Something in a while statement’s suite must ensure that the condition even-tually becomes False. Otherwise, a logic error called an infinite loop occurs. d. In applications executed from a Terminal, Command Prompt or shell, type Ctrl + c or control + c (depending on your keyboard) to terminate an infinite loop.

Computer Science & Information Technology

Which of the following is the path to the Format Painter button?

A. (ANIMATIONS tab | Format group) B. (HOME tab | Paragraph group) C. (HOME tab | Clipboard group) D. (ANIMATIONS tab | Advanced Animations group)

Computer Science & Information Technology

Which of the following statements is FALSE about the status bar in Office 2010?

A) Contents viewable on the status bar are standard in all Office applications. B) Summary information is displayed in Excel. C) Slide number and total slide information is displayed in PowerPoint. D) The status bar is located at the bottom of the Office 2010 window.

Computer Science & Information Technology

The ability to extract, manipulate, and format text using pattern action statements belongs to which command below?

A. sed B. grep C. awk D. nl

Computer Science & Information Technology