Having a loop within a loop is known as:

a. Recursion.
b. Doubling up.
c. Nesting.
d. Stacking


c. Nesting.

Computer Science & Information Technology

You might also like to view...

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

1. It is legal to call a constructor as a member function of an object of a class, as in``` class A { public: A(){} A(int x, int y):xx(x), yy(y) {} // other members private: int xx; int yy; }; int main() { A w; w.A(2,3); // Is this legal? ``` 2. A constructor can be called implicitly or explicitly. (Implicitly means the compiler did it for you.) In the interest of uniformity in answers, please use class A; for your examples. 3. A class may not have another class type object as a member. 4. Any use of the keyword const is a promise to the compiler, and a request to the compiler to enforce the promise. What promises?

Computer Science & Information Technology

Fill in the blanks for the HTML code to create a list as shown.

• Elephants • Tigers • Frogs < ______ > < ______ >Elephants< ______ > < ______ >Tigers< ______ > < ______ >Frogs< ______ > < ______ >

Computer Science & Information Technology

The request.getParameter method takes a(n) _______________ as an argument.

a) URL b) int c) boolean d) String

Computer Science & Information Technology

Drawing objects, such as stars, rectangles, and arrows, are called ________

A) panes B) templates C) symbols D) shapes

Computer Science & Information Technology