Welcome to College Textbooks Online Shop. Get Discount and Affordable College Textbooks Deals and browse our products list. We have the best Cheap Textbooks offers.

Blueprints Obstetrics and Gynecology (Blueprints Series)

One of the best selling and highly regarded volumes in the Blueprints series, Blueprints Obstetrics and Gynecology provides students with a concise review of what they need to know in their ob/gyn rotations or the Boards. Each chapter is brief and includes pedagogical features such as bolded key words, tables, figures, and Key Points. A question-and-answer section at the end of the book presents 100 board-format questions with rationales. The newest techniques in contraception and sterilization and hormone replacement therapies are covered, as are contemporary treatment options for uterine fibroids and invasive breast cancer. A companion Website includes a question bank and fully searchable text.
$35.36 Show Detail

Lippincott's Microcards: Microbiology Flash Cards by Sanjiv Harpava

This best-selling microbiology deck is now more up-to-date and high-yield than ever. Each card features a microorganism on the front and details its clinical presentation, pathogenesis, diagnosis, and treatment on the back. Full-color clinical photos, schematics, and algorithms allow you to test yourself, identify pathogens, classify organisms, and prepare for end-of-course exams and the USMLE Step 1. Use study time effectively with this flash card deck! Full-color photomicrographs and schematics depict the morphology of pathogens, structural features, and clinical findings. Recall format keeps your review lively and quick—maximizing study time. Algorithms on each card classify organisms for easy memorization.PLUS:Take your study on the road! This deck includes online access to 70 bonus USMLE-style Q&A.
$37.99 Show Detail

Beginning ASP.NET 4: in C# and VB (Wrox Programmer to Programmer)

This book is for anyone who wants to learn how to build rich and interactive web sites that run on the Microsoft platform. With the knowledge you gain from this book, you create a great foundation to build any type of web site, ranging from simple hobby-related web sites to sites you may be creating for commercial purposes.Anyone new to web programming should be able to follow along because no prior background in web development is assumed although it helps if you do have a basic understanding of HTML and the web in general. The book starts at the very beginning of web development by showing you how to obtain and install Visual Web Developer. The chapters that follow gradually introduce you to new technologies, building on top of the knowledge gained in the previous chapters.Do you have a strong preference for Visual Basic over C# or the other way around? Or do you think both languages are equally cool? Or maybe you haven't made up your mind yet and want to learn both languages? Either way, you'll like this book because all code examples are presented in both languages!Even if you have some experience with prior versions of ASP.NET, you may gain a lot from this book. Although many concepts from previous versions are brought forward into ASP.NET 4, you'll discover there's a lot of new stuff to be found in this book, including an introduction to the ADO.NET Entity Framework, the inclusion of jQuery, ASP.NET AJAX, the many changes to the ASP.NET 4 Framework, and much more.This book teaches you how to create a feature-rich, data-driven, and interactive web site called Planet Wrox. Although this is quite a mouthful, you'll find that with Visual Web Developer 2010, developing such a web site isn't as hard as it seems. You'll see the entire process of building a web site, from installing Visual Web Developer 2010 in Chapter 1 all the way up to putting your web application on a live server in Chapter 19. The book is divided into 19 chapters, each dealing with a specific subject.Chapter 1, “Getting Started with ASP.NET 4” shows you how to obtain and install Visual Web Developer 2010. You'll get instructions for downloading and installing the free edition of Visual Web Developer 2010, called the Express edition. You are also introduced to HTML, the language behind every web page. The chapter closes with an overview of the customization options that Visual Web Developer gives you.Chapter 2, “Building an ASP.NET Web Site” shows you how to create a new web site and how to add new elements like pages to it. Besides learning how to create a well-structured site, you also see how to use the numerous tools in Visual Web Developer to create HTML and ASP.NET pages.Chapter 3, “Designing Your Web Pages.” Visual Web Developer comes with a host of tools that allow you to create well-designed and attractive web pages. In this chapter, you see how to make good use of these tools. Additionally, you learn about CSS, the language that is used to format web pages.Chapter 4, “Working with ASP.NET Server Controls.” ASP.NET Server Controls are one of the most important concepts in ASP.NET. They allow you to create complex and feature-rich web sites with very little code. This chapter introduces you to the large number of server controls that are available, explains what they are used for, and shows you how to use them.Chapter 5, “Programming Your ASP.NET Web Pages.” Although the built-in CSS tools and the ASP.NET Server Controls can get you a long way in creating web pages, you are likely to use a programming language to enhance your pages. This chapter serves as an introduction to programming with a strong focus on programming web pages. Best of all: all the examples you see in this chapter (and the rest of the book) are in both Visual Basic and C#, so you can choose the language you like best.Chapter 6, “Creating Consistent Looking Web Sites.” ASP.NET helps you create consistent-looking pages through the use of master pages, which allow you to define the global look and feel of a page. Skins and themes help you to centralize the looks of controls and other visual elements in your site. You also see how to create a base page that helps to centralize programming code that you need on all pages in your site.Chapter 7, “Navigation.” To help your visitors find their way around your site, ASP.NET comes with a number of navigation controls. These controls are used to build the navigation structure of your site. They can be connected to your site's central site map that defines the pages in your web site. You also learn how to programmatically send users from one page to another.Chapter 8, “User Controls.” User controls are reusable page fragments that can be used in multiple web pages. As such, they are great for repeating content such as menus, banners, and so on. In this chapter, you learn how to create and use user controls and enhance them with some programmatic intelligence.Chapter 9, “Validating User Input.” A large part of interactivity in your site is defined by the input of your users. This chapter shows you how to accept, validate, and process user input using ASP.NET Server Controls. Additionally, you see how to send e-mail from your ASP.NET web application and how to read from text files.Chapter 10, “ASP.NET AJAX.” Microsoft ASP.NET AJAX allows you to create good-looking, flicker-free web pages that close the gap between traditional desktop applications and web applications. In this chapter you learn how to use the built-in Ajax features to enhance the presence of your web pages, resulting in a smoother interaction with the web site.Chapter 11, “jQuery.” jQuery is a popular, open source and cross-browser JavaScript library designed to make it easier to interact with web pages in the client’s browser. In this chapter you learn the basics of jQuery and see how to add rich visual effects and animations to your web pages.Chapter 12, “Introducing Databases.” Understanding how to use a database is critical to building web sites, as most modern web sites require the use of a database. You’ll learn the basics of SQL, the query language that allows you to access and alter data in a database. In addition, you are introduced to the database tools found in Visual Web Developer that help you create and manage your SQL Server databases.Chapter 13, “Displaying and Updating Data.” Building on the knowledge you gained in the previous chapter, this chapter shows you how to use the ASP.NET data-bound and data source controls to create a rich interface that enables your users to interact with the data in the database that these controls target.Chapter 14, “LINQ and the ADO.NET Entity Framework.” LINQ is Microsoft’s solution for accessing objects, databases, XML, and more. The ADO.NET Entity Framework (EF) is Microsoft's new technology for database access. This chapter shows you what LINQ is all about, how to use the visual EF designer built into Visual Studio, and how to write LINQ to EF queries to get data in and out of your SQL Server database.Chapter 15, “Working with Data—Advanced Topics.” While earlier chapters focused mostly on the technical foundations of working with data, this chapter looks at the same topic from a front-end perspective. You see how to change the visual appearance of your data through the use of control styles. You also see how to interact with the data-bound controls and how to speed up your application by keeping a local copy of frequently accessed data.Chapter 16, “Security in Your ASP.NET 4 Web Site.” Although presented quite late in the book, security is a first-class, important topic. This chapter shows you how to make use of the built-in ASP.NET features related to security. You learn about a number of application services that facilitate security. You also learn how to let users sign up for an account on your web site, how to distinguish between anonymous and logged-on users, and how to manage the users in your system.Chapter 17, “Personalizing Web Sites.” Building on the security features introduced in Chapter 16, this chapter shows you how to create personalized web pages with content targeted at individual users. You see how to configure and use ASP.NET Profile that enables you to store personalized data for known and anonymous visitors.Chapter 18, “Exception Handling, Debugging, and Tracing.” In order to understand, improve, and fix the code you write for your ASP.NET web pages you need good debugging tools. Visual Web Developer ships with great debugging support that enables you to diagnose the state of your application at run time, helping you find and fix problems before your users do.Chapter 19, “Deploying Your Web Site.” By the end of the book, you should have a web site that is ready to be shown to the world. But how exactly do you do that? What are the things you need to know and understand to put your web site out in the wild? This chapter gives the answers and provides you with a good look at configuring different production systems in order to run your final web site.Note: CD-ROM/DVD and other supplementary materials are not included as part of eBook file.
$27.99 Show Detail

Original Intent: The Courts, the Constitution, & Religion

An essential resource for anyone interested in our nation's religious heritage and the Founders' intended role for the American judicial system. Original Intent combines hundreds of quotes from primary sources with the author's exposition on hot topics such as revisionism, judicial activism, and separation of church and state. A substantial appendix encompasses full texts of the founding documents, biographical sketches of numerous Founders, and extensive reference notes.
$8.63 Show Detail

Physics I For Dummies (For Dummies (Math & Science))

The fun and easy way to get up to speed on the basic concepts of physicsFor high school and undergraduate students alike, physics classes are recommended or required courses for a wide variety of majors, and continue to be a challenging and often confusing course.Physics I For Dummies tracks specifically to an introductory course and, keeping with the traditionally easy-to-follow Dummies style, teaches you the basic principles and formulas in a clear and concise manner, proving that you don't have to be Einstein to understand physics!Explains the basic principles in a simple, clear, and entertaining fashionNew edition includes updated examples and explanations, as well as the newest discoveries in the fieldContains the newest teaching techniquesIf just thinking about the laws of physics makes your head spin, this hands-on, friendly guide gets you out of the black hole and sheds light on this often-intimidating subject.
$11.99 Show Detail

First Aid for the USMLE Step 3, Third Edition (First Aid USMLE)

The best, most trusted review for the USMLE Step 3 is now in full color First Aid for the USMLE Step 3 provides busy residents with thousands of high-yield facts, mnemonics, and visual aids to help them pass the USMLE Step 3. More than 100 mini-cases provide practice for the CCS portion of the exam. The third edition features full color throughout the book, 35 pages of new material, and a complete revision to eliminate redundancy and over-information and highlight the most essential material for the exam. It is written by residents who recently passed Step 3 and reviewed by faculty for accuracy. Features Thousands of high-yield facts, mnemonics, and visual aids for board success NEW: full color throughout with many new color images NEW: Classic and frequently-tested scenarios integrated throughout the text clue you in for exam questions 100+ mini-cases provide invaluable preparation for the CCS portion of the exam Completely revised throughout and including 35 pages of new material and more clinical images Written by residents with recent experience taking the Step 3 examination The content you need to ace the USMLE Step 3 Section I: Guide to the USMLE Step 3 and the CCS; Section II: Database of High-Yield Facts; Chapter 1. Ambulatory Medicine; Chapter 2. Cardiovascular; Chapter 3. EM; Chapter 4. Ethics and Statistics; Chapter 5. GI; Chapter 6. Hematology; Chapter 7. Oncology; Chapter 8. Infectious Disease; Chapter 9. Musculoskeletal; Chapter 10. Nephrology; Chapter 11. Neurology; Chapter 12. Obstetrics; Chapter 13. Gynecology; Chapter 14. Pediatrics; Chapter 15. Psychiatry; Chapter 16. Pulmonary; Section III: High-Yield CCS Cases; Appendix; Index
$38.56 Show Detail

RHCSA/RHCE Red Hat Linux Certification Study Guide (Exams EX200 & EX

The best fully integrated study system available (Exams EX200 and EX300) With hundreds of review questions and complete coverage of performance-based requirements, RHCSA/RHCE Red Hat Linux Certification Study Guide, Sixth Edition covers what you need to know--and shows you how to prepare--for these challenging exams. 100% complete coverage of all official objectives for Exams EX200 and EX300 Exam Readiness Checklist--you're ready for the exam when all objectives on the list are checked off Inside the Exam sections in every chapter highlight key exam topics covered Two-Minute Drills for quick review 100+ lab questions--two full lab-based RHCSA exams and two full lab-based RHCE exams--match the format, tone, topics, and difficulty of the real exam Covers all the exam topics, including: Virtual Machines and Automated Installations * Fundamental Command Line Skills * RHCSA-Level Security Options * The Boot Process * Linux Filesystem Administration * Package Management * User Administration * RHCSA-Level System Administration * RHCE Security * System Services and SELinux * RHCE Administration * Mail Servers * Samba * File Sharing * DNS, FTP, and Logging CD-ROM includes: Complete lab-based exam preparation, featuring: Two full RHCSA practice exams Two full RHCE practice exams Lab-based chapter self tests In-depth answer explanations for all labs RHCSA and RHCE Glossary PDF copy of the book for studying on the go Michael Jang, RHCE, LPIC-2, UCP, LCP, MCP, is the author of three previous bestselling editions of RHCE Red Hat Certified Engineer Linux Study Guide and several other books on Linux and professional certification.
$30.60 Show Detail

I Know Who You Are and I Saw What You Did: Social Networks and the Death

Social networks are the defining cultural movement of our time, empowering us in constantly evolving ways. We can all now be reporters, alerting the world to breaking news of a natural disaster; we can participate in crowd-sourced scientific research; and we can become investigators, helping the police solve crimes. Social networks have even helped to bring down governments. But they have also greatly accelerated the erosion of our personal privacy rights, and any one of us could become the victim of shocking violations at any time. If Facebook were a country, it would be the third largest nation in the world; but while that nation appears to be a comforting small town, in which we socialize with our selective group of friends, it and the rest of the Web is actually a lawless frontier of hidden and unpredictable dangers. The same power of information that can topple governments can destroy a person’s career or marriage. As leading expert on social networks and privacy Lori Andrews shows, through groundbreaking in-depth research and a host of stunning stories of abuses, as we work and chat and shop and date (and even sometimes have sex) over the Web, we are opening ourselves up to increasingly intrusive, relentless, and anonymous surveillance—by employers, schools, lawyers, the police, and aggressive data aggregator services that compile an astonishing amount of information about us and sell it to any and all takers. She reveals the myriad ever more sophisticated techniques being used to track us and discloses how routinely colleges and employers reject applicants due to personal information searches; robbers use postings about vacations to target homes for break-ins; lawyers readily find information to use against us in divorce and child custody cases; and at one school, the administrators actually used the cameras on students’ school-provided laptops to spy on them in their homes. Some mobile Web devices are even being programmed to listen in on us and feed data services a steady stream of information about where we are and what we are doing. And even if we use the best services to get our personal data removed from the Web, in a short time almost all that data is restored. As Andrews persuasively argues, the legal system cannot be counted on to protect us—in the thousands of cases brought to trial by those whose rights have been violated, judges have most often ruled against them. That is why in addition to revealing the dangers and providing the best expert advice about protecting ourselves, Andrews proposes that we must all become supporters of a Constitution for the Web, which she has drafted and introduces in this book. Now is the time to join her and take action—the very future of privacy is at stake.
$15.08 Show Detail

Microsoft Office 2010: Introductory (Shelly Cashman)

Gary B. Shelly wrote and published his first computer education textbook in 1969. More than twenty million copies of Shelly Cashman Series' textbooks have been sold. Gary and a talented group of contributing authors have produced books on computer programming, computer concepts, and application software that are the leading textbooks in the computer technology market today. Gary has hosted the annual Shelly Cashman Institute, a week-long training event focusing on the latest topics in technology, for the past 34 years.Misty E. Vermaat has more than 20 years of experience in the field of computer information systems. She has co-authored many textbooks for the Shelly Cashman Series, including multiple versions of Discovering Computers, Microsoft Office, and Microsoft Office Word books. --This text refers to an alternate Spiral-bound edition. About This Edition Introduce your students to the new generation of Microsoft Office with the new generation of Shelly Cashman Series books! For the past three decades, the Shelly Cashman Series has effectively introduced computer skills to millions of students. With Office 2010, we're continuing our history of innovation by enhancing our proven pedagogy to reflect the learning styles of today's students. In Microsoft Office 2010: Introductory, you'll find features that are specifically designed to engage students, improve retention, and prepare them for future success. Our trademark step-by-step, screen-by-screen approach now encourages students to expand their understanding of the Office 2010 software through experimentation, exploration, and planning ahead. Brand-new end-of-chapter exercises prepare students to become more capable software users by requiring them to use critical thinking and problem-solving skills to create real-life documents. New Features Expanded coverage of PowerPoint and Outlook to provide a thorough introduction to these applications and give exposure to the numerous enhancements made with Office 2010. Chapter topic redistribution offering concise chapters that ensure complete skill coverage and lead to more manageable chapters. New pedagogical elements that enrich material, creating an accessible and user-friendly approach, allowing easy navigation through the skills in each chapter. Additional Features A step-by-step, screen-by-screen approach allows educators to successfully teach to all learning styles and make sure that students retain information to be used in their personal and professional lives. A new opening chapter presents essential Office 2010 and Windows® 7 skills, preventing repetitive coverage of basic skills in the applications chapters, and providing students with a strong base for further learning. Expanded coverage of PowerPoint and Outlook to provide a thorough introduction to these applications and give exposure to the numerous enhancements made with Office 2010.
$107.81 Show Detail

Slouching Towards Bethlehem: Essays (FSG Classics)

The first nonfiction work by one of the most distinctive prose stylists of our era, Slouching Towards Bethlehem remains, forty years after its first publication, the essential portrait of America— particularly California—in the sixties. It focuses on such subjects as John Wayne and Howard Hughes, growing up a girl in California, ruminating on the nature of good and evil in a Death Valley motel room, and, especially, the essence of San Francisco’s Haight-Ashbury, the heart of the counterculture.
$9.13 Show Detail
1 · 2 · 3 · 4 · 5 · 6 · 7 · 8 · 9 · 10 · 11 · 12 · 13 · 14 · 15 · 16 · 17 · 18 · 19 · 20
21 · 22 · 23 · 24 · 25 · 26 · 27 · 28 · 29 · 30 · 31 · 32 · 33 · 34 · 35 · 36 · 37 · 38 · 39 · 40
41 · 42 · 43 · 44 · 45 · 46 · 47 · 48 · 49 · 50 · 51 · 52 · 53 · 54 · 55 · 56 · 57 · 58 · 59 · 60
61 · 62 · 63 · 64 · 65 · 66 · 67 · 68 · 69 · 70 · 71 · 72 · 73 · 74 · 75 · 76 · 77 · 78 · 79 · 80
81 · 82 · 83 · 84 · 85 · 86 · 87 · 88 · 89 · 90 · 91 · 92 · 93 · 94 · 95 · 96 · 97 · 98 · 99 · 100