100% found this document useful (1 vote)
20 views

Java How to Program Early Objects 10th Edition Deitel Test Bank instant download

Test bank download

Uploaded by

ndugufrandl
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
20 views

Java How to Program Early Objects 10th Edition Deitel Test Bank instant download

Test bank download

Uploaded by

ndugufrandl
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 27

Java How to Program Early Objects 10th Edition

Deitel Test Bank download pdf

https://testbankfan.com/product/java-how-to-program-early-objects-10th-
edition-deitel-test-bank/

Visit testbankfan.com today to download the complete set of


test banks or solution manuals!
Here are some recommended products for you. Click the link to
download, or explore more at testbankfan.com

Java How to Program Early Objects 10th Edition Deitel


Solutions Manual

https://testbankfan.com/product/java-how-to-program-early-
objects-10th-edition-deitel-solutions-manual/

Java How to Program Early Objects 11th Edition Deitel Test


Bank

https://testbankfan.com/product/java-how-to-program-early-
objects-11th-edition-deitel-test-bank/

Java How to Program Early Objects 11th Edition Deitel


Solutions Manual

https://testbankfan.com/product/java-how-to-program-early-
objects-11th-edition-deitel-solutions-manual/

Multivariable Calculus 11th Edition Larson Solutions


Manual

https://testbankfan.com/product/multivariable-calculus-11th-edition-
larson-solutions-manual/
Olds Maternal Newborn Nursing and Womens Health Across the
Lifespan 9th Edition Davidson Test Bank

https://testbankfan.com/product/olds-maternal-newborn-nursing-and-
womens-health-across-the-lifespan-9th-edition-davidson-test-bank/

Launching New Ventures An Entrepreneurial Approach 7th


Edition Allen Solutions Manual

https://testbankfan.com/product/launching-new-ventures-an-
entrepreneurial-approach-7th-edition-allen-solutions-manual/

How Children Develop 5th Edition Siegler Test Bank

https://testbankfan.com/product/how-children-develop-5th-edition-
siegler-test-bank/

Managerial Economics and Business Strategy 9th Edition


Baye Test Bank

https://testbankfan.com/product/managerial-economics-and-business-
strategy-9th-edition-baye-test-bank/

Numerical Analysis 9th Edition Burden Solutions Manual

https://testbankfan.com/product/numerical-analysis-9th-edition-burden-
solutions-manual/
Statistics for Business Decision Making and Analysis 2nd
Edition Stine Test Bank

https://testbankfan.com/product/statistics-for-business-decision-
making-and-analysis-2nd-edition-stine-test-bank/
Chapter 8 Classes and Objects: A Deeper Look
Section 8.2 Time Class Case Sudy
8.2 Q1: The _________ of a class are also called the public services or the public interface that the class
provides to its clients.
a. public constructors.
b. public instance variables.
c. public methods.
d. All of the above.
ANS: c. public methods.

8.2 Q2: The static method ________ of class String returns a formatted String.
a. printf.
b. format.
c. formatString.
d. toFormatedString.
ANS: b. format.

8.2 Q3: Which statement is false?


a. The actual data representation used within the class is of no concern to the class’s clients.
b. Clients generally care about what the class does but not how the class does it.
c. Clients are usually involved in a class’s implementation.
d. Hiding the implementation reduces the possibility that clients will become dependent on class-
implementation details.
ANS: c: Clients are usually involved in a class’s implementation.

Section 8.3 Controlling Access to Members


8.3 Q1: Which of the following class members should usually be private?
a. Methods.
b. Constructors.
c. Variables (or fields).
d. All of the above.
ANS: c. Variables (or fields).

8.3 Q2: Which of the following statements is true?


a. Methods and instance variables can both be either public or private.
b. Information hiding is achieved by restricting access to class members via keyword public.
c. The private members of a class are directly accessible to the clients of a class.
d. None of the above is true.
ANS: a. Methods and instance variables can both be either public or private.

Section 8.4: Referring to the Current Object’s Member


with the this Reference
8.4 Q1: When must a program explicitly use the this reference?
a. Accessing a private variable.
b. Accessing a public variable.
c. Accessing a local variable.
d. Accessing an instance variable that is shadowed by a local variable.

© Copyright 1992-2015 by Deitel & Associates, Inc. and Pearson Education, Inc.
ANS: d. Accessing an instance variable that is shadowed by a local variable.

8.4 Q2: Having a this reference allows:


a. a method to refer explicitly to the instance variables and other methods of the object on which the
method was called.
b. a method to refer implicitly to the instance variables and other methods of the object on which the
method was called.
c. an object to reference itself.
d. All of the above.
ANS: d. All of the above.

Section 8.5 Time Class Case Study: Overloaded


Constructors
8.5 Q1: A constructor cannot:
a. be overloaded.
b. initialize variables to their defaults.
c. specify return types or return values.
d. have the same name as the class.
ANS: c. specify return types or return values.

8.5 Q2: Constructors:


a. Initialize instance variables.
b. When overloaded, can have identical argument lists.
c. When overloaded, are selected by number, types and order of types of parameters.
d. Both (a) and (c).
ANS: d. Both (a) and (c).

8.5 Q3: A programmer-defined constructor that has no arguments is called a(n) ________.
a. empty constructor.
b. no-argument constructor.
c. default constructor.
d. null constructor.
ANS: b. no-argument constructor.

8.5 Q4: What happens when this is used in a constructor’s body to call another constructor of the same
class if that call is not the first statement in the constructor?
a. A compilation error occurs.
b. A runtime error occurs.
c. A logic error occurs.
d. Nothing happens. The program compiles and runs.
ANS: a. A compilation error occurs.

8.5 Q5: When implementing a method, use the class’s set and get methods to access the class’s ________
data.
a. public.
b. private.
c. protected.
d. All of the above.
ANS: b. private.

Section 8.6 Default and No-Argument Constructors

© Copyright 1992-2015 by Deitel & Associates, Inc. and Pearson Education, Inc.
8.6 Q1: Which statement is false?
a. The compiler always creates a default constructor for a class.
b. If a class’s constructors all require arguments and a program attempts to call a no-argument
constructor to initialize an object of the class, a compilation error occurs.
c. A constructor can be called with no arguments only if the class does not have any constructors or
if the class has a public no-argument constructor.
d. None of the above.
ANS: a. The compiler always creates a default constructor for a class.

Section 8.7 Notes on Set and Get Methods


8.7 Q1: Set methods are also commonly called ________ methods and get methods are also commonly
called ________ methods.
a. query, mutator.
b. accessor, mutator.
c. mutator, accessor.
d. query, accessor.
ANS: c. mutator, accessor.

8.7 Q2: Using public set methods helps provide data integrity if:
a. The instance variables are public.
b. The instance variables are private.
c. The methods perform validity checking.
d. Both b and c.
ANS: d. Both b and c.

Section 8.8 Composition


8.8 Q1: Composition is sometimes referred to as a(n) ________.
a. is-a relationship
b. has-a relationship
c. many-to-one relationship
d. one-to-many relationship
ANS: b. has-a relationship.

Section 8.9 Enum Types


8.9 Q1: Which statement is false?
a. An enum declaration is a comma-separated list of enum constants and may optionally include other
components of traditional classes, such as constructors, fields and methods.
b. Any attempt to create an object of an enum type with operator new results in a compilation error.
c. An enum constructor cannot be overloaded.
d. enum constants are implicitly final and static.
ANS: c. An enum constructor cannot be overloaded.

8.9 Q2: Which method returns an array of the enum’s constants?


a. values.
b. getValues.
c. constants.
d. getConstants.
ANS: a. values.

© Copyright 1992-2015 by Deitel & Associates, Inc. and Pearson Education, Inc.
Section 8.10 Garbage Collection and Method finalize
8.10 Q1: Which of the following is false?
a. Method finalize does not take parameters and has return type void.
b. Memory leaks using Java are rare because of automatic garbage collection.
c. Objects are marked for garbage collection by method finalize.
d. The garbage collector reclaims unused memory.
ANS: c. Objects are marked for garbage collection by method finalize. (Objects are marked for
garbage collection when there are no more references to the object).

Section 8.11 static Class Members


8.11 Q1: Static class variables:
a. are final.
b. are public.
c. are private.
d. are shared by all objects of a class.
ANS: d. are shared by all objects of a class.

8.11 Q2: Which of the following is false?


a. A static method must be used to access private static instance variables.
b. A static method has no this reference.
c. A static method can be accessed even when no objects of its class have been instantiated.
d. A static method can call instance methods directly.
ANS: d. A static method can call instance methods directly.

Section 8.12 static Import


8.12 Q1: Which syntax imports all static members of class Math?
a. import java.lang.Math.*.
b. import static java.lang.Math.*.
c. import static java.lang.Math.
d. None of the above.
ANS: b. import static java.lang.Math.*.

Section 8.13 final Instance Variables


8.13 Q1: Instance variables declared final do not or cannot:
a. Cause syntax errors if used as a left-hand value.
b. Be initialized.
c. Be modified after they are initialized.
d. None of the above.
ANS: c. Be modified.

8.13 Q2: A final field should also be declared ________ if it is initialized in its declaration.
a. private.
b. public.
c. protected.
d. static.
ANS: d. static.

© Copyright 1992-2015 by Deitel & Associates, Inc. and Pearson Education, Inc.
Section 8.14 Package Access
8.14 Q1: When no access modifier is specified for a method or variable, the method or variable:
a. Is public.
b. Is private.
c. Has package access.
d. Is static.
ANS: c. Has package access.

8.14 Q2: Which of the following statements is false?


a. If a program uses multiple classes from the same package, these classes can access each other's package
access members directly through references to objects of the appropriate classes, or in the case of static
members, through the class name.
b. Package access is rarely used.
c. Classes in the same source file are part of the same package.
d. Use the access modifier package to give a method or variable package access.
ANS: d. Use the access modifier package to give a method or variable package access.

Section 8.15 Using BigDecimal for Precise Monetary


Calculations
8.15 Q1: Which of the following statements is false?
a. An application that requires precise floating-point calculations such as those in financial applications
should use class BigDecimal from package java.math.
b. We use class NumberFormat for formatting numeric values as locale-specific strings.
c. In the U.S, locale, the value 15467.82 would be formatted as "15,467.82", whereas in many European
locales it would be formatted as "15.467,56".
d. The BigDecimal method format receives a double argument and returns a BigDecimal object that
represents the exact value specied.
ANS: . d. The BigDecimal method format receives a double argument and returns a BigDecimal
object that represents the exact value specied. Actually, the BigDecimal method valueOf receives a
double argument and returns a BigDecimal object that represents the exact value specied.

8.15 Q2: BigDecimal gives you control over how values are rounded. By default:
a. all calculations are approximate and no rounding occurs.
b. all calculations are approximate and rounding occurs.
c. all calculations are exact and no rounding occurs.
d. all calculations are exact and rounding occurs.
ANS: c. all calculations are exact and no rounding occurs.

Section 8.16 (Optional) GUI and Graphics Case Study:


Using Objects with Graphics
No questions.

© Copyright 1992-2015 by Deitel & Associates, Inc. and Pearson Education, Inc.
Random documents with unrelated
content Scribd suggests to you:
at Gwennap Pit, 103
at Oxford, 50, 53
at York, 96
Compared with Calvin, 69
Conversion, Time of, 58
Creed, 100
Death of, 262
Early Religious Experiences, 53
Effect of His Preaching on Himself, 82
Effect of His Preaching on Others, 82, 87, 96, 114
Estimate of by Macaulay, 86, 89
Expelled from Church of England, 68, 69
Expelled from Oxford, 65
Hymns, 112, 113, 114, 124, 126
Influence of, 10, 26, 182
Itinerancy, 93
on Sabbath-Schools, 208
Parish, the World, 91
Power over Others, 82, 87, 137
Preaching in Epworth Church-yard, 95
Restrictions on Lay Preachers, 134
Tomb, 262
Translations, 113
Victory of, over Nash, 87
Wesley, Samuel, 43, 53
Susannah, 44, 134
her Sayings, 45
Weston, Favel, 58, 62
Wilberforce, William, 178, 189, 191, 254, 258, 265, 266
Wilderness, Blossoms in, 180
Wilks, Matthew, 254
Winter, Cornelius, 184, 257
Wiseman, Cardinal, 131
White, Rev George, Vicar of Colne, 71
Whitefield, George, 32, 46, 52, 60, 69, 73, 86, 122, 148, 165, 179,
184, 195, 258, 270, 284
and the Children, 292
Among the Indians, 290
and the Poor Woman, 56
and Wesley Compared, 69, 80, 86, 87, 89, 148
and the Recruiting Sergeant, 84
Among the Nobility, 36, 38, 41, 79
Among the Roughs, 83, 115
at Boston, New England, 284, 285
at Cambridge, New England, 28
at Harvard, 285
at Kingswood, Bristol, 73
at Princeton, 290
at Gloucester, 73
at New Haven, 285
at Oxford, 49, 54
at the Tower of London, 73
Compared with Luther, 69
Description of his Preaching During Thunder Storm, 79
Early Religious Experience, 55
Whitefield, George,
Effect of his Preaching on Himself, 80, 81, 294
Effect on Others, 43, 76, 79, 82–84, 87, 115, 284, 294, 295, 301
First Meeting Charles Wesley, 56
in Georgia, 291
Journeys, 281
in New York, 288
in America, 73, 85, 281
in Wales, 272
in London, 81
in Maryland, 290
in Moorfields, London, 84
in Philadelphia, 289
on Toriel Joss and Newton, 149
Preaching of, 73, 295
on Religion in America, 299
Orphan Asylum in Georgia, 291, 296
Regarded as a Fanatic, 83
Ridiculed, 154
The First in the Opening of the Methodist Movement, 80
Treatment of Those Who Opposed Themselves to Him, 78, 298
Watts’ Blessing of, 32
Williams, John (Martyr of Erromanga) 255
Woolston, 180
Work Done in the Revival, 66
Wyclif, John, 193

Xavier, Francis, 93

York, Wesley at, 96


Yorkshire, 131, 139, 160, 170
Yorkshire, Apostles of, 139
Young Cottager, The, 267

Zinzendorf, Count, Hymns of, 113, 171


Transcriber’s Notes:
Several footnote references just said “See
Appendix.” without specifying which (there are
15.) The references have been resolved as well
as was possible.
Some footnotes had no references to them in
the text. These were assumed to be additional
material for the entire page, or pages, and a
reference was created.
Some index entries were reformatted to be
more consistent with the majority of the
entries.
Missing or obscured punctuation was silently
corrected.
Typographical errors were silently corrected.
Inconsistent spelling and hyphenation were
made consistent only when a predominant
form was found in this book.
*** END OF THE PROJECT GUTENBERG EBOOK THE GREAT
REVIVAL OF THE EIGHTEENTH CENTURY ***

Updated editions will replace the previous one—the old editions


will be renamed.

Creating the works from print editions not protected by U.S.


copyright law means that no one owns a United States
copyright in these works, so the Foundation (and you!) can copy
and distribute it in the United States without permission and
without paying copyright royalties. Special rules, set forth in the
General Terms of Use part of this license, apply to copying and
distributing Project Gutenberg™ electronic works to protect the
PROJECT GUTENBERG™ concept and trademark. Project
Gutenberg is a registered trademark, and may not be used if
you charge for an eBook, except by following the terms of the
trademark license, including paying royalties for use of the
Project Gutenberg trademark. If you do not charge anything for
copies of this eBook, complying with the trademark license is
very easy. You may use this eBook for nearly any purpose such
as creation of derivative works, reports, performances and
research. Project Gutenberg eBooks may be modified and
printed and given away—you may do practically ANYTHING in
the United States with eBooks not protected by U.S. copyright
law. Redistribution is subject to the trademark license, especially
commercial redistribution.

START: FULL LICENSE


THE FULL PROJECT GUTENBERG LICENSE
PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK

To protect the Project Gutenberg™ mission of promoting the


free distribution of electronic works, by using or distributing this
work (or any other work associated in any way with the phrase
“Project Gutenberg”), you agree to comply with all the terms of
the Full Project Gutenberg™ License available with this file or
online at www.gutenberg.org/license.

Section 1. General Terms of Use and


Redistributing Project Gutenberg™
electronic works
1.A. By reading or using any part of this Project Gutenberg™
electronic work, you indicate that you have read, understand,
agree to and accept all the terms of this license and intellectual
property (trademark/copyright) agreement. If you do not agree
to abide by all the terms of this agreement, you must cease
using and return or destroy all copies of Project Gutenberg™
electronic works in your possession. If you paid a fee for
obtaining a copy of or access to a Project Gutenberg™
electronic work and you do not agree to be bound by the terms
of this agreement, you may obtain a refund from the person or
entity to whom you paid the fee as set forth in paragraph 1.E.8.

1.B. “Project Gutenberg” is a registered trademark. It may only


be used on or associated in any way with an electronic work by
people who agree to be bound by the terms of this agreement.
There are a few things that you can do with most Project
Gutenberg™ electronic works even without complying with the
full terms of this agreement. See paragraph 1.C below. There
are a lot of things you can do with Project Gutenberg™
electronic works if you follow the terms of this agreement and
help preserve free future access to Project Gutenberg™
electronic works. See paragraph 1.E below.
1.C. The Project Gutenberg Literary Archive Foundation (“the
Foundation” or PGLAF), owns a compilation copyright in the
collection of Project Gutenberg™ electronic works. Nearly all the
individual works in the collection are in the public domain in the
United States. If an individual work is unprotected by copyright
law in the United States and you are located in the United
States, we do not claim a right to prevent you from copying,
distributing, performing, displaying or creating derivative works
based on the work as long as all references to Project
Gutenberg are removed. Of course, we hope that you will
support the Project Gutenberg™ mission of promoting free
access to electronic works by freely sharing Project Gutenberg™
works in compliance with the terms of this agreement for
keeping the Project Gutenberg™ name associated with the
work. You can easily comply with the terms of this agreement
by keeping this work in the same format with its attached full
Project Gutenberg™ License when you share it without charge
with others.

1.D. The copyright laws of the place where you are located also
govern what you can do with this work. Copyright laws in most
countries are in a constant state of change. If you are outside
the United States, check the laws of your country in addition to
the terms of this agreement before downloading, copying,
displaying, performing, distributing or creating derivative works
based on this work or any other Project Gutenberg™ work. The
Foundation makes no representations concerning the copyright
status of any work in any country other than the United States.

1.E. Unless you have removed all references to Project


Gutenberg:

1.E.1. The following sentence, with active links to, or other


immediate access to, the full Project Gutenberg™ License must
appear prominently whenever any copy of a Project
Gutenberg™ work (any work on which the phrase “Project
Gutenberg” appears, or with which the phrase “Project
Gutenberg” is associated) is accessed, displayed, performed,
viewed, copied or distributed:

This eBook is for the use of anyone anywhere in the United


States and most other parts of the world at no cost and
with almost no restrictions whatsoever. You may copy it,
give it away or re-use it under the terms of the Project
Gutenberg License included with this eBook or online at
www.gutenberg.org. If you are not located in the United
States, you will have to check the laws of the country
where you are located before using this eBook.

1.E.2. If an individual Project Gutenberg™ electronic work is


derived from texts not protected by U.S. copyright law (does not
contain a notice indicating that it is posted with permission of
the copyright holder), the work can be copied and distributed to
anyone in the United States without paying any fees or charges.
If you are redistributing or providing access to a work with the
phrase “Project Gutenberg” associated with or appearing on the
work, you must comply either with the requirements of
paragraphs 1.E.1 through 1.E.7 or obtain permission for the use
of the work and the Project Gutenberg™ trademark as set forth
in paragraphs 1.E.8 or 1.E.9.

1.E.3. If an individual Project Gutenberg™ electronic work is


posted with the permission of the copyright holder, your use and
distribution must comply with both paragraphs 1.E.1 through
1.E.7 and any additional terms imposed by the copyright holder.
Additional terms will be linked to the Project Gutenberg™
License for all works posted with the permission of the copyright
holder found at the beginning of this work.

1.E.4. Do not unlink or detach or remove the full Project


Gutenberg™ License terms from this work, or any files
containing a part of this work or any other work associated with
Project Gutenberg™.

1.E.5. Do not copy, display, perform, distribute or redistribute


this electronic work, or any part of this electronic work, without
prominently displaying the sentence set forth in paragraph 1.E.1
with active links or immediate access to the full terms of the
Project Gutenberg™ License.

1.E.6. You may convert to and distribute this work in any binary,
compressed, marked up, nonproprietary or proprietary form,
including any word processing or hypertext form. However, if
you provide access to or distribute copies of a Project
Gutenberg™ work in a format other than “Plain Vanilla ASCII” or
other format used in the official version posted on the official
Project Gutenberg™ website (www.gutenberg.org), you must,
at no additional cost, fee or expense to the user, provide a copy,
a means of exporting a copy, or a means of obtaining a copy
upon request, of the work in its original “Plain Vanilla ASCII” or
other form. Any alternate format must include the full Project
Gutenberg™ License as specified in paragraph 1.E.1.

1.E.7. Do not charge a fee for access to, viewing, displaying,


performing, copying or distributing any Project Gutenberg™
works unless you comply with paragraph 1.E.8 or 1.E.9.

1.E.8. You may charge a reasonable fee for copies of or


providing access to or distributing Project Gutenberg™
electronic works provided that:

• You pay a royalty fee of 20% of the gross profits you derive
from the use of Project Gutenberg™ works calculated using the
method you already use to calculate your applicable taxes. The
fee is owed to the owner of the Project Gutenberg™ trademark,
but he has agreed to donate royalties under this paragraph to
the Project Gutenberg Literary Archive Foundation. Royalty
payments must be paid within 60 days following each date on
which you prepare (or are legally required to prepare) your
periodic tax returns. Royalty payments should be clearly marked
as such and sent to the Project Gutenberg Literary Archive
Foundation at the address specified in Section 4, “Information
about donations to the Project Gutenberg Literary Archive
Foundation.”

• You provide a full refund of any money paid by a user who


notifies you in writing (or by e-mail) within 30 days of receipt
that s/he does not agree to the terms of the full Project
Gutenberg™ License. You must require such a user to return or
destroy all copies of the works possessed in a physical medium
and discontinue all use of and all access to other copies of
Project Gutenberg™ works.

• You provide, in accordance with paragraph 1.F.3, a full refund of


any money paid for a work or a replacement copy, if a defect in
the electronic work is discovered and reported to you within 90
days of receipt of the work.

• You comply with all other terms of this agreement for free
distribution of Project Gutenberg™ works.

1.E.9. If you wish to charge a fee or distribute a Project


Gutenberg™ electronic work or group of works on different
terms than are set forth in this agreement, you must obtain
permission in writing from the Project Gutenberg Literary
Archive Foundation, the manager of the Project Gutenberg™
trademark. Contact the Foundation as set forth in Section 3
below.

1.F.

1.F.1. Project Gutenberg volunteers and employees expend


considerable effort to identify, do copyright research on,
transcribe and proofread works not protected by U.S. copyright
law in creating the Project Gutenberg™ collection. Despite these
efforts, Project Gutenberg™ electronic works, and the medium
on which they may be stored, may contain “Defects,” such as,
but not limited to, incomplete, inaccurate or corrupt data,
transcription errors, a copyright or other intellectual property
infringement, a defective or damaged disk or other medium, a
computer virus, or computer codes that damage or cannot be
read by your equipment.

1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except


for the “Right of Replacement or Refund” described in
paragraph 1.F.3, the Project Gutenberg Literary Archive
Foundation, the owner of the Project Gutenberg™ trademark,
and any other party distributing a Project Gutenberg™ electronic
work under this agreement, disclaim all liability to you for
damages, costs and expenses, including legal fees. YOU AGREE
THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT
LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT
EXCEPT THOSE PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE
THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY
DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE
TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL,
PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE
NOTICE OF THE POSSIBILITY OF SUCH DAMAGE.

1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you


discover a defect in this electronic work within 90 days of
receiving it, you can receive a refund of the money (if any) you
paid for it by sending a written explanation to the person you
received the work from. If you received the work on a physical
medium, you must return the medium with your written
explanation. The person or entity that provided you with the
defective work may elect to provide a replacement copy in lieu
of a refund. If you received the work electronically, the person
or entity providing it to you may choose to give you a second
opportunity to receive the work electronically in lieu of a refund.
If the second copy is also defective, you may demand a refund
in writing without further opportunities to fix the problem.

1.F.4. Except for the limited right of replacement or refund set


forth in paragraph 1.F.3, this work is provided to you ‘AS-IS’,
WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR ANY PURPOSE.

1.F.5. Some states do not allow disclaimers of certain implied


warranties or the exclusion or limitation of certain types of
damages. If any disclaimer or limitation set forth in this
agreement violates the law of the state applicable to this
agreement, the agreement shall be interpreted to make the
maximum disclaimer or limitation permitted by the applicable
state law. The invalidity or unenforceability of any provision of
this agreement shall not void the remaining provisions.

1.F.6. INDEMNITY - You agree to indemnify and hold the


Foundation, the trademark owner, any agent or employee of the
Foundation, anyone providing copies of Project Gutenberg™
electronic works in accordance with this agreement, and any
volunteers associated with the production, promotion and
distribution of Project Gutenberg™ electronic works, harmless
from all liability, costs and expenses, including legal fees, that
arise directly or indirectly from any of the following which you
do or cause to occur: (a) distribution of this or any Project
Gutenberg™ work, (b) alteration, modification, or additions or
deletions to any Project Gutenberg™ work, and (c) any Defect
you cause.

Section 2. Information about the Mission


of Project Gutenberg™
Project Gutenberg™ is synonymous with the free distribution of
electronic works in formats readable by the widest variety of
computers including obsolete, old, middle-aged and new
computers. It exists because of the efforts of hundreds of
volunteers and donations from people in all walks of life.

Volunteers and financial support to provide volunteers with the


assistance they need are critical to reaching Project
Gutenberg™’s goals and ensuring that the Project Gutenberg™
collection will remain freely available for generations to come. In
2001, the Project Gutenberg Literary Archive Foundation was
created to provide a secure and permanent future for Project
Gutenberg™ and future generations. To learn more about the
Project Gutenberg Literary Archive Foundation and how your
efforts and donations can help, see Sections 3 and 4 and the
Foundation information page at www.gutenberg.org.

Section 3. Information about the Project


Gutenberg Literary Archive Foundation
The Project Gutenberg Literary Archive Foundation is a non-
profit 501(c)(3) educational corporation organized under the
laws of the state of Mississippi and granted tax exempt status
by the Internal Revenue Service. The Foundation’s EIN or
federal tax identification number is 64-6221541. Contributions
to the Project Gutenberg Literary Archive Foundation are tax
deductible to the full extent permitted by U.S. federal laws and
your state’s laws.

The Foundation’s business office is located at 809 North 1500


West, Salt Lake City, UT 84116, (801) 596-1887. Email contact
links and up to date contact information can be found at the
Foundation’s website and official page at
www.gutenberg.org/contact
Section 4. Information about Donations to
the Project Gutenberg Literary Archive
Foundation
Project Gutenberg™ depends upon and cannot survive without
widespread public support and donations to carry out its mission
of increasing the number of public domain and licensed works
that can be freely distributed in machine-readable form
accessible by the widest array of equipment including outdated
equipment. Many small donations ($1 to $5,000) are particularly
important to maintaining tax exempt status with the IRS.

The Foundation is committed to complying with the laws


regulating charities and charitable donations in all 50 states of
the United States. Compliance requirements are not uniform
and it takes a considerable effort, much paperwork and many
fees to meet and keep up with these requirements. We do not
solicit donations in locations where we have not received written
confirmation of compliance. To SEND DONATIONS or determine
the status of compliance for any particular state visit
www.gutenberg.org/donate.

While we cannot and do not solicit contributions from states


where we have not met the solicitation requirements, we know
of no prohibition against accepting unsolicited donations from
donors in such states who approach us with offers to donate.

International donations are gratefully accepted, but we cannot


make any statements concerning tax treatment of donations
received from outside the United States. U.S. laws alone swamp
our small staff.

Please check the Project Gutenberg web pages for current


donation methods and addresses. Donations are accepted in a
number of other ways including checks, online payments and
credit card donations. To donate, please visit:
www.gutenberg.org/donate.

Section 5. General Information About


Project Gutenberg™ electronic works
Professor Michael S. Hart was the originator of the Project
Gutenberg™ concept of a library of electronic works that could
be freely shared with anyone. For forty years, he produced and
distributed Project Gutenberg™ eBooks with only a loose
network of volunteer support.

Project Gutenberg™ eBooks are often created from several


printed editions, all of which are confirmed as not protected by
copyright in the U.S. unless a copyright notice is included. Thus,
we do not necessarily keep eBooks in compliance with any
particular paper edition.

Most people start at our website which has the main PG search
facility: www.gutenberg.org.

This website includes information about Project Gutenberg™,


including how to make donations to the Project Gutenberg
Literary Archive Foundation, how to help produce our new
eBooks, and how to subscribe to our email newsletter to hear
about new eBooks.
Welcome to our website – the perfect destination for book lovers and
knowledge seekers. We believe that every book holds a new world,
offering opportunities for learning, discovery, and personal growth.
That’s why we are dedicated to bringing you a diverse collection of
books, ranging from classic literature and specialized publications to
self-development guides and children's books.

More than just a book-buying platform, we strive to be a bridge


connecting you with timeless cultural and intellectual values. With an
elegant, user-friendly interface and a smart search system, you can
quickly find the books that best suit your interests. Additionally,
our special promotions and home delivery services help you save time
and fully enjoy the joy of reading.

Join us on a journey of knowledge exploration, passion nurturing, and


personal growth every day!

testbankfan.com

You might also like