What is this class all about any ways???
so computer science(comp sci) is the development of computer code. in other words, creating programs. there are countless different "languages" that you can learn, but the best place to start is C++. if you learn c++, the same concepts can be adapted to different languages, although the syntax may differ.
oh cool! cause i have never herd of it
yup yup, i can recommend a couple sites and pointers as to where to begin if you are intersted
im interested do u think u can give me some links!!!
http://www.cprogramming.com/begin.html http://www.cplusplus.com/doc/tutorial/ I can also give you some of the intro projects that I have done if you like. Just start with the "Hello World" program http://en.wikipedia.org/wiki/Hello_world_program
The best place to start is unlikely to be C++ in my opinion, especially if you're looking to self-teach, start with high level stuff, Python or Ruby or something like that. It's 2011, why would anyone consider C++ the best place to start? C++ #include <iostream> using namespace std; void main() { cout << "Hello World!" << endl; cout << "Welcome to C++ Programming" << endl; } Python print 'Hello World!', 'Welcome to computer programming'
Join our real-time social learning platform and learn together with your friends!