Define what is meant by pyramid structure. When is it useful to employ it in interviews?

What will be an ideal response?


An interview structured like a pyramid begins with very detailed, often closed questions, and expands by allowing open-ended questions and more generalized responses. A pyramid structure is useful if interviewees need to be warmed up to the topic or if interviewees seem reluctant to address the topic.

Computer Science & Information Technology

You might also like to view...

The easiest way to set all the values of a vector to zero is to use function:

a. fill b. fill_n c. generate d. generate_n

Computer Science & Information Technology

Each object created from a class is called a(n) ____________ of the class.

a. object b. reference c. instance d. field

Computer Science & Information Technology

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

1. A structure can have a member whose type is another structure. 2. Consider these hierarchical structures. ``` struct Date { int year; //members }; struct Person { Date birthDay; //other members }; Person Bill; ``` 3. No special syntax is necessary to define a function that uses a structure parameter. (This is unlike using an array parameter.) 4. There is no aggregate initialization available for structure variables. You must declare structure variables then use assignment to initialize the members. 5. A class is a type similar to a structure type that normally has member functions as well as member variables.

Computer Science & Information Technology

The ____________________ function can be used to return the names of the entries in the directory.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology