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

Java How to Program 9th Edition Deitel Test Bank pdf download

Test bank download

Uploaded by

bervarrettl
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
5 views

Java How to Program 9th Edition Deitel Test Bank pdf download

Test bank download

Uploaded by

bervarrettl
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 33

Java How to Program 9th Edition Deitel Test Bank

download

https://testbankdeal.com/product/java-how-to-program-9th-edition-
deitel-test-bank/

Find test banks or solution manuals at testbankdeal.com today!


Here are some recommended products for you. Click the link to
download, or explore more at testbankdeal.com

Java How to Program 9th Edition Deitel Solutions Manual

https://testbankdeal.com/product/java-how-to-program-9th-edition-
deitel-solutions-manual/

Java How To Program Late Objects 10th Edition Deitel Test


Bank

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

Java How to Program Early Objects 11th Edition Deitel Test


Bank

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

Microeconomics 9th Edition Boyes Solutions Manual

https://testbankdeal.com/product/microeconomics-9th-edition-boyes-
solutions-manual/
Horngrens Accounting The Managerial Chapters 10th Edition
Nobles Solutions Manual

https://testbankdeal.com/product/horngrens-accounting-the-managerial-
chapters-10th-edition-nobles-solutions-manual/

General Organic and Biological Chemistry 2nd Edition


Janice Gorzynski Smith Solutions Manual

https://testbankdeal.com/product/general-organic-and-biological-
chemistry-2nd-edition-janice-gorzynski-smith-solutions-manual/

Essential Organic Chemistry 2nd Edition Bruice Test Bank

https://testbankdeal.com/product/essential-organic-chemistry-2nd-
edition-bruice-test-bank/

Drug Use and Abuse Canadian 1st Edition Maisto Test Bank

https://testbankdeal.com/product/drug-use-and-abuse-canadian-1st-
edition-maisto-test-bank/

Principles of Economics 12th Edition Case Solutions Manual

https://testbankdeal.com/product/principles-of-economics-12th-edition-
case-solutions-manual/
Introduction to Risk Management and Insurance 10th Edition
Dorfman Test Bank

https://testbankdeal.com/product/introduction-to-risk-management-and-
insurance-10th-edition-dorfman-test-bank/
Chapter 10: Object-Oriented
Programming: Polymorphism
Section 10.1 Introduction
10.1 Q1: Polymorphism enables you to:
a. program in the general.
b. program in the specific.
c. absorb attributes and behavior from previous classes.
d. hide information from the user.
Ans: a. program in the general.

10.1 Q2: Which of the following statements about interfaces is false?


a. An interface describes a set of methods that can be called on an object, providing a
default implementation for the methods.
b. An interface describes a set of methods that can be called on an object, not
providing concrete implementation for the methods.
c. Interfaces are useful when attempting to assign common functionality to possibly
unrelated classes.
d. Once a class implements an interface, all objects of that class have an is-a
relationship with the interface type.
Ans: a. An interface describes a set of methods that can be called on an object,
providing a default implementation for the methods.

Section 10.2 Polymorphism Examples


10.2 Q1: For which of the following would polymorphism not provide a clean
solution?
a. A billing program where there is a variety of client types that are billed with
different fee structures.
b. A maintenance log program where data for a variety of types of machines is
collected and maintenance schedules are produced for each machine based on the
data collected.
c. A program to compute a 5% savings account interest for a variety of clients.
d. An IRS program that maintains information on a variety of taxpayers and
determines who to audit based on criteria for classes of taxpayers.
Ans: c. A program to compute a 5% savings account interest for a variety of clients.
Because there is only one kind of calculation, there is no need for polymorphism.

10.2 Q2: Polymorphism allows for specifics to be dealt with during:


© Copyright 1992-2012 by Deitel & Associates, Inc. and Pearson Education, Inc.
a. execution.
b. compilation.
c. programming.
d. debugging.
Ans: a. execution

Section 10.3 Demonstrating Polymorphic


Behavior
10.3 Q1: Which statement best describes the relationship between superclass and
subclass types?
a. A subclass reference cannot be assigned to a superclass variable and a superclass
reference cannot be assigned to a subclass variable.
b. A subclass reference can be assigned to a superclass variable and a superclass
reference can be assigned to a subclass variable.
c. A superclass reference can be assigned to a subclass variable, but a subclass
reference cannot be assigned to a superclass variable.
d. A subclass reference can be assigned to a superclass variable, but a superclass
reference cannot be assigned to a subclass variable.
Ans: d. A subclass reference can be assigned to a superclass variable, but a
superclass reference cannot be assigned to a subclass variable.

Section 10.4 Abstract Classes and Methods


10.4 Q1: A(n) class cannot be instantiated.
a. final.
b. concrete.
c. abstract.
d. polymorphic.
Ans: c. abstract.

10.4 Q2: Non-abstract classes are called:


a. real classes.
b. instance classes.
c. implementable classes.
d. concrete classes.
Ans: d. concrete classes.

Section 10.5 Case Study: Payroll System


© Copyright 1992-2012 by Deitel & Associates, Inc. and Pearson Education, Inc.
Using Polymorphism
10.5 Q1: It is a UML convention to denote the name of an abstract class in:
a. bold.
b. italics.
c. a diamond.
d. there is no convention of the UML to denote abstract classes—they are listed just
as any other class.
Ans: b. italics.

10.5 Q2: If the superclass contains only abstract method declarations, the
superclass is used for:
a. implementation inheritance.
b. interface inheritance.
c. Both.
d. Neither.
Ans: b. interface inheritance.

Section 10.5.1 Abstract Superclass Employee


10.5.1 Q1: Which of the following could be used to declare abstract method
method1 in abstract class Class1 (method1 returns an int and takes no
arguments)?
a. public int method1();
b. public int abstract method1();
c. public abstract int method1();
d. public int nonfinal method1();
Ans: c. public abstract int method1();

10.5.1 Q2: Which of the following statements about abstract superclasses is true?
a. abstract superclasses may contain data.
b. abstract superclasses may not contain implementations of methods.
c. abstract superclasses must declare all methods as abstract.
d. abstract superclasses must declare all data members not given values as
abstract.
Ans: a. abstract superclasses may contain data.

Section 10.5.2 Concrete Subclass SalariedEmployee


10.5.2 Q1: Consider the abstract superclass below:

© Copyright 1992-2012 by Deitel & Associates, Inc. and Pearson Education, Inc.
public abstract class Foo
{
private int a;
public int b;

public Foo( int aVal, int bVal )


{
a = aVal;
b = bVal;
} // end Foo constructor

public abstract int calculate();


} // end class Foo

Any concrete subclass that extends class Foo:


a. Must implement a method called calculate.
b. Will not be able to access the instance variable a.
c. Neither (a) nor (b).
d. Both (a) and (b).
Ans: d. Both (a) and (b).

Section 10.5.5 Indirect Concrete Subclass


BasePlusCommissionEmployee
10.5.5 Q1: Consider classes A, B and C, where A is an abstract superclass, B is a
concrete class that inherits from A and C is a concrete class that inherits from B. Class
A declares abstract method originalMethod, implemented in class B. Which of the
following statements is true of class C?
a. Method originalMethod cannot be overridden in class C—once it has been
implemented in concrete class B, it is implicitly final.
b. Method originalMethod must be overridden in class C, or a syntax error will occur.
c. If method originalMethod is not overridden in class C but is called by an object of
class C, an error occurs.
d. None of the above.
Ans: d. None of the above.

Section 10.5.6 Polymorphic Processing, Operator


instanceof and Downcasting
10.5.6 Q1: When a superclass variable refers to a subclass object and a method is
called on that object, the proper implementation is determined at execution time.
What is the process of determining the correct method to call?
a. early binding.
b. non-binding.
© Copyright 1992-2012 by Deitel & Associates, Inc. and Pearson Education, Inc.
c. on-time binding.
d. late binding.
Ans: d. late binding (also called dynamic binding).

10.5.6 Q2: Every object in Java knows its own class and can access this information
through method .
a. getClass.
b. getInformation.
c. objectClass.
d. objectInformation.
Ans: a. getClass.

Section 10.5.7 Summary of the Allowed Assignments


Between Superclass and Subclass Variables
10.5.7 Q1: Assigning a subclass reference to a superclass variable is safe:
a. because the subclass object has an object of its superclass.
b. because the subclass object is an object of its superclass.
c. only when the superclass is abstract.
d. only when the superclass is concrete.
Ans: b. because the subclass object is an object of its superclass.

Section 10.6 final Methods and Classes


10.6 Q1: Classes and methods are declared final for all but the following reasons:
a. final methods allow inlining the code.
b. final methods and classes prevent further inheritance.
c. final methods are static.
d. final methods can improve performance.
Ans: c. final methods are static.

10.6 Q2: All of the following methods are implicitly final except:
a. a method in an abstract class.
b. a private method.
c. a method declared in a final class.
d. static method.
Ans: a. a method in an abstract class.

10.6 Q3: Declaring a method final means:


© Copyright 1992-2012 by Deitel & Associates, Inc. and Pearson Education, Inc.
a. it will prepare the object for garbage collection.
b. it cannot be accessed from outside its class.
c. it cannot be overloaded.
d. it cannot be overridden.
Ans: d. it cannot be overridden.

Section 10.7 Case Study: Creating and Using


Interfaces
10.7 Q1: An interface may contain:
a. private static data and public abstract methods.
b. only public abstract methods.
c. public static final data and public abstract methods.
d. private static data and public final methods.
Ans: c. public static final data and public abstract methods.

10.7 Q2: Which of the following does not complete the sentence correctly?
An interface .
a. forces classes that implement it to declare all the interface methods.
b. can be used in place of an abstract class when there is no default
implementation to inherit.
c. is declared in a file by itself and is saved in a file with the same name as the
interface followed by the .java extension.
d. can be instantiated.
Ans: d. can be instantiated.

Section 10.7.1 Developing a Payable Hierarchy


10.7.1 Q1: The UML distinguishes an interface from other classes by placing the
word “interface” in above the interface name.
a. italics.
b. carets.
c. guillemets.
d. bold.
Ans: c. guillemets.

Section 10.7.2 Interface Payable


10.7.2 Q1: Interfaces can have methods.
a. 0

© Copyright 1992-2012 by Deitel & Associates, Inc. and Pearson Education, Inc.
b. 1
c. 2
d. any number of
Ans: d. any number of

Section 10.7.3 Class Invoice


10.7.3 Q1: Which keyword is used to specify that a class will define the methods of
an interface?
a. uses.
b. implements.
c. defines.
d. extends.
Ans: b. implements.

10.7.3 Q2: Which of the following is not possible?


a. A class that implements two interfaces.
b. A class that inherits from two classes.
c. A class that inherits from one class, and implements an interface.
d. All of the above are possible.
Ans: b. A class that inherits from two classes.

Section 10.7.4 Modifying Class Employee to


Implement Interface Payable
10.7.4 Q1: A class that implements an interface but does not declare all of the
interface’s methods must be declared:
a. public.
b. interface.
c. abstract.
d. final.
Ans: c. abstract.

© Copyright 1992-2012 by Deitel & Associates, Inc. and Pearson Education, Inc.
Random documents with unrelated
content Scribd suggests to you:
lo que per tu es un pur goig o torment,
sí que de la meva vida estic content,
perquè dins d'ella dues vides són.
Més si aquest esser fos descompartit
i mos sentits restessin corporals,
jo més m'estimaria abandonâ-ls,
pera esser, com tu, sols un esprit.
No ara, que tot canta en mes entranyes
i que tinc muller propria i que tinc fills,
i que en el cim de les pairals montanyes
hi ha un crit de renaixença entre perills.
De l'amor i la lluita es la meva hora
i em calen braços per aimâ i lluitâ.
Tot lo que tinc m'ho vull, i pit i fòra...
Més, què sé jo lo que voldré demà?

ADALAISA

Ditxós de tu, que pots volê am veu viva


i que ets a temps a pendre i a deixar,
i tens a casa la muller captiva
que t dóna fills i filles a estimar.
Però, digues com fou que la trobares
i aon florí l'amor i aon granà;
diga-m de com les dònes tornen mares
en aquest món on mai haig de tornar.

EL POETA

En una vall del Pireneu molt alta


un estiu la vegí per primer cop;
no la vegí sinó després molt veure-la,
perquè té la bellesa molt recòndita,
com la viola que embalsama ls boscos.
Més ara jo l'he feta rosa vera
del meu jardí, i a més ha estat fruitosa:
perquè Déu benehia ses entranyes
perquè Déu benehia ses entranyes
moltes voltes, i alguna doblement.
I els fruits ja no li caben a la falda,
i roden pel trespol, i son formosos.

Com són acostumats al bés mos llavis


i els ulls a mirâ avall cap els petits,
i a doblegar-se l cos pera estimar-los
més d'aprop, i aixecar-los en mos braços
cap al cel, prò tenint-los ben fermats!
Cada bés en cad'un té l seu gust propri:
mai he besat a dos d'igual manera,
però a tots dolçament, perquè són docils
a l'esguard maternal que a sobre ls vola
ab aquell seu imperi ferm i suau.
Ella mels agombola tot el dia
i mels vetlla de nit, fins adormida,
oh sòn de mare, que vigiles més
que tot altre vetllar!... Més, de què plores,
Adalaisa, que t sento dins la fosca?

ADALAISA

Ah! Tingués jo ls ulls oberts a llum del dia,


d'altre crit, d'altre modo ploraria.
El xiscle esgarrifós de la partera,
com de bestia ferida, em fóra grat;
i el fill que duc per vies tant extranyes,
sortiria ensagnat de mes entranyes,
i jo riuria ab riure com d'orat.
¿Què m faria l dolor, ni què l desfici,
ni tot el temps passat de sacrifici,
ni les congoixes, ni l perill de mort,
si de la vida me trobés com centre,
i sentís com l'infant, desprès del ventre,
morat d'ofec encara, arrenca l plor?
EL POETA

Bé la conec la vostra fortalesa


quan, regalant suor, la cara encesa,
solt el cabell, com astre radiant,
al sortir de la brega gloriosa,
nos doneu l'abraçada furiosa
i vostre bés ressona com un cant!
Llavores que l marit, més fred que l marbre,
tremola encara com la fulla a l'arbre,
dret al costat del llit tempestejat,
i ajegudes vosaltres, sens memoria,
ubriagades per la gran victoria,
el rebregueu al pit,—volent més fort combat...
Més ara tu, Adalaisa, ¿què somnies
de tenî un fill, si ja no ets d'aquest món,
i en el món qu'ets no hi calen fills ni filles,
perquè ls esprits lo que han de ser ja ho són?

ADALAISA

I ¿què sabs tu ni d'aquest món ni d'altres


ni de lo que es un cos o un esperit,
ni lo que un gran desig pot en nosaltres,
restant en l'ultim ai! del nostre pit?
Tu m tens per morta i jo m tinc per viva,
més tal com si enterrada viva fos:
tinc el voler de mos sentits furiós,
perquè hi ha alguna cosa que mel priva.
Si no me la pots traure de damunt,
de què us val, doncs, poetes, la poesia?

EL POETA

Alguna veu jo sento en aquest punt


que d'altre modo no la sentiria
que d'altre modo no la sentiria.

ADALAISA

Oh! La veu sense sò del que es difunt!


No es pas aquesta la que jo voldria:
aquella eixida de mon pit de carn
que alegrament entorn me ressonava:
aquella, amic, es la que jo t deman,
i lo demés que amb ella s comportava.
I si ta poesia no pot tant,
si no m pots tornâ al món, calla i acaba.

EL POETA

Adalaisa, Adalaisa, per pietat,


al temps hi ha encara coses no sabudes:
la poesia tot just ha començat
i es plena de virtuts inconegudes.
Més ara tens raó, prou hem parlat:
esperem en silenci altres vingudes.
INDEX
Pàgs.
Els ametllers, 5
Vistes al mar, 7
Les montanyes, 10
Retorn, 13
Represa, 17
Glosa, 18
Del Montseny, 24
Del Montjuic, 27
L'Anima, 33
La cançó del comte l'Arnau, 35
Escolium, 51
OBRES DEL MATEIX AUTOR
Poesies (1895).
Visions & Cants (1900). Agotada.
Les Disperses (1904).
Enllà (1906).
Artículos (1904).

TRADUCCIONS
Goethe: Efigenia a Taurida (1898).
Eridon y Amina (1904).
La Marguerideta (1904).
Helle: Fisonomías de Santos (1899).
Wette: Ton y Guida (1901).
Wagner: Tristan e Isolda (1904).

FASCICLES I TREBALLS SOLTS


Elogi de la Paraula (discurs de l'Ateneu). 1903.
De la Bellesa (en la festa de Palafrugell). 1905.
Necrologies de: Joan Sardà (1900).
Doctor Robert (1903).
Jacinto Verdaguer, excursionista (1905).
De las reyals jornadas (1904).
*** END OF THE PROJECT GUTENBERG EBOOK ENLLÀ: POESIES
***

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!

testbankdeal.com

You might also like