Am i smart enough to be a computer programmer?

  • Thread starter Thread starter jake2007
  • Start date Start date
  • Tags Tags
    Computer
AI Thread Summary
An IQ of 107 is generally considered average and may raise concerns about suitability for a career in computer programming. However, the consensus in the discussion emphasizes that IQ is not a definitive measure of programming potential. Success in programming relies more on dedication and practice than on innate intelligence. Participants suggest that anyone interested in programming should start learning by using a compiler for any programming language, reinforcing that hard work is key. Humor is present in the conversation, with light-hearted comments about hacking and job prospects, but the main takeaway is that commitment and effort are what truly matter in becoming a successful programmer.
jake2007
Messages
2
Reaction score
0
my iq is 107 according to that ravens test. is that high enough to be a successful computer programmer?
 
Computer science news on Phys.org
The smart people actually kill themselves. That's how I know I ain't so smart.
 
Never happen! You need at leate a 108. :smile:

Don't worry about your IQ. That is just a measure of your ability to take IQ tests. If you want to learn programing get a compiler for some language (Doesn't really matter which) and start programming.
 
Your IQ is not important! With enough work, anyone can hack into the CIA!
 
Math Jeans said:
Your IQ is not important! With enough work, anyone can hack into the CIA!

I hear that's a good way of getting a job there.

After, of course, serving a few years in the state pen...
 
Mallignamius said:
After, of course, serving a few years in the state pen...

Not if your good enough :biggrin:. SSHHHHHH.

I keep getting the feeling that I will get shot if I keep about this :smile:.
 
...she did it !
 
This will tell if if your smart enough:

Code:
#include <iostream>
#include <string>

using std::cin;
using std::cout;

int main(){

string a = "Yes";
string b = "No";

char dummy;

cout << "Do you want to know if you're smart enough to be a programmer?\n";
cin >> dummy;
cout << "Well, " << a <<" you are.  Even if you did input something into a variable called dummy.\n";

return 0;
}
 
Back
Top