Python in 24 Hours, Sams Teach Yourself

Download Python in 24 Hours, Sams Teach Yourself PDF Online Free

Author :
Publisher : Sams Publishing
ISBN 13 : 0133354466
Total Pages : 321 pages
Book Rating : 4.1/5 (333 download)

DOWNLOAD NOW!


Book Synopsis Python in 24 Hours, Sams Teach Yourself by : Katie Cunningham

Download or read book Python in 24 Hours, Sams Teach Yourself written by Katie Cunningham and published by Sams Publishing. This book was released on 2013-09-10 with total page 321 pages. Available in PDF, EPUB and Kindle. Book excerpt: In just 24 sessions of one hour or less, Sams Teach Yourself Python in 24 Hours will help you get started fast, master all the core concepts of programming, and build anything from websites to games. Using this book’s straightforward, step-by-step approach, you’ll move from the absolute basics through functions, objects, classes, modules, database integration, and more. Every lesson and case study application builds on what you’ve already learned, giving you a rock-solid foundation for real-world success! Step-by-step instructions carefully walk you through the most common Python development tasks. Quizzes and Exercises at the end of each chapter help you test your knowledge. Notes present interesting information related to the discussion. Tips offer advice or show you easier ways to perform tasks. Warnings alert you to possible problems and give you advice on how to avoid them. Learn how to... Install and run the right version of Python for your operating system Store, manipulate, reformat, combine, and organize information Create logic to control how programs run and what they do Interact with users or other programs, wherever they are Save time and improve reliability by creating reusable functions Master Python data types: numbers, text, lists, and dictionaries Write object-oriented programs that work better and are easier to improve Expand Python classes to make them even more powerful Use third-party modules to perform complex tasks without writing new code Split programs to make them more maintainable and reusable Clearly document your code so others can work with it Store data in SQLite databases, write queries, and share data via JSON Simplify Python web development with the Flask framework Quickly program Python games with PyGame Avoid, troubleshoot, and fix problems with your code

Sams Teach Yourself Beginning Programming in 24 Hours

Download Sams Teach Yourself Beginning Programming in 24 Hours PDF Online Free

Author :
Publisher : Sams Publishing
ISBN 13 : 9780672323072
Total Pages : 508 pages
Book Rating : 4.3/5 (23 download)

DOWNLOAD NOW!


Book Synopsis Sams Teach Yourself Beginning Programming in 24 Hours by : Greg M. Perry

Download or read book Sams Teach Yourself Beginning Programming in 24 Hours written by Greg M. Perry and published by Sams Publishing. This book was released on 2001 with total page 508 pages. Available in PDF, EPUB and Kindle. Book excerpt: "Sams Teach Yourself Beginning Programming in 24 Hours, Second Edition" explains the basics of programming in the successful 24-Hours format. The book begins with the absolute basics of programming: Why program? What tools to use? How does a program tell the computer what to do? It teaches readers how to program the computer and then moves on by exploring the some most popular programming languages in use. The author starts by introducing the reader to the Basic language and finishes with basic programming techniques for Java, C++, and others.

Python Programming for Raspberry Pi

Download Python Programming for Raspberry Pi PDF Online Free

Author :
Publisher : Pearson Education
ISBN 13 : 0789752050
Total Pages : 599 pages
Book Rating : 4.7/5 (897 download)

DOWNLOAD NOW!


Book Synopsis Python Programming for Raspberry Pi by : Richard Blum

Download or read book Python Programming for Raspberry Pi written by Richard Blum and published by Pearson Education. This book was released on 2013 with total page 599 pages. Available in PDF, EPUB and Kindle. Book excerpt: Summary; Provides step-by-step lessons that teach Python programming on Raspberry Pi, covering such topics as working with modules, writing scripts, using loops, creating functions, and exploring object-oriented programming.

Sams Teach Yourself R in 24 Hours

Download Sams Teach Yourself R in 24 Hours PDF Online Free

Author :
Publisher : Sams Publishing
ISBN 13 : 9780672338489
Total Pages : 0 pages
Book Rating : 4.3/5 (384 download)

DOWNLOAD NOW!


Book Synopsis Sams Teach Yourself R in 24 Hours by : Andy Nicholls

Download or read book Sams Teach Yourself R in 24 Hours written by Andy Nicholls and published by Sams Publishing. This book was released on 2016 with total page 0 pages. Available in PDF, EPUB and Kindle. Book excerpt: With the open source R programming language and its immense library of packages, you can perform virtually any data analysis task. Now, in just 24 lessons of one hour or less, you can learn all the skills and techniques you'll need to import, manipulate, summarize, model, and plot data with R; formalize analytical code; and build powerful R packages using current best practices. Each short, easy lesson builds on all that's come before: you'll learn all of R's essentials as you create real R solutions. R in 24 hours, Sams Teach Yourself covers the entire data analysis workflow from the viewpoint of professionals whose code must be efficient, reproducible and suitable for sharing with others.

Sams Teach Yourself Django in 24 Hours

Download Sams Teach Yourself Django in 24 Hours PDF Online Free

Author :
Publisher : Sams Publishing
ISBN 13 : 013271549X
Total Pages : 532 pages
Book Rating : 4.1/5 (327 download)

DOWNLOAD NOW!


Book Synopsis Sams Teach Yourself Django in 24 Hours by : Brad Dayley

Download or read book Sams Teach Yourself Django in 24 Hours written by Brad Dayley and published by Sams Publishing. This book was released on 2008-02-22 with total page 532 pages. Available in PDF, EPUB and Kindle. Book excerpt: In just 24 lessons of one hour or less, you will be able to build full-featured production websites using Django, the powerful web development framework based on Python. Designed for experienced website developers who have at least some familiarity with the Python programming language, this book uses a straightforward, step-by-step approach. Each lesson builds on the previous ones, enabling you to learn the essentials of implementing the Django framework on a website from the ground up. Step-by-step instructions carefully walk you through the most common Django tasks. Q&As, quizzes, and exercises at the end of each lesson help you test your knowledge. Notes and tips point out shortcuts and solutions. Learn how to... Install and configure the Django web development framework Cleanly separate data, logic, and view layers Implement site interfaces with build templates and views Utilize templates and views to store, access, and retrieve data Use the Django forms library Define custom tags and filters to minimize coding Secure sites with registration, authorization, logins, and permissions Manage sessions and cookies Implement middleware for request and response handling Create sitemaps to inform search engines of your content Internationalize your site Optimize performance with caching Deploy Django in multiple configurations Maintain sites with Django’s administrator interface Introduction 1 Part I: Creating the Website Framework Hour 1: Understanding Django 7 Hour 2: Creating Your First Website 19 Hour 3: Adding Models and Objects to Your Website 37 Hour 4: Creating the Initial Views 63 Part II: Implementing the Website Interface Hour 5: Using Data from the Database in Views 81 Hour 6: Configuring Web Page Views 103 Hour 7: Implementing Django Templates to Create Custom Views 117 Hour 8: Using Built-in Template Tags to Enhance Views 139 Hour 9: Using Built-in Template Filters to Enhance Views 155 Hour 10: Adding Forms to Views 185 Hour 11: Using Views to Add and Update Data in the Database 209 Hour 12: Utilizing Generic Views 231 Hour 13: Advanced View Configurations 269 Part III: Implementing a Full-Featured Website Hour 14: Managing Site Users 295 Hour 15: Adding Website Security 313 Hour 16: Managing Sessions and Cookies 333 Hour 17: Customizing Models in the Admin Interface 347 Hour 18: Customizing the Admin Interface 365 Part IV: Implementing Advanced Website Components Hour 19: Implementing Middleware 383 Hour 20: Internationalization and Localization 407 Hour 21: Creating Sitemaps 423 Hour 22: Implementing Multiple Websites 437 Hour 23: Configuring Caching 451 Hour 24: Deploying Django 465 Appendixes Appendix A: Django Resources 477 Appendix B: Django Form Field Objects 481 Appendix C: Formatting Dates and Times 491 Index 493

Sams Teach Yourself Python in 24 Hours

Download Sams Teach Yourself Python in 24 Hours PDF Online Free

Author :
Publisher : Sams Publishing
ISBN 13 : 9780672317354
Total Pages : 0 pages
Book Rating : 4.3/5 (173 download)

DOWNLOAD NOW!


Book Synopsis Sams Teach Yourself Python in 24 Hours by : Ivan Van Laningham

Download or read book Sams Teach Yourself Python in 24 Hours written by Ivan Van Laningham and published by Sams Publishing. This book was released on 2000 with total page 0 pages. Available in PDF, EPUB and Kindle. Book excerpt: Python is used extensively throughout the Linux community--it is included in every Linux distribution. The author, a well-known Python expert, offers step-by-step lessons that begin with basic syntax and language features and move up through object-oriented design and programming.

Sams Teach Yourself Swift in 24 Hours

Download Sams Teach Yourself Swift in 24 Hours PDF Online Free

Author :
Publisher : Pearson Education
ISBN 13 : 067233724X
Total Pages : 445 pages
Book Rating : 4.6/5 (723 download)

DOWNLOAD NOW!


Book Synopsis Sams Teach Yourself Swift in 24 Hours by : B. J. Miller

Download or read book Sams Teach Yourself Swift in 24 Hours written by B. J. Miller and published by Pearson Education. This book was released on 2014-11-26 with total page 445 pages. Available in PDF, EPUB and Kindle. Book excerpt: Offers twenty-four lessons teaching how to build next-generation OS X and iOS apps using Apple's new programming language, with step-by-step instructions for such common tasks as using operators, iterating code with loops, and introducing generics.

Sams Teach Yourself SQL in 24 Hours

Download Sams Teach Yourself SQL in 24 Hours PDF Online Free

Author :
Publisher : Sams Publishing
ISBN 13 : 0132715120
Total Pages : 540 pages
Book Rating : 4.1/5 (327 download)

DOWNLOAD NOW!


Book Synopsis Sams Teach Yourself SQL in 24 Hours by : Ryan Stephens

Download or read book Sams Teach Yourself SQL in 24 Hours written by Ryan Stephens and published by Sams Publishing. This book was released on 2008-05-30 with total page 540 pages. Available in PDF, EPUB and Kindle. Book excerpt: In just 24 lessons of one hour or less, you will learn professional techniques to design and build efficient databases and query them to extract useful information. Using a straightforward, step-by-step approach, each lesson builds on the previous one, allowing you to learn the essentials of ANSI SQL from the ground up. Example code demonstrates the authors’ professional techniques, while exercises written for MySQL offer the reader hands-on learning with an open-source database. Included are advanced techniques for using views, managing transactions, database administration, and extending SQL. Step-by-step instructions carefully walk you through the most common SQL tasks. Q&As, Quizzes, and Exercises at the end of each chapter help you test your knowledge. Notes and Tips point out shortcuts and solutions. New terms are clearly defined and explained. Learn how to... Use SQL-2003, the latest standard for the Structured Query Language Design and deploy efficient, secure databases Build advanced queries for information retrieval Sort, group, and summarize information for best presentation Tune databases and queries for maximum performance Understand database administration and security techniques For more than ten years the authors have studied, applied, and documented the SQL standard and its application to critical database systems. Ryan Stephens and Ron Plew are entrepreneurs, speakers, and cofounders of Perpetual Technologies, Inc. (PTI), a fast-growing IT management and consulting firm which specializes in database technologies. They taught database courses for Indiana University–Purdue University in Indianapolis for five years and have authored more than a dozen books on Oracle, SQL, database design, and the high availability of critical systems. Arie D. Jones is Senior SQL Server database administrator and analyst for PTI. He is a regular speaker at technical events and has authored several books and articles. Category: Database Covers: ANSI SQL User Level: Beginning–Intermediate Register your book at informit.com/title/9780672330186 for convenient access to updates and corrections as they become available.

Sams Teach Yourself JavaScript in 24 Hours

Download Sams Teach Yourself JavaScript in 24 Hours PDF Online Free

Author :
Publisher : Sams Publishing
ISBN 13 : 0132715503
Total Pages : 456 pages
Book Rating : 4.1/5 (327 download)

DOWNLOAD NOW!


Book Synopsis Sams Teach Yourself JavaScript in 24 Hours by : Michael Moncur

Download or read book Sams Teach Yourself JavaScript in 24 Hours written by Michael Moncur and published by Sams Publishing. This book was released on 2006-06-21 with total page 456 pages. Available in PDF, EPUB and Kindle. Book excerpt: JavaScript is one of the easiest, most straightforward ways to enhance a website with interactivity. Sams Teach Yourself JavaScript in 24 Hours, 4th Edition serves as an easy-to-understand tutorial on both scripting basics and JavaScript itself. The book is written in a clear and personable style with an extensive use of practical, complete examples. It also includes material on the latest developments in JavaScript and web scripting. You will learn how to use JavaScript to enhance web pages with interactive forms, objects, and cookies, as well as how to use JavaScript to work with games, animation, and multimedia.

Sams Teach Yourself Node.js in 24 Hours

Download Sams Teach Yourself Node.js in 24 Hours PDF Online Free

Author :
Publisher : Sams Publishing
ISBN 13 : 0132966263
Total Pages : 1029 pages
Book Rating : 4.1/5 (329 download)

DOWNLOAD NOW!


Book Synopsis Sams Teach Yourself Node.js in 24 Hours by : George Ornbo

Download or read book Sams Teach Yourself Node.js in 24 Hours written by George Ornbo and published by Sams Publishing. This book was released on 2012-09-05 with total page 1029 pages. Available in PDF, EPUB and Kindle. Book excerpt: In just 24 sessions of one hour or less, Sams Teach Yourself Node.js in 24 Hours will help you master the Node.js platform and use it to build server-side applications with extraordinary speed and scalability. Using this text’s straightforward, step-by-step approach, you’ll move from basic installation, configuration, and programming all the way through real-time messaging between browser and server, testing and deployment. Every lesson and case-study application builds on what you’ve already learned, giving you a rock-solid foundation for real-world success! Step-by-step instructions carefully walk you through the most common Node.js development tasks. Quizzes and Exercises at the end of each chapter help you test your knowledge. By the Way notes present valuable additional information related to the discussion. Did You Know? tips offer advice or show you easier ways to perform tasks. Watch Out! cautions alert you to possible problems and give you advice on how to avoid them. Learn how to... · Create end-to-end applications entirely in JavaScript · Master essential Node.js concepts like callbacks and quickly create your first program · Create basic sites with the HTTP module and Express web framework · Manage data persistence with Node.js and MongoDB · Debug and test Node.js applications · Deploy Node.js applications to thirdparty services, such as Heroku and Nodester · Build powerful real-time solutions, from chat servers to Twitter clients · Create JSON APIs using JavaScript on the server · Use core components of the Node.js API, including processes, child processes, events, buffers, and streams · Create and publish a Node.js module

Sams Teach Yourself C++ in 24 Hours

Download Sams Teach Yourself C++ in 24 Hours PDF Online Free

Author :
Publisher : Pearson Education
ISBN 13 : 0672331829
Total Pages : 605 pages
Book Rating : 4.6/5 (723 download)

DOWNLOAD NOW!


Book Synopsis Sams Teach Yourself C++ in 24 Hours by : Jesse Liberty

Download or read book Sams Teach Yourself C++ in 24 Hours written by Jesse Liberty and published by Pearson Education. This book was released on 2011-04-11 with total page 605 pages. Available in PDF, EPUB and Kindle. Book excerpt: Starter Kit Includes C++ compiler and IDE for Windows, Mac & Linux In just 24 lessons of one hour or less, you can learn the basics of programming with C++–one of the most popular and powerful programming languages ever created. Using a straightforward, step-by-step approach, this fast and friendly tutorial teaches you everything you need to know, from installing and using a compiler, to debugging the programs you’ve created, to what’s coming in C++0x, the next version of C++. Each lesson builds on what you’ve already learned, giving you a solid understanding of the basics of C++ programming concepts and techniques. Step-by-step instructions carefully walk you through the most common C++ programming tasks Quizzes and Exercises at the end of each chapter help you test yourself to make sure you’re ready to go on Starter Kit software provides everything you need to create and compile C++ programs on any platform–Windows, Mac or Linux Learn how to… Install and use a C++ compiler for Windows, Mac OS X or Linux Build object-oriented programs in C++ Master core C++ concepts such as functions, classes, arrays, and pointers Add rich functionality with linked lists and templates Debug your programs for flawless code Learn exception and error-handling techniques Discover what’s new in C++0x, the next version of C++ Jesse Liberty is the author of numerous books on software development, including best selling titles on C++ and .NET. He is the president of Liberty Associates, Inc. where he provides custom programming, consulting, and training. Rogers Cadenhead is a web application developer who has written many books on Internet-related topics, including Teach Yourself Java in 24 Hours. He maintains this book’s official website at http://cplusplus.cadenhead.org. CD-ROM Includes C++ compiler Visual development environment for Windows, Mac and Linux Source code for the book’s examples Register your book at informit.com/register for convenient access to updates and corrections as they become available.

Sams Teach Yourself Xcode 4 in 24 Hours

Download Sams Teach Yourself Xcode 4 in 24 Hours PDF Online Free

Author :
Publisher : Sams Publishing
ISBN 13 : 0132918587
Total Pages : 638 pages
Book Rating : 4.1/5 (329 download)

DOWNLOAD NOW!


Book Synopsis Sams Teach Yourself Xcode 4 in 24 Hours by : John Ray

Download or read book Sams Teach Yourself Xcode 4 in 24 Hours written by John Ray and published by Sams Publishing. This book was released on 2012-06-17 with total page 638 pages. Available in PDF, EPUB and Kindle. Book excerpt: In just 24 sessions of one hour or less, Sams Teach Yourself Xcode 4 in 24 Hours will help you achieve breakthrough productivity with Apple’s new Xcode 4.3+ development environment for OS X and iOS devices. Every lesson introduces new concepts and builds on what you’ve already learned, giving you a rock-solid foundation for real-world success! Step-by-step instructions carefully walk you through the most common Xcode 4 development tasks. Quizzes and Exercises at the end of each chapter help you test your knowledge. By the Way notes present interesting information related to the discussion. Did You Know? tips offer advice or show you easier ways to perform tasks. Watch Out! cautions alert you to possible problems and give you advice on how to avoid them. Printed in full color–figures and code appear as they do in Xcode 4.3+ Master the MVC design pattern at the heart of iOS and OS X development Use Xcode project templates to get a head start on advanced application features Efficiently use the Xcode Code Editor and get fast, contextually-aware answers with the built-in help system Use iOS Storyboards to visually describe an application’s workflow Get started with Core Data to simplify data management and data-driven user interfaces Use frameworks and libraries to package functionality and promote time-saving code reuse Use Git and Subversion source control for managing distributed projects Prepare Unit tests and use the Xcode debugger to keep your projects error free Package your apps for the App Store Use the command-line Xcode tools for scripting and build automation

Sams Teach Yourself Python in 24 Hours

Download Sams Teach Yourself Python in 24 Hours PDF Online Free

Author :
Publisher : Pearson Education
ISBN 13 : 0672336871
Total Pages : 321 pages
Book Rating : 4.6/5 (723 download)

DOWNLOAD NOW!


Book Synopsis Sams Teach Yourself Python in 24 Hours by : Katie Cunningham

Download or read book Sams Teach Yourself Python in 24 Hours written by Katie Cunningham and published by Pearson Education. This book was released on 2013 with total page 321 pages. Available in PDF, EPUB and Kindle. Book excerpt: Provides lessons and case study applications that cover such topics as using loops, making objects, using modules, expanding classes, and fixing problem code.

Apache Spark in 24 Hours, Sams Teach Yourself

Download Apache Spark in 24 Hours, Sams Teach Yourself PDF Online Free

Author :
Publisher : Sams Publishing
ISBN 13 : 0134445821
Total Pages : 1352 pages
Book Rating : 4.1/5 (344 download)

DOWNLOAD NOW!


Book Synopsis Apache Spark in 24 Hours, Sams Teach Yourself by : Jeffrey Aven

Download or read book Apache Spark in 24 Hours, Sams Teach Yourself written by Jeffrey Aven and published by Sams Publishing. This book was released on 2016-08-31 with total page 1352 pages. Available in PDF, EPUB and Kindle. Book excerpt: Apache Spark is a fast, scalable, and flexible open source distributed processing engine for big data systems and is one of the most active open source big data projects to date. In just 24 lessons of one hour or less, Sams Teach Yourself Apache Spark in 24 Hours helps you build practical Big Data solutions that leverage Spark’s amazing speed, scalability, simplicity, and versatility. This book’s straightforward, step-by-step approach shows you how to deploy, program, optimize, manage, integrate, and extend Spark–now, and for years to come. You’ll discover how to create powerful solutions encompassing cloud computing, real-time stream processing, machine learning, and more. Every lesson builds on what you’ve already learned, giving you a rock-solid foundation for real-world success. Whether you are a data analyst, data engineer, data scientist, or data steward, learning Spark will help you to advance your career or embark on a new career in the booming area of Big Data. Learn how to • Discover what Apache Spark does and how it fits into the Big Data landscape • Deploy and run Spark locally or in the cloud • Interact with Spark from the shell • Make the most of the Spark Cluster Architecture • Develop Spark applications with Scala and functional Python • Program with the Spark API, including transformations and actions • Apply practical data engineering/analysis approaches designed for Spark • Use Resilient Distributed Datasets (RDDs) for caching, persistence, and output • Optimize Spark solution performance • Use Spark with SQL (via Spark SQL) and with NoSQL (via Cassandra) • Leverage cutting-edge functional programming techniques • Extend Spark with streaming, R, and Sparkling Water • Start building Spark-based machine learning and graph-processing applications • Explore advanced messaging technologies, including Kafka • Preview and prepare for Spark’s next generation of innovations Instructions walk you through common questions, issues, and tasks; Q-and-As, Quizzes, and Exercises build and test your knowledge; "Did You Know?" tips offer insider advice and shortcuts; and "Watch Out!" alerts help you avoid pitfalls. By the time you're finished, you'll be comfortable using Apache Spark to solve a wide spectrum of Big Data problems.

Sams Teach Yourself Android Application Development in 24 Hours

Download Sams Teach Yourself Android Application Development in 24 Hours PDF Online Free

Author :
Publisher : Sams Publishing
ISBN 13 : 0672335697
Total Pages : 512 pages
Book Rating : 4.6/5 (723 download)

DOWNLOAD NOW!


Book Synopsis Sams Teach Yourself Android Application Development in 24 Hours by : Lauren Darcey

Download or read book Sams Teach Yourself Android Application Development in 24 Hours written by Lauren Darcey and published by Sams Publishing. This book was released on 2012 with total page 512 pages. Available in PDF, EPUB and Kindle. Book excerpt: "Full color; sample code provided on enclosed CD"--Cover.

Teach Yourself Python in 24 Hours

Download Teach Yourself Python in 24 Hours PDF Online Free

Author :
Publisher :
ISBN 13 :
Total Pages : pages
Book Rating : 4.:/5 (471 download)

DOWNLOAD NOW!


Book Synopsis Teach Yourself Python in 24 Hours by :

Download or read book Teach Yourself Python in 24 Hours written by and published by . This book was released on 2000 with total page pages. Available in PDF, EPUB and Kindle. Book excerpt:

Sams Teach Yourself Hadoop in 24 Hours

Download Sams Teach Yourself Hadoop in 24 Hours PDF Online Free

Author :
Publisher : Sams Publishing
ISBN 13 : 9780672338526
Total Pages : 0 pages
Book Rating : 4.3/5 (385 download)

DOWNLOAD NOW!


Book Synopsis Sams Teach Yourself Hadoop in 24 Hours by : Jeffrey Aven

Download or read book Sams Teach Yourself Hadoop in 24 Hours written by Jeffrey Aven and published by Sams Publishing. This book was released on 2017 with total page 0 pages. Available in PDF, EPUB and Kindle. Book excerpt: Apache Hadoop is the technology at the heart of the Big Data revolution, and Hadoop skills are in enormous demand. Now, in just 24 lessons of one hour or less, students can learn all the skills and techniques they'll need to deploy each key component of a Hadoop platform in a local environment or in the cloud, building a fully functional Hadoop cluster and using it with real programs and datasets. Each short, easy lesson builds on all that's come before, helping students master all of Hadoop's essentials, and extend it to meet real-world challenges. Apache Hadoop in 24 Hours, Sams Teach Yourself covers all this, and much more: Understanding Hadoop and the Hadoop Distributed File System (HDFS) Importing data into Hadoop, and process it there Mastering basic MapReduce Java programming, and using advanced MapReduce API concepts Making the most of Apache Pig and Apache Hive Implementing and administering YARN Taking advantage of the full Hadoop ecosystem Managing Hadoop clusters with Apache Ambari Working with the Hadoop User Environment (HUE) Scaling, securing, and troubleshooting Hadoop environments Integrating Hadoop into the enterprise Deploying Hadoop in the cloud Getting started with Apache Spark Step-by-step instructions walk students through common questions, issues, and tasks; Q-and-As, Quizzes, and Exercises build and test your knowledge; Did You Know? tips offer insider advice and shortcuts; and Watch Out! alerts help avoid pitfalls. By the time they're finished, they'll be comfortable using Apache Hadoop to solve a wide spectrum of Big Data problems.