Thinking in Java

Thinking in Java
Author :
Publisher : Prentice Hall Professional
Total Pages : 1156
Release :
ISBN-10 : 0131002872
ISBN-13 : 9780131002876
Rating : 4/5 (72 Downloads)

Synopsis Thinking in Java by : Bruce Eckel

Provides link to sites where book in zip file can be downloaded.

On Java 8

On Java 8
Author :
Publisher : MindView LLC
Total Pages : 1820
Release :
ISBN-10 : 9780981872520
ISBN-13 : 0981872522
Rating : 4/5 (20 Downloads)

Synopsis On Java 8 by : Bruce Eckel

Think Java

Think Java
Author :
Publisher : "O'Reilly Media, Inc."
Total Pages : 251
Release :
ISBN-10 : 9781491929537
ISBN-13 : 1491929537
Rating : 4/5 (37 Downloads)

Synopsis Think Java by : Allen B. Downey

Currently used at many colleges, universities, and high schools, this hands-on introduction to computer science is ideal for people with little or no programming experience. The goal of this concise book is not just to teach you Java, but to help you think like a computer scientist. You’ll learn how to program—a useful skill by itself—but you’ll also discover how to use programming as a means to an end. Authors Allen Downey and Chris Mayfield start with the most basic concepts and gradually move into topics that are more complex, such as recursion and object-oriented programming. Each brief chapter covers the material for one week of a college course and includes exercises to help you practice what you’ve learned. Learn one concept at a time: tackle complex topics in a series of small steps with examples Understand how to formulate problems, think creatively about solutions, and write programs clearly and accurately Determine which development techniques work best for you, and practice the important skill of debugging Learn relationships among input and output, decisions and loops, classes and methods, strings and arrays Work on exercises involving word games, graphics, puzzles, and playing cards

Thinking In C++ (2Nd Edition)

Thinking In C++ (2Nd Edition)
Author :
Publisher :
Total Pages : 662
Release :
ISBN-10 : 9798187522040
ISBN-13 :
Rating : 4/5 (40 Downloads)

Synopsis Thinking In C++ (2Nd Edition) by : MAHAPATRA P B

Thinking Recursively

Thinking Recursively
Author :
Publisher : John Wiley & Sons
Total Pages : 200
Release :
ISBN-10 : UOM:39015009830640
ISBN-13 :
Rating : 4/5 (40 Downloads)

Synopsis Thinking Recursively by : Eric Roberts

The process of solving large problems by breaking them down intosmaller, more simple problems that have identical forms. ThinkingRecursively: A small text to solve large problems. Concentrating onthe practical value of recursion. this text, the first of its kind,is essential to computer science students' education. In thistext, students will learn the concept and programming applicationsof recursive thinking. This will ultimately prepare students foradvanced topics in computer science such as compiler construction,formal language theory, and the mathematical foundations ofcomputer science. Key Features: * Concentration on the practical value of recursion. * Eleven chapters emphasizing recursion as a unifiedconcept. * Extensive discussion of the mathematical concepts which helpthe students to develop an appropriate conceptual model. * Large number of imaginative examples with solutions. * Large sets of exercises.

C++ Inside & Out

C++ Inside & Out
Author :
Publisher : Osborne Publishing
Total Pages : 796
Release :
ISBN-10 : UOM:39015045650051
ISBN-13 :
Rating : 4/5 (51 Downloads)

Synopsis C++ Inside & Out by : Bruce Eckel

A comprehensive, fast-paced guide for all C programmers who want to develop their skills and write full-fledged C++ programs complete with bells and whistles. Eckel, a member of the ANSI C++ committee and a well-known author and programmer, is uniquely qualified to provide C++ programmers with the newest information in an easy-to-understand format.

Thinking in Java

Thinking in Java
Author :
Publisher : Prentice Hall PTR
Total Pages : 1127
Release :
ISBN-10 : 0130273635
ISBN-13 : 9780130273635
Rating : 4/5 (35 Downloads)

Synopsis Thinking in Java by : Bruce Eckel

Praised by students and professional programmers, Eckel has thoroughly revised and updated his classic text for J2SE 5.0, the most enhanced version of the Java language since its inception. It is designed for teaching in a classroom and seminar session.

Java Programming Today

Java Programming Today
Author :
Publisher : Prentice Hall
Total Pages : 0
Release :
ISBN-10 : 013048623X
ISBN-13 : 9780130486233
Rating : 4/5 (3X Downloads)

Synopsis Java Programming Today by : Barbara Johnston

Accompanying CD-ROM contains source code for all sample programs and text examples, Sun Microsystems' Java 2 Software Development Kit (version 1.4.1), and jEdit, a Java source code editor.

C# and Algorithmic Thinking for the Complete Beginner (2nd Edition)

C# and Algorithmic Thinking for the Complete Beginner (2nd Edition)
Author :
Publisher :
Total Pages : 746
Release :
ISBN-10 : 1671594363
ISBN-13 : 9781671594364
Rating : 4/5 (63 Downloads)

Synopsis C# and Algorithmic Thinking for the Complete Beginner (2nd Edition) by : Aristides S. Bouras

Thoroughly revised for the latest version of C#, this book explains basic concepts in a clear and explicit way that takes very seriously one thing for granted-that the reader knows nothing about computer programming. Addressed to anyone who has no prior programming knowledge or experience, but a desire to learn programming with C#, it teaches the first thing that every novice programmer needs to learn, which is Algorithmic Thinking. Algorithmic Thinking involves more than just learning code. It is a problem-solving process that involves learning how to code. This edition contains all the popular features of the previous edition and adds a significant number of exercises, as well as extensive revisions and updates. Apart from C# 's arrays, it now also covers dictionaries, while a brand new section provides an effective introduction to the next field that a programmer needs to work with, which is Object Oriented Programming (OOP). This book has a class course structure with questions and exercises at the end of each chapter so you can test what you have learned right away and improve your comprehension. With 250 solved and 450 unsolved exercises, 475 true/false, about 150 multiple choice, and 200 review questions and crosswords (the solutions and the answers to which can be found on the Internet), this book is ideal for novices or average programmers, for self-study high school students first-year college or university students teachers professors anyone who wants to start learning or teaching computer programming using the proper conventions and techniques

A Little Java, a Few Patterns

A Little Java, a Few Patterns
Author :
Publisher : MIT Press
Total Pages : 204
Release :
ISBN-10 : 0262561158
ISBN-13 : 9780262561150
Rating : 4/5 (58 Downloads)

Synopsis A Little Java, a Few Patterns by : Matthias Felleisen

foreword by Ralph E. Johnson and drawings by Duane Bibby 'This is a book of 'why' not 'how.' If you are interested in the nature of computation and curious about the very idea behind object orientation, this book is for you. This book will engage your brain (if not your tummy). Through its sparkling interactive style, you will learn about three essential OO concepts: interfaces, visitors, and factories. A refreshing change from the 'yet another Java book' phenomenon. Every serious Java programmer should own a copy.' -- Gary McGraw, Ph.D., Research Scientist at Reliable Software Technologies and coauthor of Java Security Java is a new object-oriented programming language that was developed by Sun Microsystems for programming the Internet and intelligent appliances. In a very short time it has become one of the most widely used programming languages for education as well as commercial applications. Design patterns, which have moved object-oriented programming to a new level, provide programmers with a language to communicate with others about their designs. As a result, programs become more readable, more reusable, and more easily extensible. In this book, Matthias Felleisen and Daniel Friedman use a small subset of Java to introduce pattern-directed program design. With their usual clarity and flair, they gently guide readers through the fundamentals of object-oriented programming and pattern-based design. Readers new to programming, as well as those with some background, will enjoy their learning experience as they work their way through Felleisen and Friedman's dialogue. src='/graphics/yellowball.gif' href='/books/FELTP/Java-fm.html'Foreword and Preface