Click here to Skip to main content
15,911,711 members

Survey Results

On what basis does your company hire new staff?   [Edit]

Survey period: 15 Mar 2004 to 21 Mar 2004

Hiring new staff can be tricky. How do you go about the process?

OptionVotes% 
Brief interviews (1 or 2).27143.08
Interviews and tests (2 or more + tests).22235.29
Multiple Interviews / tests across many groups in the company.548.59
Placement agency plus final in-house interview.507.95
Placement agency handling everything.30.48

View optional text answers (37 answers)


 
GeneralRe: Simple test Pin
Glenn Dawson17-Mar-04 6:39
Glenn Dawson17-Mar-04 6:39 
GeneralActually... Pin
Navin15-Mar-04 3:25
Navin15-Mar-04 3:25 
GeneralRe: Actually... Pin
Bamaco215-Mar-04 8:29
Bamaco215-Mar-04 8:29 
GeneralRe: Actually... Pin
Anders Molin15-Mar-04 9:31
professionalAnders Molin15-Mar-04 9:31 
GeneralRe: Actually... Pin
Nitron18-Mar-04 3:13
Nitron18-Mar-04 3:13 
GeneralRe: Actually... Pin
Anders Molin19-Mar-04 11:58
professionalAnders Molin19-Mar-04 11:58 
GeneralRe: Actually... Pin
Curi0us_George15-Mar-04 11:18
Curi0us_George15-Mar-04 11:18 
GeneralRe: Actually... Pin
Bamaco215-Mar-04 12:57
Bamaco215-Mar-04 12:57 
I try to make my code independent of char size
by using the _T() macro for my constants.

This way, when unicode is defined, characters are taken as 16 bit values,
otherwise, the compiler uses 8 bit values.

Most of the output on the GUI can be covered this way.

I work a lot with microcontrollers, where most of the type I handle are not
"compiler optimal" but have a pre-defined width.

My code is full of "uint8" "int8" "uint16" "int16" "uint32" "int32" and "uint64" "int64"

then I usually #include "ProjectTypes.h" where those symbols are typedefed. I hardly
ever handle strings, except for quick and dirty debug strings. Those stay 8 bit wide.

that's for the microcontroller code and for the PC code interfacing with shared structures between PC and microcontroller.

Actually, I like to pass const CString& around as function parameters (in windows, anyway.

I never deal with CString like objects in my microcontroller code.
Instead, I might have something like this:


#ifdef _TRACE_THIGNY<br />
char temp[40];<br />
sprintf(temp,"x=%d. y=%d. z=%d", (int)x, (int)y, (int)z);<br />
SendMsgString(temp);<br />
#endif

GeneralRe: Actually... Pin
Navin15-Mar-04 13:56
Navin15-Mar-04 13:56 
GeneralRe: Actually... Pin
RabidCow15-Mar-04 18:24
RabidCow15-Mar-04 18:24 
GeneralRe: Simple test Pin
Bugra Barin15-Mar-04 13:17
Bugra Barin15-Mar-04 13:17 
GeneralRe: Simple test Pin
Gavin Greig15-Mar-04 23:45
Gavin Greig15-Mar-04 23:45 
GeneralRe: Simple test Pin
Member 9616-Mar-04 13:47
Member 9616-Mar-04 13:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.