Question 1:
You’ve just been given a complex task to code. What are you most likely to do?
Question 2:
Comments should be placed:
Question 3:
Where do you spend most of your time?
Question 4:
Who is a ‘better’ programmer?
Question 5:
Which is the ‘best’ way to program?
Question 6:
Approximately what % of a project should be spent in planning?
Question 7:
If something needs to be done properly:
Question 8:
The ‘perfect’ language will:
Question 9:
You’ve been given a task to do that will take one man month, how big is the optimal team?
Question 10:
When you program you:
Question 11:
White space should be:
Question 12:
What is the ‘better’ implementation:
int main() { printf("5+6=%d", 5+6 ); return 0; }
//////////////////////////////////////////////// // AddNumbers // param1 firstParam - The first value to add // param2 secondParam - The second value to add // return - The firstParam added to secondParam // int AddNumbers( int firstParam, int secondParam ) { // Here is some info int theReturn = firstParam + secondParam; // Now return the value return theReturn; } // Entry for program int main() { // Initialize variables int firstParam = 5; int secondParam = 6; // Call the function int returnValue = AddNumbers( firstParam, secondParam ); // Print out the value printf("%d+%d=%d", firstParam, secondParam, returnValue ); return 0; }
For a full listing of the personality types, visit the key here