Download as pdf or txt
Download as pdf or txt
You are on page 1of 25

Programming Logic and Design

Comprehensive 7th Edition Joyce


Farrell Test Bank
Go to download the full and correct content document:
https://testbankfan.com/product/programming-logic-and-design-comprehensive-7th-e
dition-joyce-farrell-test-bank/
More products digital (pdf, epub, mobi) instant
download maybe you interests ...

Programming Logic and Design Comprehensive 7th Edition


Joyce Farrell Solutions Manual

https://testbankfan.com/product/programming-logic-and-design-
comprehensive-7th-edition-joyce-farrell-solutions-manual/

Object-Oriented Approach to Programming Logic and


Design 4th Edition Joyce Farrell Test Bank

https://testbankfan.com/product/object-oriented-approach-to-
programming-logic-and-design-4th-edition-joyce-farrell-test-bank/

Object-Oriented Approach to Programming Logic and


Design 4th Edition Joyce Farrell Solutions Manual

https://testbankfan.com/product/object-oriented-approach-to-
programming-logic-and-design-4th-edition-joyce-farrell-solutions-
manual/

Java Programming 7th Edition Joyce Farrell Test Bank

https://testbankfan.com/product/java-programming-7th-edition-
joyce-farrell-test-bank/
Just Enough Programming Logic and Design 2nd Edition
Farrell Test Bank

https://testbankfan.com/product/just-enough-programming-logic-
and-design-2nd-edition-farrell-test-bank/

Java Programming 7th Edition Joyce Farrell Solutions


Manual

https://testbankfan.com/product/java-programming-7th-edition-
joyce-farrell-solutions-manual/

Java Programming 9th Edition Joyce Farrell Test Bank

https://testbankfan.com/product/java-programming-9th-edition-
joyce-farrell-test-bank/

Java Programming 8th Edition Joyce Farrell Test Bank

https://testbankfan.com/product/java-programming-8th-edition-
joyce-farrell-test-bank/

Java Programming 9th Edition Joyce Farrell Solutions


Manual

https://testbankfan.com/product/java-programming-9th-edition-
joyce-farrell-solutions-manual/
Chapter 6: Arrays

TRUE/FALSE

1. Many newer programming languages such as C++, Java, and C# use subscript 1 to access the first
element of the array.

ANS: F PTS: 1 REF: 214

2. You use subscripts 1 through 10 to access the elements in a ten element array.

ANS: F PTS: 1 REF: 214

3. Many newer programming languages such as C++, Java, and C# use the bracket notation for arrays.

ANS: T PTS: 1 REF: 214

4. Declaring a named constant makes code easier to modify and understand.

ANS: T PTS: 1 REF: 224

5. A parallel array is an array that stores another array in each element.

ANS: F PTS: 1 REF: 230

6. Parallel arrays must contain the same data type.

ANS: F PTS: 1 REF: 230

7. You can improve the efficiency of a program by leaving a loop as soon as a match is found in the
array.

ANS: T PTS: 1 REF: 234

8. Arrays cannot be used if you need to search for a range of values.

ANS: F PTS: 1 REF: 237

9. When you have a five element array and use subscript 8, your subscript is said to be out of bounds.

ANS: T PTS: 1 REF: 243

10. The for loop is a good tool when working with arrays because you frequently need to process every
element of an array from beginning to end.

ANS: T PTS: 1 REF: 244

MULTIPLE CHOICE

1. An array is a(n) ____ of values in computer memory.


a. list c. set
b. accumulation d. record
ANS: A PTS: 1 REF: 214

2. A(n) ____ is another name for a subscript.


a. pointer c. index
b. sequence d. place holder
ANS: C PTS: 1 REF: 214

3. The number of elements in an array is called the ____ of the array.


a. width c. height
b. size d. depth
ANS: B PTS: 1 REF: 214

4. All array elements have the same group ____.


a. subscript c. memory location
b. name d. value
ANS: B PTS: 1 REF: 214

5. Array elements all have the same ____ in common.


a. pointer c. value
b. memory location d. data type
ANS: D PTS: 1 REF: 214

6. Array subscripts are always a sequence of ____.


a. large numbers c. negative values
b. characters d. integers
ANS: D PTS: 1 REF: 214

7. In all languages, subscript values must be sequential ____.


a. characters c. real numbers
b. fractions d. integers
ANS: D PTS: 1 REF: 214

8. A program contains an array that holds all the names of the days of the week. Which of the following
is true?
a. The highest subscript is 6. c. The lowest subscript is 1.
b. The highest subscript is 7. d. The highest subscript is 12.
ANS: A PTS: 1 REF: 214

9. Providing array values is sometimes called ____.


a. creating the array c. accumulating the array
b. declaring the array d. populating the array
ANS: D PTS: 1 REF: 215

10. An array can be used to replace ____.


a. records c. nested decisions
b. methods d. loops
ANS: C PTS: 1 REF: 216
11. The true benefit of using an array lies in your ability to use a ____ as a subscript to the array.
a. constant c. command
b. loop d. variable
ANS: D PTS: 1 REF: 219

12. Named ____ hold values that do not change during a program’s execution.
a. constants c. objects
b. variables d. items
ANS: A PTS: 1 REF: 224

13. Besides making your code easier to modify, using a ____ makes the code easier to understand.
a. standard constant c. literal constant
b. named constant d. named variable
ANS: B PTS: 1 REF: 224

14. One advantage to using a named constant is that the statement becomes ____.
a. self-perpetuating c. self-referencing
b. self-documenting d. self-mitigating
ANS: B PTS: 1 REF: 225

15. When you search through a list from one end to the other, you are performing a ____.
a. linear search c. quadratic search
b. binary search d. single lookup
ANS: A PTS: 1 REF: 226

16. If you declare a variable to be Boolean, you can set its value to ____.
a. any number c. any integer
b. true or false d. 1 or -1
ANS: B PTS: 1 REF: 229

17. Which statement is true of arrays?


a. Only whole numbers can be used as array subscripts.
b. Only whole numbers can be stored in arrays.
c. Arrays cause more work for the programmer, but allow faster program execution.
d. Array elements cannot be reset after the array is declared.
ANS: A PTS: 1 REF: 214

18. A ____ relates parallel arrays.


a. superscript c. subscript
b. key d. postscript
ANS: C PTS: 1 REF: 230

19. Parallel arrays are most useful when value pairs have a(n) ____ relationship.
a. direct c. linked
b. indirect d. tiered
ANS: B PTS: 1 REF: 234
20. A ____ search starts looking in the middle of a sorted list, and then determines whether it should
continue higher or lower.
a. linear c. quadratic
b. binary d. single lookup
ANS: B PTS: 1 REF: 236

21. To search an array for a(n) ____ match, you can store either the highest or lowest value
of each range for comparison.
a. flag c. subscript
b. index d. range
ANS: D PTS: 1 REF: 238-240

22. Every array has a(n) ____ size.


a. infinite c. variable
b. finite d. constant
ANS: B PTS: 1 REF: 241

23. The number of bytes in an array is always a multiple of the number of ____ in an array.
a. subscripts c. iterators
b. elements d. indexes
ANS: B PTS: 1 REF: 241

24. In every programming language, when you access data stored in an array, it is important to use a ____
containing a value that accesses memory occupied by the array.
a. superscript c. key
b. subscript d. condition
ANS: B PTS: 1 REF: 241

25. When a subscript is not within the range of acceptable subscripts, it is said to be ____.
a. a superscript c. out of bounds
b. flagged d. indexed
ANS: C PTS: 1 REF: 243

COMPLETION

1. Use a(n) ____________________ to indicate the position of a particular item within an array.

ANS: subscript

PTS: 1 REF: 214

2. All array elements have the same ____________________ name, but each individual element also has
a unique subscript indicating how far away it is from the first element.

ANS: group

PTS: 1 REF: 214

3. Each array ____________________ is a single variable.


ANS: element

PTS: 1 REF: 214

4. When working with arrays, you can use ____________________ in


several ways: To hold the size of an array, as the array values, and as a subscript .

ANS: constants

PTS: 1 REF: 215

5. A(n) ____________________ is a variable set to indicate whether some event has occurred.

ANS: flag

PTS: 1 REF: 229

MATCHING

Match each term with a statement below.


a. range of values f. element
b. out of bounds g. for loop
c. flag h. constant
d. parallel arrays i. binary search
e. array j. populating the array
1. A series of values in computer memory
2. Each separate item in an array
3. Providing array values
4. Can hold the size of an array
5. A variable that you set to indicate whether some event has occurred
6. Starts looking in the middle of a sorted list, and then determines whether it should continue higher or
lower
7. Any series of contiguous values
8. A subscript that is not within the range of acceptable subscripts
9. A particularly convenient tool when working with arrays because you frequently need to process every
element of an array
10. In this type of array, each element in one array is associated with the element in the same relative
position in the other array

1. ANS: E PTS: 1 REF: 214


2. ANS: F PTS: 1 REF: 214
3. ANS: J PTS: 1 REF: 215
4. ANS: H PTS: 1 REF: 224
5. ANS: C PTS: 1 REF: 229
6. ANS: I PTS: 1 REF: 236
7. ANS: A PTS: 1 REF: 237
8. ANS: B PTS: 1 REF: 243
9. ANS: G PTS: 1 REF: 244
10. ANS: D PTS: 1 REF: 230
SHORT ANSWER

1. Describe an array and provide an example of a real-life equivalent to an array.

ANS:
An array is a series or list of variables in computer memory, all of which have the same name and data
type but are differentiated with special numbers called subscripts. Usually, all the values in an array
have something in common; for example, they might represent a list of employee ID numbers or a list
of prices for items a store sells. A subscript, also called an index, is a number that indicates the
position of a particular item within an array.

Whenever you require multiple storage locations for objects, you are using a real-life counterpart of a
programming array. For example, if you store important papers in a series of file folders and label each
folder with a consecutive letter of the alphabet, then you are using the equivalent of an array.

PTS: 1 REF: 214 TOP: Critical Thinking

2. How do you reference the elements in an array?

ANS:
All array elements have the same group name, but each individual element also has a unique subscript
indicating how far away it is from the first element. Therefore, any array’s subscripts are always a
sequence of integers such as 0 through 4 or 0 through 9.

Depending on the syntax rules of the programming language you use, you place the subscript within
parentheses or square brackets following the group name.

PTS: 1 REF: 214 TOP: Critical Thinking

3. Why is it important to learn to use arrays correctly?

ANS:
Learning to use arrays correctly can make many programming tasks far more efficient and
professional. When you understand how to use arrays, you will be able to provide elegant solutions to
problems that otherwise would require tedious programming steps.

PTS: 1 REF: 223 TOP: Critical Thinking

4. How can constants be used when working with arrays?

ANS:
• To hold the size of an array
• As the array values
• As a subscript

PTS: 1 REF: 224 TOP: Critical Thinking

5. How do you find a particular value in an array? Provide an example.

ANS:
The technique for verifying that an item number exists involves setting a subscript to 0 and setting a
flag variable to indicate that you have not yet determined whether the customer’s order is valid. A flag
is a variable that you set to indicate whether some event has occurred; frequently it holds a true or false
value. For example, you can set a string variable named foundIt to “N”, indicating “No”. Then you
compare the customer’s ordered item number to the first item in the array. If the customer-ordered
item matches the first item in the array, you can set the flag variable to “Y”, or any other value that is
not “N”. If the items do not match, you increase the subscript and continue to look down the list of
numbers stored in the array. If you check all six valid item numbers and the customer item matches
none of them, then the flag variable foundIt still holds the value “N”. If the flag variable is “N”
after you have looked through the entire list, you can issue an error message indicating that no match
was ever found.

PTS: 1 REF: 229 TOP: Critical Thinking

6. Why is it desirable to leave the loop as soon as a match is found?

ANS:
Leaving the loop as soon as a match is found improves the program’s efficiency. The larger the array,
the more beneficial it becomes to exit the searching loop as soon as you find the desired value.

PTS: 1 REF: 234 TOP: Critical Thinking

7. Consider a mail-order business in which customers get a discount based on the quantity they order. In
writing a program to compute the discount based on a customer’s order quantity, why is it not a good
idea to construct an array with as many elements as a customer might want to order, and store the
appropriate discount associated with each number?

ANS:
This approach has at least three drawbacks:
• It requires a very large array that uses a lot of memory.
• You must store the same value repeatedly. For example, each of the first nine elements receives the
same value, 0, and each of the next four elements receives the same value, 10.
• How do you know when you have enough array elements? Is a customer order quantity of 75 items
enough? What if a customer orders 100 or 1,000 items? No matter how many elements you place in
the array, there’s always a chance that a customer will order more.

PTS: 1 REF: 237 TOP: Critical Thinking

8. What is an advantage of using an array to match a value in a range of values?

ANS:
When using an array to store range limits, you use a loop to make a series of comparisons that would
otherwise require many separate decisions. The program that determines customer discount rates is
written using fewer instructions than would be required if you did not use an array, and modifications
to your method will be easier to make in the future.

PTS: 1 REF: 240 TOP: Critical Thinking

9. What happens when a beginning programmer forgets that array subscripts start with 0?

ANS:
A common error by beginning programmers is to forget that array subscripts start with 0. If you
assume that an array’s first subscript is 1, you will always be “off by one” in your array manipulation.
PTS: 1 REF: 241 TOP: Critical Thinking

10. What happens if a subscript value is negative or higher than the number of elements in an array?

ANS:
Some programming languages will stop execution of the program and issue an error message. Other
programming languages will not issue an error message but will access a value in a memory location
that is outside the area occupied by the array. That area might contain garbage, or worse, it
accidentally might contain the name of an incorrect month. Either way, a logical error occurs.

PTS: 1 REF: 242-243 TOP: Critical Thinking


Another random document with
no related content on Scribd:
Voi että likainen ja rietas kuva maailman sun silmäterääs
kerran niinkuin rutto syöpyy!

Näät ehkä kerran, niinkuin minä näin, pois kaiken kauniin


pakenevan itseltäs. Et löydä äitiäs ja veljesi on kuollut.

Näät ihmissydämien eläinnäyttelyn; näät elon spitaaliset


kasvot edessäs suin, kielin niljaisin ja kammottavin silmin. Ja
myöskin oma jalkas saastan ketunrautaan tarttuu ja, niinkuin
koira koiriin, liityt niihin, jotk' elämässä tahrattiin ja tahraavat.

— Mut ehkä myöskin silmäis erämaahan kerran kautt'


ihmeen: kirkkaan lapsensilmän kautta taas taittuu aurinko,
maan puhtain kauneus kuin näky elämästä, joka kierrossaan
yhäti palaa puhtaaseen ja puhtaimpaan, sisimpään alkutilaan,
jok' on kauneus.

Ja näet: kaikki harha, rumuus — myös sun rumuutes — ei


ollut pysyvämpi tuho kauniin elämän kuin unohtuva
kivenheitto mereen, jok' ihanaksi rauhassaan on täydentyvä.
*** END OF THE PROJECT GUTENBERG EBOOK PURJEHTIJAT
***

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.

You might also like