Define what is meant by closed interview questions. Give six benefits and four drawbacks of using them.

What will be an ideal response?


Closed interview questions limit the number of possible responses. Six benefits are:
A. Saving interview time
B. Easily comparing interviews
C. Getting to the point
D. Keeping control of the interview
E. Covering a large area quickly
F. Getting to relevant data

Four drawbacks of closed interview questions include:

A. Being boring for the interviewee
B. Failing to obtain rich detail
C. Missing main ideas
D. Failing to build rapport between interviewer and interviewee

Computer Science & Information Technology

You might also like to view...

What is the output of the following code fragment?

int f1(int base, int limit) { if(base > limit) return -1; else if(base == limit) return 1; else return base * f1(base+1, limit); } int main() { cout << f1(12,4)<

Computer Science & Information Technology

What is the incorrect action and why does it occur?

Specification: Check to see if the user’s input is a 0 or a 1. If it is a 0 or a 1, write out Hello World.``` #include using namespace std; int main() { int user_input; cout << “\nEnter an integer.”; cin >> user_input; if(user_input == 0 || 1)cout << “\nHello World”; return 0; } ```

Computer Science & Information Technology

In a ____ environment, you can change directories using the cd command. For example, to change to a directory named MyClasses, you type cd MyClasses and press Enter.

A. Windows B. Java C. graphical D. DOS

Computer Science & Information Technology

____________________ is concerned with what an identity is allowed to do.

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

Computer Science & Information Technology