Advertisement
Membership
Login
ACCU Buttons
Search in Book Reviews
Search is a simple string search in either book title or book author. The full text search is a search of the text of the review.
The author has a very narrow view of problem solving but even that is not adequately developed in the text and end of chapter exercises.
Perhaps the flavour of the book is well exemplified by the following definition of an OOP:
A program in which the real world is modeled using abstractions such as classes and objects is an object-oriented program.Ignoring the spelling mistake (not really excusable considering the tools available to check spelling) this definition hardly helps. A quick check reveals that the author defines an object as a variable of class type.
Each chapter includes a section titled 'Improve Your Problem-Solving Ability'. This is a complete misnomer. They are just debugging exercises. For example on page 525 (by which time you should be more than half way through your course of study) we have:
Explain why the following code will not compute a correct value for sum.
#include<iostream.h> void main() { int i; unsigned int sum = 0; for (i=5; i>= -10; i--) sum = sum + i; // end for cout<< "\nSum: "<< sum; } // end function mainBy the way, the author lists 44 reserved words (keywords) in an appendix. The 1991 edition ofThe C++ Programming Languagelists 48.
Frankly, were I the author I would be embarrassed. I'll retract my earlier statement, I wouldn't even use this book with a class of 15-year olds they would learn too much that is not true.