473,396 Members | 1,785 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

2 Questions:

1) I am considering whether to dedicate a considerable amount of time
to learning C++. If anybody has insights into what attributes and
skills are neccesary to become moderately proficient in C++, I would
be grateful.
2) I have got a book to help me learn C++ with, Sams "Teach yourself
C++ in 21 days" (AS IF!) by Jessie Liberty. If anybody is familiar
with this text and C++, I wonder if they could let me know whether
they thought it was any good.

John
Jul 22 '05 #1
7 1261
On 24 Jan 2004 12:40:36 -0800, ea********@fastmail.fm (john) wrote:
1) I am considering whether to dedicate a considerable amount of time
to learning C++. If anybody has insights into what attributes and
skills are neccesary to become moderately proficient in C++, I would
be grateful.
That's a goobledegook "manager-wannabe-question". It's meaningless,
sort of "what is the best strategy for adding 2 and 2?", only instead of
right out saying the problem is "2+2" some nonsense generalization is
used. The only way to find out if you have what it takes is to try.
2) I have got a book to help me learn C++ with, Sams "Teach yourself
C++ in 21 days" (AS IF!) by Jessie Liberty. If anybody is familiar
with this text and C++, I wonder if they could let me know whether
they thought it was any good.


Reportedly it's absolutely not a good a book.

However, Jessie Liberty himself has maintained in this newsgroup that
most of the most glaring errors and omissions have been corrected in
the latest edition(s) -- that may or may not be correct...

Generally, if you already know one other programming language, the
recommended book is "Accelerated C++".

Jul 22 '05 #2
"john" <ea********@fastmail.fm> wrote in message
news:1d*************************@posting.google.co m...
1) I am considering whether to dedicate a considerable amount of time to learning C++. If anybody has insights into what attributes and
skills are neccesary to become moderately proficient in C++, I would
be grateful.

I believe anyone (of average intelligence) should be able to become
moderately proficient in C++. People with a special aptitude for
technical matters have a bit of an advantage. Certainly if you are
moderately proficient in any other programming language, you should be
able to become moderately proficient in C++.

2) I have got a book to help me learn C++ with, Sams "Teach yourself
C++ in 21 days" (AS IF!) by Jessie Liberty. If anybody is familiar
with this text and C++, I wonder if they could let me know whether
they thought it was any good.


I'm a bit embarrassed to say so, but I believe I read book with that
title a couple of years ago. From the title, you might think it would
be garbage, but I think it actually wasn't too bad. I wouldn't
recommend spending a lot of time on it, but it probably wouldn't hurt
to read through it quickly (if you are able) to get a quick overview
of the language. For a solid foundation, the following are considered
excellent:

Accelerated C++ (Koenig & Moo)
The C++ Primer, 3rd Ed. Lojoie and Lippman (*not* Prata)
The C++ Programming Language, 3rd. or special editions
(Stroustrup)

Jonathan

Jul 22 '05 #3
john wrote:
1) I am considering whether to dedicate a considerable amount of time
to learning C++. If anybody has insights into what attributes and
skills are neccesary to become moderately proficient in C++, I would
be grateful.


Be aware that progrmming requires more than just knowing a language.
There are data structures, recursive algorithms, iterative algorithms,
design patterns, object-oriented approach, numerical analysis,
encapsulation and coupling to name a few. Know a language is the
foundation and the place to start.

You will need some knowledge of the target requirements. For example,
if you are writing a loan application, you will need to know about
processing loans. If you are writing a program to control air valves
then you will need to know some electronics, mechanics and control
theory. Be propared to make a deep investment in knowledge.
--
Thomas Matthews

C++ newsgroup welcome message:
http://www.slack.net/~shiva/welcome.txt
C++ Faq: http://www.parashift.com/c++-faq-lite
C Faq: http://www.eskimo.com/~scs/c-faq/top.html
alt.comp.lang.learn.c-c++ faq:
http://www.raos.demon.uk/acllc-c++/faq.html
Other sites:
http://www.josuttis.com -- C++ STL Library book
http://www.sgi.com/tech/stl -- Standard Template Library

Jul 22 '05 #4

"Thomas Matthews" <Th*************************@sbcglobal.net> wrote in
message news:40**************@sbcglobal.net...
john wrote:
1) I am considering whether to dedicate a considerable amount of time
to learning C++. If anybody has insights into what attributes and
skills are neccesary to become moderately proficient in C++, I would
be grateful.
Be aware that progrmming requires more than just knowing a language.
There are data structures, recursive algorithms, iterative algorithms,
design patterns, object-oriented approach, numerical analysis,
encapsulation and coupling to name a few. Know a language is the
foundation and the place to start.


A language is important, yes. But I think more fundamental is
problem solving skills. One problem that is constantly needing
a solution is the location of needed information.
You will need some knowledge of the target requirements. For example,
if you are writing a loan application, you will need to know about
processing loans. If you are writing a program to control air valves
then you will need to know some electronics, mechanics and control
theory. Be propared to make a deep investment in knowledge.


Exactly. As I tell folks constantly, if you can't do something yourself,
you have no hope of telling a computer (by writing a program) how to do it.

-Mike
Jul 22 '05 #5
In article <1d*************************@posting.google.com> ,
john <ea********@fastmail.fm> wrote:
1) I am considering whether to dedicate a considerable amount of time
to learning C++. If anybody has insights into what attributes and
skills are neccesary to become moderately proficient in C++, I would
be grateful.


Do you have any programming experience in some other language, or are you
learning to program from scratch, as well as learning C++? It makes a
difference in the resources that people are likely to recommend to you.

As far as general skills are concerned, I would say that in order to
become a good programmer, you need to have good organization skills. One
of the best students I've ever had was actually an English major! He knew
how to organize his thoughts and write effective expository prose, and he
was able to carry that over into organizing his programs logically.

Also, you need to have a good eye for detail. In written English, we can
tolerate minor grammatical slipups or mislaid punctuation, but a C++
compiler (or any other language's compiler, for that matter) does not
forgive things like missing semicolons or unbalanced parentheses.

--
Jon Bell <jt*******@presby.edu> Presbyterian College
Dept. of Physics and Computer Science Clinton, South Carolina USA
Jul 22 '05 #6
[snip]

2) I have got a book to help me learn C++ with, Sams "Teach yourself
C++ in 21 days" (AS IF!) by Jessie Liberty. If anybody is familiar
with this text and C++, I wonder if they could let me know whether
they thought it was any good.
For a newbie, I recommend the book "C++ Primer Plus (4th Edition) by Stephen
Prata". (Don't confuse it with the other book "C++ Primer by Lipman")

--The Directive
John



-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----
Jul 22 '05 #7

"The Directive" <th***********@hotmail.com> wrote in message
news:40********@corp.newsgroups.com...
[snip]

For a newbie, I recommend the book "C++ Primer Plus (4th Edition) by Stephen Prata". (Don't confuse it with the other book "C++ Primer by Lipman")


I agree with the parenthetical remark.

Jonathan
Jul 22 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: softwareengineer2006 | last post by:
All Interview Questions And Answers 10000 Interview Questions And Answers(C,C++,JAVA,DOTNET,Oracle,SAP) I have listed over 10000 interview questions asked in interview/placement test papers for...
0
by: connectrajesh | last post by:
INTERVIEWINFO.NET http://www.interviewinfo.net FREE WEB SITE AND SERVICE FOR JOB SEEKERS /FRESH GRADUATES NO ADVERTISEMENT
2
by: freepdfforjobs | last post by:
Full eBook with 4000 C#, JAVA,.NET and SQL Server Interview questions http://www.questpond.com/SampleInterviewQuestionBook.zip Download the JAVA , .NET and SQL Server interview sheet and rate...
4
by: Drew | last post by:
I posted this to the asp.db group, but it doesn't look like there is much activity on there, also I noticed that there are a bunch of posts on here pertaining to database and asp. Sorry for...
8
by: Krypto | last post by:
Hi, I have used Python for a couple of projects last year and I found it extremely useful. I could write two middle size projects in 2-3 months (part time). Right now I am a bit rusty and trying...
0
by: ramu | last post by:
C# Interview Questions and Answers8 http://allinterviewsbooks.blogspot.com/2008/07/c-interview-questions-and-answers8.html C# Interview Questions and Answers7...
1
by: ramu | last post by:
C# Interview Questions and Answers8 http://allinterviewsbooks.blogspot.com/2008/07/c-interview-questions-and-answers8.html C# Interview Questions and Answers7...
0
by: ramu | last post by:
C# Interview Questions and Answers8 http://allinterviewsbooks.blogspot.com/2008/07/c-interview-questions-and-answers8.html C# Interview Questions and Answers7...
0
by: reema | last post by:
EJB Interview Questions http://interviewdoor.com/technical/EJB-Interview-Questions.htm CSS Interview Questions http://interviewdoor.com/technical/CSS-Interview-Questions.htm C Interview Questions...
0
by: reema | last post by:
EJB Interview Questions http://interviewdoor.com/technical/EJB-Interview-Questions.htm CSS Interview Questions http://interviewdoor.com/technical/CSS-Interview-Questions.htm C Interview Questions...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.