-
Notifications
You must be signed in to change notification settings - Fork 1
/
all_book_titles.txt
2373 lines (2373 loc) · 125 KB
/
all_book_titles.txt
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Philosophy of Sex and Love A Reader
Readings in Judaism, Christianity, and Islam
Microprocessors Principles and Applications
Bernhard Edouard Fernow: Story of North American Forestry
Encyclopedia of Buddhism
Motorola Microprocessor Family: 68000, 68008, 68010, 68020, 68030, and 68040, Programming and Interfacing with Applications
American Anthem: Student Edition Modern Era 2007
How to Read Literature Like a Professor A Lively and Entertaining Guide to Reading Between the Lines
Men Are from Mars, Women Are from Venus Secrets of Great Sex, Improving Communication, Lasting Intimacy and Fulfillment, Giving and Receiving Love, Secrets of Passion, Understanding Martian
Religious Traditions of the World A Journey Through Africa, Mesoamerica, North America, Judaism, Christianity, Islam, Hinduism, Buddhism, China, an
World's Wisdom Sacred Texts of the World's Religions
Illustrated World's Religions A Guide to Our Wisdom Traditions
Soul of Sex Cultivating Life As an Act of Love
Thriving on Chaos Handbook for a Management Revolution
Blood Relatives
Wheelock's Latin
Great by Choice : Uncertainty, Chaos and Luck--Why Some Thrive Despite Them All
Expanding Discourse Feminism and Art History
Introduction to General Relativity (Pure & Applied Physics)
Experiments in Microprocessors and Interfacing: Programming and Hardware
Pathophysiology Concepts and Applications for Health Care Professionals
Power System Operation
Machine Learning
E-Commerce: Strategy, Technologies And Applications
Real and Complex Analysis
Schaum's Outline of Microprocessor Fundamentals
Schaum's Microprocessor Fundamentals - Roger L. Tokheim - Paperback - 2nd ed
Probability, Random Variables and Stochastic Processes
Medical Microbiology & Immunology The Big Picture
Security Analysis Sixth Edition, Foreword by Warren E. Buffett
Goodman and Gilman's The Pharmacological Basis of Therapeutics, Twelfth Edition (Goodman and Gilman"S the Pharmacological Basis of Therapeutics)
OCA/OCP Oracle Database 11g All-in-One Exam Guide with CD-ROM: Exams 1Z0-051, 1Z0-052, 1Z0-053 (Oracle Press)
Clinical Ethics: A Practical Approach to Ethical Decisions in Clinical Medicine, Seventh Edition (LANGE Clinical Science)
Understand Linguistics: A Teach Yourself Guide
Harrison's Principles of Internal Medicine
Basic and Clinical Pharmacology 12/E (LANGE Basic Science)
Harrisons Principles of Internal Medicine Self-Assessment and Board Review 18th Edition
Strategic Database Marketing 4e: The Masterplan for Starting and Managing a Profitable, Customer-Based Marketing Program
Review of Medical Microbiology and Immunology, Twelfth Edition (Lange Medical Books)
Tintinalli's Emergency Medicine Manual 7/E (Emergency Medicine (Tintinalli))
Pharmacotherapy a Pathophysiologic Approach 9/e
Review of Medical Microbiology and Immunology
Computer Organization
Risk Management and Insurance
Design of Analog Cmos Integrated Circuits
Plant Design and Economics for Chemical Engineers
Fluid Mechanics With Engineering Applications
Operating Systems: A Spiral Approach
Essentials of Anatomy & Physiology
Database Management Systems
Introduction to Probability and Statistics Principles and Applications for Engineering and the Computing Sciences
Health Program Planning An Educational and Ecological Approach
Geographic Information Systems Applications in Forestry and Natural Resources Management
Fluid Mechanics for Chemical Engineers
Adaptation Studying Film And Literature
American Art History and Culture
Evolution of the Earth
Introduction To Women's Studies Gender In A Transnational World
Fundamentals of Aerodynamics
Introduction to Forensics & Criminalistics
Introduction to Biological Evolution
Anatomy & Physiology: An Integrative Approach
Introduction To Chemical Engineering Thermodynamics Chemical Engineering Thermodynamics
Human Geography
Theater Experience
BioInformatics: A Computing Perspective
Experience Sociology
Electronic Principles
Good Earth Introduction to Earth Sciences
Essentials of World Regional Geography
Physical Geology
Stern's Introductory Plant Biology
Business Statistics: Communicating with Numbers
Digital Electronics: Principles and Applications
Medical Insurance for Pharmacy Technicians
Insurance in the Medical Office: From Patient to Payment
Law & Ethics for the Health Professions
Foundations in Microbiology
Microbiology: A Human Perspective
Introduction to Programming with Java: A Problem Solving Approach
Modern Computer Networks: An Open Source Approach
Business Driven Information Systems
Real Estate Finance & Investments (Real Estate Finance and Investments)
Human Anatomy
Hole's Essentials of Human Anatomy & Physiology
Seeley's Principles of Anatomy and Physiology
Anatomy & Physiology: The Unity of Form and Function
Seeley's Essentials of Anatomy and Physiology
Hole's Human Anatomy & Physiology
Human Anatomy
Vander's Human Physiology
Power & Choice: An Introduction to Political Science
A History of Western Art
Reconstructing Gender
Mechanics of Materials
Fluid Mechanics Fundamentals and Applications
Microelectronic Circuit Design
Fundamentals of Electric Circuits
CMOS Digital Integrated Circuits Analysis & Design
Microelectronics Circuit Analysis and Design
Computer Organization
Power Electronics
The Theater Experience
Finance: Applications and Theory
Essentials of Investments (The Mcgraw-Hill/Irwin Series in Finance, Insurance, and Real Estate)
Essentials of Corporate Finance (The Mcgraw-Hill/Irwin Series in Finance, Insurance, and Real Estate)
Understanding Human Sexuality
Biology
Ecology: Concepts and Applications
Environmental Science
US: A Narrative History Volume 1: To 1877
Differential Equations for Engineers and Scientists
Elementary Statistics
Film History: An Introduction
Film Art: An Introduction
The Art of Watching Films
Studying Religion
Fundamentals of Aerodynamics
Vector Mechanics for Engineers: Statics and Dynamics
Thermodynamics: An Engineering Approach
Simulation Modeling and Analysis
Statistical Techniques in Business and Economics
Essentials of Business Statistics
Microbiology Fundamentals: A Clinical Approach
Prescott's Microbiology
Microbiology: A Systems Approach
Contemporary Nutrition
Chemistry: The Molecular Nature of Matter and Change
Introduction to Chemistry: Third Edition
Chemistry
Principles of General Chemistry
Chemistry
Organic Chemistry
General Chemistry: The Essential Concepts
General, Organic and Biochemistry
Organic Chemistry
General, Organic, & Biological Chemistry
Business Communication: Developing Leaders for a Networked World
Lesikar's Business Communication: Connecting in a Digital World
Business and Administrative Communication
Business Communication: Building Critical Skills
Concepts in Biology
Biology : Concepts and Investigations
Human Physiology
Seeley's Anatomy & Physiology
Mader's Understanding Human Anatomy & Physiology
Hole's Essentials of Human Anatomy & Physiology
Advertising and Promotion: An Integrated Marketing Communications Perspective
Sex & Gender
The Unfinished Nation: A Concise History of the American People
Experiencing the World's Religions
Chemistry : Atoms First
Chemistry: Atoms First
Essentials of Economics
Economics
Essentials of Economics, 3rd Edition (The McGraw-Hill Series in Economics)
Urban Economics
Environmental Economics: An Introduction (The Mcgraw-Hill)
Broadcasting Cable the Internet and Beyond: An Introduction to Modern Electronic Media
Pathways to Astronomy
College Physics:With an Integrated Approach to Forces and Kinematics, Fourth Edition
Astronomy: Journey to the Cosmic Frontier
Physics of Everyday Phenomena
Explorations: Introduction to Astronomy
Pathways to Astronomy
Medical Insurance: An Integrated Claims Process Approach
University Physics with Modern Physics
Physical Science
Physics of Everyday Phenomena
Theater The Lively Art
Anthology of Living Theater
Survey of Operating Systems
Survey of Operating Systems
Basic Statistics for Business and Economics
Applied Statistics in Business and Economics
Business Statistics in Practice (McGraw-Hill/Irwin Series in Operations and Decision Sciences)
Business Research Methods
Microbiology: A Systems Approach
Foundations in Microbiology
Wardlaw's Perspectives in Nutrition
Contemporary World Regional Geography
Introduction to Geography
Introduction to Geography
Chemistry in Context
International Economics
Economics: The Basics (Mcgraw-Hill/Irwin Series in Economics)
Labor Economics
Managerial Economics & Business Strategy
Computer Networks : A Top down Approach
An Introduction to Object-Oriented Programming with Java
Database System Concepts
Java Programming: From the Ground Up
Algorithms
The Good Earth: Introduction to Earth Science
Environmental Geology
Exploring Geology
Laboratory Manual for Physical Geology
Marine Biology
Vertebrates : Comparative Anatomy, Function, Evolution
Understanding Business, 10th Edition
Employment Law for Business
Business Law
Matching Supply with Demand: An Introduction to Operations Management
Molecular Biology
Human Biology
Biology
Essentials of Biology
Concepts of Biology
Biology: Concepts and Investigations
Human Anatomy
Electronic Media: An Introduction
Media Ethics: Issues and Cases
Power & Choice: An Introduction to Political Science
Music An Appreciation
World Music: Traditions and Transformations
Sociology: A Brief Introduction, 9th Edition
Foundations of Materials Science and Engineering
Shigley's Mechanical Engineering Design (Mcgraw-Hill Series in Mechanical Engineering)
Thermodynamics : An Engineering Approach, 7th Edition
Engineering Circuit Analysis
Semiconductor Physics and Devices
International Marketing
Consumer Behavior: Building Marketing Strategy, 12th Edition
Personal Finance (Mcgraw-Hill/Irwin Series in Finance, Insurance and Real Estate)
Corporate Finance: Core Principles and Applications (McGraw-Hill/Irwin Series in Finance, Insurance and Real Estate)
Personal Finance
Sexuality Today
Transformations: Women, Gender, and Psychology
Human Sexuality: Self, Society, and Culture
Biology
Biology Laboratory Manual
Calculus : Early Transcendental Functions
Applied Calculus for Business, Economics, and the Social and Life Sciences, Expanded Edition
Calculus for Business, Economics, and the Social and Life Sciences, Brief Version
Ecology : Global Insights and Investigations
Ecology: Concepts and Applications
Principles of Environmental Science: Inquiry and Applications
Film Art: An Introduction
Scriptures of the World's Religions
Ethical Issues in Modern Medicine: Contemporary Readings in Bioethics
Problems from Philosophy
Introduction to Thermodynamics and Heat Transfer + Ees Software
The Good Earth: Introduction to Earth Science
The Unfinished Nation: A Concise History of the American People, Volume 1
Foundations in Microbiology: Basic Principles
Explorations: Introduction to Astronomy
Organic Chemistry
Thermodynamics: An Engineering Approach with Student Resources DVD
American History: A Survey Volume 2
American History: A Survey Volume 1
Vector Mechanics for Engineers: Statics
Vector Mechanics for Engineers: Dynamics
The Unfinished Nation: A Concise History of the American People Volume 1
Fundamentals of Thermal-Fluid Sciences with Student Resource DVD
Fluid Mechanics with Student DVD
Music: An Appreciation Brief Edition with 5-CD
Loose-leaf for Fundamentals of Financial Accounting
Foundations of Financial Management with Time Value of Money card (The Mcgraw-Hill/Irwin Series in Finance, Insurance, and Real Estate)
Elementary Statistics with CD : A Step by Step Approach with Formula Card and Data Cd
Package: Principles of General, Organic & Biochemistry with Connect Plus Access Card
Microbiology: A Systems Approach with Connect Plus Access Card
Ecology: A Global Insights and Investigations with Connect Plus Access Card
Loose-Leaf Edition Understanding Business
Fundamentals of Corporate Finance Alternate Edition (The Mcgraw-Hill/Irwin Series in Finance, Insurance, and Real Estate)
Biology
Loose Leaf Version for Anatomy & Physiology: An Integrative Approach
Loose Leaf Version for Human Anatomy and Physiology
Loose Leaf Biology
Anatomy & Physiology: The Unity of Form and Function with Connect Plus/LearnSmart 2 Semester Access Card (Includes APR & PhILS Online Access)
Loose-Leaf for Principles of Corporate Finance
Experience Music, with 3 Audio CDs
Loose Leaf Version for Exploring Geology
Loose Leaf for General, Organic, and Biochemistry
Loose Leaf Version of Human Physiology
Elementary Statistics, Brief with Data CD and Formula Card
Electronics Principles and Applications with Student Data CD-Rom
Biology with Connect Plus Access Card
Exploring Geology with CONNECT Plus 1-semester Access Card
Music: An Appreciation (Brief) Connect Upgrade Edition
International Business: The Challenge of Global Competition, 13th Edition
Intermediate Accounting with Annual Report
Microbiology Fundamentals: A Clinical Approach with Connect Plus with LearnSmart 1 Semester Access Card
Loose-Leaf for Organic Chemistry
Benson's Microbiological Applications Complete Version (Brown, Microbioligical Applications)
Film Art: an Introduction with Connect Access Card
Practical Business Math Procedures with Handbook, Student DVD, and WSJ insert
Loose Leaf Fundamentals of Cost Accounting with Connect Plus
Foundations in Microbiology: Basic Principles
Seeley's Anatomy & Physiology with Connect Plus Access Card
Loose Leaf Version for Environmental Geology
Loose Leaf Version for Environmental Geology
Exploring Social Psychology
Music: An Appreciation, Brief Edition
Marketing
Essentials of Marketing: A Marketing Strategy Planning Approach
Marketing Management
Preface to Marketing Management
Marketing
Personal Finance (McGraw-Hill/Irwin Series in Finance, Insurance, and Real Est)
Finance: Applications and Theory
Case Studies in Finance: Managing for Corporate Value Creation (Mcgraw-Hill/Irwin Series in Finance, Insurance and Real Estate)
Health Psychology
International Accounting
Ethical Obligations and Decision Making in Accounting: Text and Cases
Advanced Accounting
Fundamentals of Advanced Accounting
Combo: Wardlaw's Perspectives in Nutrition with Connect Plus 1 Semester Access Card
Anatomy & Physiology: An Integrative Approach with Connect Plus/LearnSmart 2 Semester Access Card/APR Online Access/PhILS Online Access
Statistical Techniques in Business and Economics
Essentials of Business Statistics
Essentials of Business Statistics
Nutritional Assessment
Human Geography: Landscapes of Human Activities
International Economics (The Mcgraw-Hill Series Economics)
Public Finance
Economics, 9th Edition (The McGraw-Hill Series in Economics)
Managerial Economics: Foundations of Business Analysis and Strategy (The Mcgraw-Hill Economics Series)
Essentials of Economics
Economics: Principles, Problems, & Policies (McGraw-Hill Series in Economics)
Contemporary Labor Economics (The Mcgraw-Hill Series Economics)
Exercise Physiology: Theory and Application to Fitness and Performance
LL Concepts of Physical Fitness: Active Lifestyles for Wellness
Introduction to Physical Education, Exercise Science, and Sport Studies
Vertebrates: Comparative Anatomy, Function, Evolution
Business: A Changing World
Law for Business
Essentials of Biology
Power and Choice: An Introduction to Political Science
Music: An Appreciation
Music: An Appreciation
Music: An Appreciation
Accounting : What the Numbers Mean
Financial Statement Analysis and Security Valuation
Introduction to Managerial Accounting
Managerial Accounting for Managers
Fundamentals of Cost Accounting
Financial Accounting
Auditing and Accounting Cases: Investigating Issues of Fraud and Professional Ethics
Advanced Financial Accounting
Financial and Managerial Accounting
Criminology
Sociology, 13th Edition
Sociology: A Brief Introduction
Sociology: The Core
Mapping the Social Landscape: Readings in Sociology
Sociology in Modules
The Practical Skeptic: Core Concepts in Sociology
Practical Skeptic: Readings in Sociology
The Social Construction of Difference and Inequality: Race, Class, Gender, and Sexuality
Sociology Matters
Sociological Theory
Applied Circuit Analysis
Design With Operational Amplifiers And Analog Integrated Circuits
Analog Circuit Design: Discrete & Integrated
Marketing Management: A Strategic Decision-Making Approach
Essentials of Marketing Research
Marketing Management
Marketing
M: Advertising
Marketing: The Core
Marketing Strategy: A Decision-Focused Approach
BASIC MARKETING: A Marketing Strategy Planning Approach
Marketing
Small Business Management : An Entrepreneur's Guidebook
International Business
Global Marketing: Contemporary Theory, Practice, and Cases
Entrepreneurial Small Business
Business Ethics: Decision-Making for Personal Integrity & Social Responsibility
Business and Society: Stakeholders, Ethics, Public Policy, 14th Edition
Fundamentals of Corporate Finance Standard Edition (Mcgraw-Hill/Irwin Series in Finance, Insurance, and Real Estate)
Fundamentals of Corporate Finance (McGraw-Hill/Irwin Series in Finance, Insurance and Real Esta)
Financial Markets and Institutions (The McGraw-Hill/Irwin Series in Finance, Insurance and Real Estate)
Analysis for Financial Management, 10th Edition
Essentials of Corporate Finance
Principles of Corporate Finance (The Mcgraw-Hill/Irwin Series in Finance, Insurance, and Real Estate) (The Mcgraw-Hill/Irwin Series in Finance, Insureance, and Real Estate)
Corporate Finance, 10th Edition
Focus on Personal Finance: An Active Approach to Help You Develop Successful Financial Skills (McGraw-Hill/Irwin Series in Finance, Insurance and Real Esta)
Core Concepts in Cultural Anthropology
Magic Witchcraft and Religion: A Reader in the Anthropology of Religion
The Human Species: An Introduction to Biological Anthropology
Cultural Anthropology: Appreciating Cultural Diversity
Anthropology: Appreciating Human Diversity
Mirror for Humanity: A Concise Introduction to Cultural Anthropology
Introducing Anthropology: an Integrated Approach
Psychology : An Introduction
Psychology: Perspectives and Connections, 2nd Edition
Understanding Psychology
Essentials of Understanding Psychology
Social Psychology
Psychological Testing and Assessment: An Introduction to Tests and Measurement
Human Sexuality: Diversity in Contemporary America, 8th Edition
Experience Psychology
Personality Psychology: Domains of Knowledge About Human Nature
Abnormal Psychology
UNDERSTANDING HUMAN SEXUALITY
The Science of Psychology: An Appreciative View
Looseleaf for Sexuality Today, 11e
Communicating at Work: Strategies for Success in Business and the Professions
The Right Thing To Do: Basic Readings in Moral Philosophy
The Elements of Moral Philosophy
Experiencing the World's Religions Loose Leaf: Tradition, Challenge, and Change
Introduction to Business Ethics
Philosophy: The Power of Ideas
Does the Center Hold? An Introduction to Western Philosophy
The Moral of the Story: An Introduction to Ethics
Introduction to Physical Education, Fitness, and Sport
Environmental Geology
Laboratory Manual for Physical Geology
Biology: The Essentials
Managerial Accounting
Experiencing Race, Class, and Gender in the United States
The Meaning of Difference: American Constructions of Race, Sex and Gender, Social Class, Sexual Orientation, and Disability
Services Marketing (6th Edition)
Global Business Today
Business, Government and Society: A Managerial Perspective
Culture Sketches: Case Studies in Anthropology
Scriptures of the World's Religions
Elementary Statistics : A Step by Step Approach with Formula Card
Forensic Accounting
World History Texas Edition
Business Management Real-world Applications And Connections
Bscs Biology A Molecular Approach
Aerodynamics for Engineering Students, Sixth Edition
Problems in Real Analysis A Workbook With Solutions
Principles of Real Analysis
Probability and Measure Theory
Computer Organization and Design, Third Edition: Companion CD (The Morgan Kaufmann Series in Computer Architecture and Design)
Introduction to Probability and Statistics for Engineers and Scientists, Fourth Edition
Computer Organization and Design The Hardware/Software Interface
Digital Evidence and Computer Crime, Third Edition: Forensic Science, Computers, and the Internet
Computer Organization and Design
Advanced Topics in Forensic DNA Typing, Third Edition
Computer Organization and Design, Revised Fourth Edition, Fourth Edition: The Hardware/Software Interface (The Morgan Kaufmann Series in Computer Architecture and Design)
Data Mining: Practical Machine Learning Tools and Techniques, Third Edition (The Morgan Kaufmann Series in Data Management Systems)
Fundamentals of Forensic Science, Second Edition
Introduction to Probability Models, Tenth Edition
Molecular Biology : Understanding the Genetic Revolution
Differential Equations, Dynamical Systems, and an Introduction to Chaos, Third Edition
Introduction to Security, Ninth Edition
Computer Networks : A Systems Approach
Molecular Biology Techniques : A Classroom Laboratory Manual
Introduction to Forestry and Natural Resources
Computer and Machine Vision : Theory, Algorithms, Practicalities
Probability and Random Processes, Second Edition: With Applications to Signal Processing and Communications
A Course in Real Analysis, Second Edition
Computer Organization and Design, Fifth Edition: The Hardware/Software Interface (The Morgan Kaufmann Series in Computer Architecture and Design)
Introduction to Probability Models, Eleventh Edition
Introduction to Homeland Security : Principles of All-Hazards Response
Semi-Riemannian Geometry With Applications to Relativity
Electronic Commerce 2004 A Managerial Perspective
68000 Microprocessor Hardware and Software Principles and Applications
Soul of Cinema An Appreciation of Film Music
Computer Organization and Architecture Designing for Performance
8088 and 8086 Microprocessors : Programming, Interfacing, Software, Hardware, and Applications - with CD
Introduction to Real Analysis
Differential Equations And Linear Algebra
Musical Theater An Appreciation
Microprocessors and Microcomputers Hardware and Software
Literatures of Latin America From Antiquity to the Present
Applied Partial Differential Equations With Fourier Series and Boundary Value Problems
Wildlife Ecology and Management
Forest Ecology A Foundation for Sustainable Forest Management and Environmental Ethics in Forestry
Digital+microprocessor Fundamentals
Data Structures With C++ Using Stl
Digital Integrated Circuits A Design Perspective
8088 and 8086 Microprocessors Programming, Interfacing, Software, Hardware, and Applications
Speech and Language Processing An Introduction to Natural Language Processing, Computational Linguistics, and Speech Recognition
Structured Computer Organization
Power Electronics: Circuits, Devices and Applications (3rd Edition)
C Programming Language ANSI C Version
Introduction to Quantum Mechanics (2nd Edition)
Digital Electronics Laboratory Experiments Using the Xilinx Xc95108 Cpld With Xilinx Foundation Design and Simulation Software Design and Simulation Software
Thermodynamics and Heat Power
Forensic Science: From the Crime Scene to the Crime Lab
Introduction to Risk Management and Insurance (10th Edition) (Prentice Hall Series in Finance)
Concepts of Programming Languages (10th Edition)
Parallel Programming: Techniques and Applications Using Networked Workstations and Parallel Computers (2nd Edition)
ADTs, Data Structures, and Problem Solving with C++
Operating Systems Design And Implementation
Differential Equations
Real Analysis
Essentials Of Business Law Legal, E-Commerce, Ethical, and Global Environments
Fundamentals Of Probability with Stochastic Processes
Probability And Random Processes for Ee's
Rf Circuit Design Theory & Applications
Partial Differential Equations with Fourier Series and Boundary Value Problems
Structured Computer Organization
Principles of Computer Organization and Assembly Language
Physics for Scientists And Engineers With Modern Physics
Introduction to Computing & Programming in Java A Multimedia Approach
Solid State Electronic Devices
Sacred Paths Understanding The Religions Of The World
Motorola Mc68000 Microprocessor Family Assembly Language, Interface Design, and System Design
Linguistic Perspectives on Language and Education
Principles of Data Networks And Computer Communications
Listening to Music
Cognition Psychology Mind And Brain
History of Far Eastern Art
NEW TESTAMENT GREEK FOR BEGINNERS
Differential Equations & Linear Algebra
Database Systems
Political Science: An Introduction (9th Edition)
Calculus: Graphical, Numerical, Algebraic, 3rd Edition
Marketing Management
Cost Accounting
Computer Networks (5th Edition)
Mechanical Vibrations (5th Edition)
Introduction to Programming Using Visual Basic 2010 (8th Edition) (Pearson Custom Computer Science)
Data Structures and Other Objects Using C++
Database Processing
Electronic Commerce 2012: Managerial and Social Networks Perspectives (7th Edition)
International Economics : Theory and Policy
Strategic Management and Business Policy: Achieving Sustainability
Crisis Intervention: The Criminal Justice Response to Chaos, Mayhem, and Disorder
Java: An Introduction to Problem Solving and Programming (6th Edition) (MyprogrammingLab)
Balanced Introduction to Computer Science, A (3rd Edition)
Reinforced Concrete: Mechanics and Design (6th Edition)
Marketing : Real People, Real Choices
Marketing : Defined, Explained, Applied
Techniques In Microbiology A Student Handbook
Aerodynamics for Engineers
Physics for Scientists & Engineers With Modern Physics
Physics for Scientists And Engineers Chaps 1-38
Operating Systems: Internals and Design Principles
Introduction to the Design and Analysis of Algorithms (3rd Edition)
Forensic Psychology
Security in Computing, 4th Edition
International Monetary & Financial Economics (Pearson Series in Economics)
Framework for Marketing Management
Electronic Devices (Conventional Current Version) (9th Edition)
Accounting Information Systems (12th Edition)
Cost Accounting, Student Value Edition (14th Edition)
Advanced Accounting (11th Edition)
Computer Science : An Overview
Java How to Program (late Objects)
Java How to Program
Database Systems: Introduction to Databases and Data Warehouses
Data Structures and Other Objects Using Java
Data Structures and Algorithm Analysis in Java
Neuro-Fuzzy and Soft Computing A Computational Approach to Learning and Machine Intelligence
Educational Psychology (12th Edition)
The Convergence of Race, Ethnicity, and Gender: Multiple Identities in Counseling (4th Edition) (Merrill Counseling)
Electronic Health Records: Understanding and Using Computerized Medical Records
Electronic Devices and Circuit Theory (11th Edition)
Modern Database Management (11th Edition)
Hinduism
Contemporary Business and Online Commerce Law : Legal, Internet, Ethical, and Global Environments
Programming the World Wide Web (7th Edition)
Computer Forensics and Cyber Crime: An Introduction (3rd Edition)
Fundamentals of Chemical Engineering Thermodynamics (Prentice Hall International Series in the Physical and Chemical Engineering Sciences)
Global Marketing (7th Edition)
E-Commerce 2013
The Economics of Money, Banking and Financial Markets: The Business School Edition (3rd Edition) (Pearson Series in Economics)
Database Concepts (6th Edition)
Business Data Networks and Security (9th Edition)
Multinational Business Finance (13th Edition) (Pearson Series in Finance)
Bond Markets, Analysis and Strategies (8th Edition)
Marketing: An Introduction (11th Edition)
Statistics for Business and Economics (8th Edition)
Strategic Marketing Problems (13th Edition)
Introduction to Management Science (11th Edition)
[ The Career Fitness Program: Exercising Your Options [ THE CAREER FITNESS PROGRAM: EXERCISING YOUR OPTIONS ] By Sukiennik, Diane ( Author )Dec-27-2011 Paperback
Economics of Money, Banking, and Financial Markets, 10th Edition
The Economics of Health and Health Care (7th Edition)
Computer Security
Marketing for Hospitality and Tourism (6th Edition)
Analyzing Computer Security: A Threat / Vulnerability / Countermeasure Approach
Starting Out with Programming Logic and Design (3rd Edition)
Pharmacology: Connections to Nursing Practice (2nd Edition)
High Speed Signaling : Jitter Modeling, Analysis, and Budgeting
Absolute Java (5th Edition)
Aerodynamics for Engineers (6th Edition)
Data Structures & Algorithm Analysis in C++
Ethics for the Information Age (5th Edition)
Starting Out with Java: From Control Structures through Objects (5th Edition)
Computer Networking: A Top-Down Approach (6th Edition)
The Legal Environment of Business and Online Commerce (7th Edition)
Business Law (8th Edition)
Hospital Operations: Principles of High Efficiency Health Care (FT Press Operations Management)
Engineering Mechanics: Dynamics (13th Edition)
Engineering Mechanics: Statics (13th Edition)
Structured Computer Organization (6th Edition)
Introduction to Computing and Programming in Python (3rd Edition)
Computer Organization and Architecture (9th Edition) (William Stallings Books on Computer and Data Communications)
Introduction to Java Programming, Comprehensive Version (9th Edition)
Economics Today: The Micro View (17th Edition)
International Economics (6th Edition) (Pearson Economics)
Economics : Principles, Applications, and Tools
E-Marketing (7th Edition)
Criminology (2nd Edition) (The Justice Series)
Business Communication Today (12th Edition)
Business Communication Essentials
Criminological Theory (6th Edition)
Starting Out with Java: From Control Structures through Objects plus MyProgrammingLab with Pearson eText -- Access Card Package (5th Edition)
C: How to Program, 7th Edition
International Business: The New Realities (3rd Edition)
Corporate Finance
Principles of Risk Management and Insurance (12th Edition) (Pearson Series in Finance)
Fundamentals of Futures and Options Markets (8th Edition)
Foundations of Finance (8th Edition) (Pearson Series in Finance)
Engineering Mechanics: Statics plus MasteringEngineering with Pearson eText -- Access Card Package (13th Edition)
Economics
Managerial Economics (7th Edition)
Business Statistics (9th Edition)
Principles of Economics (11th Edition)
Business Data Communications- Infrastructure, Networking and Security (7th Edition)
E-Commerce 2014 (10th Edition)
Pharmacology for Nurses : A Pathophysiologic Approach
Database Processing: Fundamentals, Design, and Implementation (13th Edition)
Statistics for Managers Using Microsoft Excel
International Business: The Challenges of Globalization (7th Edition)
Marketing Research
Principles of Marketing (15th Edition)
Corporate Finance, the Core
Comprehensive Health Insurance: Billing, Coding & Reimbursement, and Student Workbook
Java Software Structures : Designing and Using Data Structures
Mechanics of Materials (9th Edition)
Fundamentals of Neural Networks Architectures, Algorithms, and Applications
Cryptography and Network Security: Principles and Practice (6th Edition)
Network Security Essentials Applications and Standards (5th Edition)
Java Foundations
Criminology Today : An Integrative Introduction
E-Commerce Essentials
Computer Networks and Internets (6th Edition)
Prentice Hall Earth Science
Computer Science : An Overview
Essentials of Sociology (11th Edition)
Operating Systems: Internals and Design Principles (8th Edition)
History of the Dance in Art and Education
Hinduism A Cultural Perspective
Wildlife, Forests and Forestry: Principles of Managing Forests for Biological Diversity (2nd Edition)
The Intel Microprocessors (8th Edition)
Technical Communication in the Twenty-First Century
Criminalistics: An Introduction to Forensic Science (10th Edition)
Electronics Fundamentals: Circuits, Devices & Applications
Principles of Electric Circuits: Conventional Current Version
Core Concepts in Pharmacology (3rd Edition) (MyNursingKit Series)
Contemporary Clinical Immunology and Serology (Pearson Clinical Laboratory Science)
Criminology : A Sociological Understanding
Homeland Security
Health & Physical Assessment in Nursing (2nd Edition)
Understanding Pharmacology for Health Professions
How Does Earth Work: Physical Geology and the Process of Science
Differential Equations Computing and Modeling
Elementary Differential Equations With Boundary Value Problems
First Course in Database Systems
E-Commerce: Business,Technology, Society (4th Edition)
Modern Operating Systems
Industrial Ecology and Sustainable Engineering
Contemporary Business and Online Commerce Law
Earth Science
Christian Theological Tradition
A First Course in Probability
Managing Business Process Flows
The Motorola Mc68000 Microprocessor Family: Assembly Language, Interface Design, and System Design
Differential Equations and Linear Algebra
Art: A Brief History
Problem Solving with Data Structures Using Java: A Multimedia Approach
Computer Networks and Internets
History of Modern Art
Introductory Chemical Engineering Thermodynamics (2nd Edition) (Prentice Hall International Series in the Physical and Chemical Engineering Sciences)
HCS 12 Microprocessors
Computer Organization and Architecture: Designing for Performance
Marketing Management (4th Edition)
Computer Networking: A Top-down Approach
Marketing Research: An Applied Orientation
Contemporary Direct and Interactive Marketing
Fundamentals of Database Systems (6th Edition)
Electronic Commerce 2010
Data Structures and Abstractions with Java (3rd Edition)
Services Marketing (7th Edition)
Introduction to Electronic Commerce (3rd Edition) (Spectrum Books)
Electric Circuits (9th Edition) (MasteringEngineering Series)
Principles of Risk Management and Insurance (11th Edition) (The Prentice Hall Series in Finance)
History of Art in Africa
Physics for Scientists and Engineers with Modern Physics
Network Flows Theory, Algorithms, and Applications
Natural Language Processing for Prolog Programmers
Educational Psychology: Theory and Practice (10th Edition) (MyEducationLab Series)
Mastering Methods: Differentiated Instruction for Culturally and Linguistically Diverse (CLD) Students (2nd Edition) (MyEducationKit Series)
Criminology Today: An Integrative Introduction (6th Edition) (MyCrimeKit Series)
Core Java Volume I--Fundamentals (9th Edition) (Sun Core Series)
Introductory Circuit Analysis (12th Edition)
Linguistics for Non-Linguists: A Primer with Exercises
Not for ESOL Teachers: What Every Classroom Teacher Needs to Know About the Linguistically, Culturally, and Ethnically Diverse Student
Quantum Mechanics For Engineering, Materials Science, and Applied Physics
E-Commerce 2012 (8th Edition)
International Economics: Theory and Policy, Student Value Edition (9th Edition)
Introduction to Islam (4th Edition) (Mysearchlab Series for Religion)
Life and Health Insurance, 13th Edition
Introduction to Quantum Mechanics in Chemistry
Molecular Thermodynamics of Fluid-Phase Equilibria
Origins of Virtue Human Instincts and the Evolution of Cooperation
Rise and Fall of Athens Nine Greek Lives
Why Evolution Is True
Dramaturgy in American Theater, a Source Book A Source Book
Basic Judaism
Regional Farm Bill Field Hearing Redmond, Oregon Hearing before the Committee on Agriculture, Nutrition, and Forestry, United States Senate, One Hundred Ninth Congress, Second Session, August 15, 2006
Analytical Mechanics for Relativity and Quantum Mechanics (Oxford Graduate Texts)
Hinduism A Very Short Introduction
Judaism A Very Short Introduction
Foundations of Buddhism
History & Practice of Ancient Astronomy
Oxford History of Islam
After the New Testament A Reader in Early Christianity
Classical Greek Reader
Three Challenges to Ethics Environmentalism, Feminism, and Multiculturalism
Introduction to Game Theory
Islamic Threat Myth or Reality?
Anne Orthwood's Bastard Sex and Law in Early Virginia
Athenaze An Introduction to Ancient Greek
Theorizing Feminisms A Reader
New Testament and Other Early Christian Writings A Reader
Eight Theories of Religion
Islam The Straight Path
Playing for Real A Text on Game Theory
The Oxford Encyclopedia of the Islamic World: Six-Volume Set
Buddhism 2e
Does Feminism Discriminate against Men?: A Debate
An Introduction to Game Theory, International Edition
Microelectronic Circuits (The Oxford Series in Electrical and Computer Engineering)
Film Theory and Criticism
Magic, Witchcraft and Ghosts in the Greek and Roman Worlds: A Sourcebook
Vold's Theoretical Criminology
Democracy in Latin America : Political Change in Comparative Perspective
Anthropology: What Does It Mean to Be Human?
Waves and Oscillations: A Prelude to Quantum Mechanics
Islam: The Straight Path
The Great Conversation: A Historical Introduction to Philosophy
Oxford Handbook of Judaism and Economics
The English Language: A Linguistic History
A Concise Introduction to World Religions, 2nd Edition
Chinese and South-East Asian White Ware Found in the Philippines
Role of Government in East Asian Economic Development Comparative Institutional Analysis
Chaos and Nonlinear Dynamics An Introduction for Scientists and Engineers
Chaos and Time-Series Analysis
The Proboscidea: Evolution and Palaeoecology of Elephants and Their Relatives (Oxford Science Publications)
Probability and Random Processes
Introducing Einstein's Relativity
A Dictionary of Hinduism
Latin Dictionary Founded on Andrew's Edition of Freud's Latin Dictionary
Greek-English Lexicon
Deuteronomy and the Judaean Diaspora
Feminism and Film
Intermediate Greek-English Lexicon
Biochemistry and Molecular Biology
Building Bioinformatics Solutions: With Perl, R and MySQL
General Relativity and the Einstein Equations
Feminism Issues & Arguments
Canon and Criterion in Christian Theology From the Fathers to Feminism
Evolution an introduction
Women in Early Indian Buddhism : Comparative Textual Studies
Cultural Anthropology : A Perspective on the Human Condition
Molecular Quantum Mechanics
Molecular Biology: Principles of Genome Function
Relativity, Gravitation and Cosmology: A Basic Introduction (Oxford Master Series in Physics)
Molecular Biology of Cancer: Mechanisms, Targets, and Therapeutics
Einstein's Physics: Atoms, Quanta, and Relativity - Derived, Explained, and Appraised
An Introduction to Medicinal Chemistry
Biochemistry: The Molecular Basis of Life
Ecoimmunology
Invitation to World Religions
Gender Through the Prism of Difference
The New Testament: A Historical Introduction to the Early Christian Writings
World Religions Today
Introducing Philosophy : A Text with Integrated Readings
Crime and Criminology
Ethics: History, Theory, and Contemporary Issues
Exploring Philosophy: An Introductory Anthology
Introduction to Philosophy: Classical and Contemporary Readings
Criminological Theories: Introduction, Evaluation, and Application
Christ among the Messiahs : Christ Language in Paul and Messiah Language in Ancient Judaism
Talons of the Eagle: Latin America, the United States, and the World
Marine Biology: Function, Biodiversity, Ecology
American Popular Music
Physical Geography: The Global Environment
Buddhism: Introducing the Buddhist Experience
Oxford Latin Course, College Edition: Grammar, Exercises, Context
Oxford Latin Course, College Edition: Readings and Vocabulary
Colonial Latin America
The Gendered Society
The Gendered Society Reader
Josephus and the Theologies of Ancient Judaism
Modern Latin America
The Moral Life: An Introductory Reader in Ethics and Literature
Readings in Greek History: Sources and Interpretations
Philosophy: The Quest For Truth
Advanced Quantum Mechanics
Mechanics and Thermodynamics of Propulsion
Genetic Algorithms in Search, Optimization and Machine Learning
Exploring Black Holes Introduction to General Relativity
Real Analysis: A First Course, 2nd Edition
Modern Quantum Mechanics
Nonlinear Dynamics+chaos
Concrete Mathematics A Foundation for Computer Science
Computer Systems Organization & Architecture
Design And Implementation Of The Freebsd Operating System
COURSE IN PROBABILITY
Art of Computer Programming, Volume 1: Fundamental Algorithms (3rd Edition)
Literature: An Introduction to Reading and Writing (10th Edition)
Agendas, Alternatives, and Public Policies, Update Edition, with an Epilogue on Health Care (2nd Edition) (Longman Classics in Political Science)
Greek Art and Archaeology (5th Edition)
Gender: Psychological Perspectives (6th Edition)
Human Sexuality Today (7th Edition) (MyDevelopmentLab Series)
Art : A Brief History
Business Ethics: Concepts and Cases
Jews, Christians, Muslims : A Comparative Introduction to Monotheistic Religions
Media Ethics: Cases and Moral Reasoning (9th Edition)
How English Works : A Linguistic Introduction
Introduction to the Bible (8th Edition)
Concise Introduction to Linguistics
Latin America and Its People, Combined Volume (3rd Edition)
A Short Guide to Writing about Biology (8th Edition)
Visions of America: A History of the United States, Volume One (2nd Edition)
The Sociology Project: Introducing the Sociological Imagination
Sociology: A Down-to-Earth Approach (11th Edition)
Sociology (14th Edition)
Biological Anthropology
Backpack Literature: An Introduction to Fiction, Poetry, Drama and Writing (4th Edition)
Religions of the World
A History of the World's Religions
Psychology
Social Psychology: United States Edition
Core Questions in Philosophy: A Text with Readings (6th Edition) (MyThinkingLab Series)
Forensic Psychology
Human Sexuality
Human Sexuality (Paper) (3rd Edition)
Living Religions: A Brief Introduction
Literature: An Introduction to Fiction, Poetry, Drama, and Writing, 12th Edition
Human Evolution and Culture: Highlights of Anthropology (7th Edition)
Conformity and Conflict: Readings in Cultural Anthropology (14th Edition) (MyAnthroLab Series)
Short Guide to Writing About Film
Art: A Brief History Plus NEW MyArtsLab -- Access Card Package (5th Edition)
Physiology of Behavior (11th Edition)
Janson's Basic History of Western Art (9th Edition) (History of Art)
Statistics for Psychology
History of Modern Art (Paperback) (7th Edition)
History of Modern Art Volume I
Human Biology for Social Workers Development, Ecology, Genetics, and Health
Anthropology of Latin America And the Caribbean
Understanding Music (7th Edition)
Head's Broadcasting in America: A Survey of Electronic Media
Writing in Political Science: A Practical Guide
A History of Film
Religion Matters: What Sociology Teaches Us About Religion In Our World
Introduction to Literature, An (16th Edition)
The Visual Arts: A History, Revised Edition
Janson's History of Art: The Western Tradition (8th Edition)
Janson's History of Art: The Western Tradition, Volume I (8th Edition) (MyArtsLab Series)
Janson's History of Art: The Western Tradition, Volume II (8th Edition)
Flashback: A Brief Film History
The Greeks: History, Culture, and Society
History of Italian Renaissance Art (Paper cover) (7th Edition) (Mysearchlab Series for Art)
Photography: A Cultural History (3rd Edition) (Mysearchlab Series for Art Mysearchlab Series for Art)
Latin America : An Interpretive History
The World's History (4th Edition)
Consider the Source : Documents in Latin American History - An Interpretive History
Sociology of Religion: A Reader
Anthropology of Religion, Magic, and Witchcraft, The (3rd Edition)
Ultimate Questions: Thinking about Philosophy
Seeing Ourselves: Classic, Contemporary, and Cross-Cultural Readings in Sociology
Anthropology (13th Edition) (MyAnthroLab Series)
Art History, Volume 1 (4th Edition) (MyArtsLab Series)
Art History, Volume 2 (4th Edition) (MyArtsLab Series)
Art History, Combined (4th Edition) (MyArtsLab Series)
Women, Politics, and American Society (5th Edition) (Longman Classics in Political Science)
Political Science: An Introduction
Look! Art History Fundamentals
Film: A Critical Introduction (3rd Edition) (MyCommunicationKit Series)
THINK Sociology
THINK Human Sexuality
Other World, The (9th Edition) (Mysearchlab Series for Political Science)
Cultural Anthropology in a Globalizing World (3rd Edition)
Introduction to Forensic Anthropology (4th Edition)
Empirical Political Analysis (8th Edition) (Mysearchlab Series for Political Science)
Challenge of Third World Development, The (6th Edition) (Mysearchlab Series for Political Science)
Janson's History of Art: The Western Tradition with MyArtsLab and Pearson eText (8th Edition)
Social Psychology
Statistics for the Behavioral and Social Sciences
Sociology of Education, The (7th Edition)
Conscious Reader
GenderSpeak: Personal Effectiveness in Gender Communication
Political Science Student Writer's Manual
Thinking about Women : Sociological Perspectives on Sex and Gender
Understanding Psychology (10th Edition)
Understanding the Political World: A Comparative Introduction to Political Science Plus MyPoliSciLab -- Access Card Package with eText -- Access Card Package (11th Edition)
Psychology and Life (20th Edition)
Art History (5th Edition)
Art History Volume 1 (5th Edition)
Art History Portable Book 1 (5th Edition)
Art History Portables Book 2 (5th Edition)
Art History Portables Book 3 (5th Edition)
Art History Portables Book 6 (5th Edition)
Art History Volume 2 (5th Edition)
Religions of the World Plus NEW MyReligionLab with eText -- Access Card Package (12th Edition)
Art Beyond the West (3rd Edition)
Essentials of Sociology: A Down-to-Earth Approach Plus NEW MySocLab with eText -- Access Card Package (10th Edition)
Essentials of Sociology: A Down-to-Earth Approach (10th Edition)
Thinking About Women: Sociological Perspectives on Sex and Gender (10th Edition)
Literature and the Writing Process (10th Edition)
Exploring Biological Anthropology: The Essentials (3rd Edition)
Human Sexuality in a World of Diversity (case) (9th Edition)
The World's Religions (4th Edition)
Forty Studies that Changed Psychology (7th Edition)
Human Evolution and Culture: Highlights of Anthropology Plus NEW MyAnthroLab with Pearson eText -- Access Card Package (7th Edition)
Music for Sight Singing (9th Edition)
Art History Volume 1, Books a la Carte Edition (5th Edition)
Art History volume 1, Books a la Carte Plus NEW MyArtsLab with eText -- Access Card Package (5th Edition)
Abnormal Psychology (16th Edition)
Art History, Volume 2 Plus NEW MyArtsLab with eText -- Access Card Package (5th Edition)
Art History Plus NEW MyArtsLab with eText -- Access Card Package (5th Edition)
Human Sexuality in a World of Diversity (paperback) (9th Edition)
Living Religions (9th Edition)
Living Religions Plus NEW MyReligionLab with Pearson eText --Access Card Package (9th Edition)
Mastering the World of Psychology (5th Edition)
Political Science: An Introduction
Political Science: An Introduction Plus NEW MyPolisciLab with Pearson eText-- Access Card Package (13th Edition)
A Short Course in Photography: Film and Darkroom (9th Edition)
Sociology
Human Sexuality Today (8th Edition)
Sociology: A Down-to-Earth Approach
Greek-English Lexicon of the New Testament and Other Early Christian Literature
Greek Tragedies
Against Prediction Profiling, Policing, And Punishing in an Actuarial Age
Travesti Sex, Gender, and Culture Among Brazilian Transgendered Prostitutes
Cults, Territory, and the Origins of the Greek City-State
Disability in Judaism, Christianity, and Islam : Sacred Texts, Historical Traditions, and Social Analysis
Politics of Passion Women's Sexual Culture in the Afro-surinamese Diaspora
Sources of East Asian Tradition
Sources of East Asian Tradition: The Modern Period, Vol. 2
Sources of East Asian Tradition
Parting Ways: Jewishness and the Critique of Zionism (New Directions in Critical Theory)
Islam in America, Second Edition
Voice and Vision, Second Edition: A Creative Approach to Narrative Film and DV Production
Carlos Aldama's Life in Batá : Cuba, Diaspora, and the Drum
Cognitive Models of Speech Processing: Psycholinguistic and Computational Perspectives (Acl-Mit Press Series in Natural Language Processing)
Introduction to Machine Learning, Second Edition (Adaptive Computation and Machine Learning)
The Processes of Life: An Introduction to Molecular Biology
Probabilistic Graphical Models: Principles and Techniques (Adaptive Computation and Machine Learning)
Circuit Design and Simulation with VHDL, Second Edition
Machine Learning: A Probabilistic Perspective (Adaptive Computation and Machine Learning series)
Foundations of Machine Learning (Adaptive Computation and Machine Learning series)
Game Theory and the Social Contract Just Playing
Introduction to Algorithms, Third Edition
Strategies and Games Theory and Practice
Digital Performance A History of New Media in Theater, Dance, Performance Art, and Installation
Game Theory
Introduction To Bioinformatics Algorithms
Foundations of Statistical Natural Language Processing
Learning With Kernels Support Vector Machines, Regularization, Optimization and Beyond
Linguistics, Sixth Edition: An Introduction to Language and Communication
Exiles, Diasporas and Strangers
E-Business and E-Commerce Management
Computer Networking. James F. Kurose, Keith W. Ross
Computer Organization and Architecture: Designing for Performance. by William Stallings
Defeat Is the Only Bad News: Rwanda under Musinga, 1896-1931 (Africa and the Diaspora)
Theater Technology
Theater Design
Theater of the Avant-Garde, 1890-1950 A Critical Anthology
Visual Judaism in Late Antiquity: Historical Contexts of Jewish Art
Anthology Of Arabic Literature, Culture, and Thought From Pre-Islamic Times To The Present
Learn to Read Greek: Part 1, Textbook and Workbook Set
General Relativity and Gravitation:One Hundred Years After the Birth of Albert Einstein. Volume 1
Principles of Quantum Mechanics
Psychotherapy and Buddhism Toward an Integration
Handbook of Urban and Community Forestry in the Northeast
Molecular Immunology of Complex Carbohydrates 2
Encyclopedia of Diasporas Immigrant and Refugee Cultures Around the World
Da Capo Best Music Writing 2002 The Year's Finest Writing on Rock, Pop, Jazz, Country & More
Case for Faith A Journalist Investigates the Toughest Objections to Christianity
Basics of Biblical Greek Workbook
Basics of Biblical Greek Grammar
Stages of Drama Classical to Contemporary Theater
Exploring American Histories, Volume 2: A Brief Survey with Sources
Critical Visions in Film Theory
Anatomy of Film
Film: an Introduction
Contemporary Linguistics
Ways of the World: A Brief Global History with Sources, Volume 1
Ways of the World: A Brief Global History with Sources, Volume 2
Nvestigative Reporter's Handbook: A Guide to Documents, Databases, and Techniques
Contemporary Linguistics 6e & Study Guide
America: A Concise History, Volume One: To 1877
America: A Concise History, Volume Two: Since 1865
Rules for Writers with Writing about Literature (Tabbed Version)
Making Literature Matter: An Anthology for Readers and Writers
The American Promise, Volume I: To 1877: A History of the United States
A History of World Societies, Volume 1: To 1600
[ Through Women's Eyes: An American History with Documents[ THROUGH WOMEN'S EYES: AN AMERICAN HISTORY WITH DOCUMENTS ] By DuBois, Ellen Carol ( Author )Jan-05-2012 Paperback
The Film Experience: An Introduction, 3rd Edition
Ashe, Traditional Religion and Healing in Sub-Saharan Africa and the Diaspora:: A Classified International Bibliography (Bibliographies and Indexes in Afro-American and African Studies)
Broadway: An Encyclopedia of Theater and American Culture
Feminism and Women's Rights Worldwide [3 volumes]: [Three Volumes] (Women's Psychology)
Cases and Materials on Criminal Law, 6th (American Casebooks)
Murray and Flechtner's Sales, Leases and Electronic Commerce: Problems and Materials on National and International Transactions, 4th
Sex-Based Discrimination, Text, Cases and Materials, 7th (American Casebooks)
Introduction to Real Analysis
Longman Anthology of Drama and Theater A Global Perspective
Writing In Political Science
Computer Networking and the Internet (5th Edition)