Large portions of code can be prevented from compiling by

(a) #if 0
code prevented from compiling
#endif
(b) #nodefine
code prevented from compiling
#endif
(c) #if 1
code prevented from compiling
#endif
(d) #ifndef 0
code prevented from compiling
#endif
ANS: (a)
a) #if 0
code prevented from compiling
#endif
b) #nodefine
code prevented from compiling
#endif
c) #if 1
code prevented from compiling
#endif
d) #ifndef 0
code prevented from compiling
#endif


a) #if 0
code prevented from compiling
#endif

Computer Science & Information Technology

You might also like to view...

Which of the following is not one of the three general types of computer languages?

a. Machine languages. b. Assembly languages. c. High-Level languages. d. Spoken languages.

Computer Science & Information Technology

Suppose the value of RENT_BY_FLOOR_AND_BDRMS[0][1] is 390. The value within the first pair of brackets following the array name refers to the ____.

A. column B. row C. address D. data type

Computer Science & Information Technology

____ is a system for organizing data.

A. Programming B. Database Storage C. Data structure D. Class creation

Computer Science & Information Technology

Which positioning option should Marilyn use if she wants to position items using x- and y-coordinates, removed from the standard flow of the page?

Marilyn is using div tags as the foundation of a CSS page layout to organize content on her web page by defining areas or sections. a. static position b. fixed positioning c. absolute positioning d. relative positioning

Computer Science & Information Technology