100% found this document useful (4 votes)
30 views

Computer Science An Overview 12th Edition Brookshear Solutions Manual instant download

The document provides links to download solution manuals and test banks for various editions of textbooks, including 'Computer Science: An Overview' by Brookshear. It also includes a chapter summary on programming languages, discussing their history, classification, and paradigms, as well as common structures and language translation. Additionally, it contains review problems and answers related to programming concepts and paradigms.

Uploaded by

tharwatarax
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 (4 votes)
30 views

Computer Science An Overview 12th Edition Brookshear Solutions Manual instant download

The document provides links to download solution manuals and test banks for various editions of textbooks, including 'Computer Science: An Overview' by Brookshear. It also includes a chapter summary on programming languages, discussing their history, classification, and paradigms, as well as common structures and language translation. Additionally, it contains review problems and answers related to programming concepts and paradigms.

Uploaded by

tharwatarax
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/ 31

Computer Science An Overview 12th Edition

Brookshear Solutions Manual download

https://testbankfan.com/product/computer-science-an-
overview-12th-edition-brookshear-solutions-manual/

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


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

Computer Science An Overview 12th Edition Brookshear Test


Bank

https://testbankfan.com/product/computer-science-an-overview-12th-
edition-brookshear-test-bank/

Computer Science An Overview 11th Edition Brookshear Test


Bank

https://testbankfan.com/product/computer-science-an-overview-11th-
edition-brookshear-test-bank/

Family Therapy An Overview 9th Edition Goldenberg Test


Bank

https://testbankfan.com/product/family-therapy-an-overview-9th-
edition-goldenberg-test-bank/

Strategic Management A Competitive Advantage Approach


Concepts 16th Edition David Test Bank

https://testbankfan.com/product/strategic-management-a-competitive-
advantage-approach-concepts-16th-edition-david-test-bank/
Psychiatric Mental Health Nursing Concepts of Care in
Evidence Based Practice 8th Edition Townsend Test Bank

https://testbankfan.com/product/psychiatric-mental-health-nursing-
concepts-of-care-in-evidence-based-practice-8th-edition-townsend-test-
bank/

Pathophysiology 4th Edition Ellen Test Bank

https://testbankfan.com/product/pathophysiology-4th-edition-ellen-
test-bank/

Elementary Statistics 6th Edition Larson Test Bank

https://testbankfan.com/product/elementary-statistics-6th-edition-
larson-test-bank/

Economics Principles for a Changing World 4th Edition


Chiang Test Bank

https://testbankfan.com/product/economics-principles-for-a-changing-
world-4th-edition-chiang-test-bank/

Federal Tax Research 10th Edition Sawyers Solutions Manual

https://testbankfan.com/product/federal-tax-research-10th-edition-
sawyers-solutions-manual/
Operations Management for MBAs 5th Edition Meredith
Solutions Manual

https://testbankfan.com/product/operations-management-for-mbas-5th-
edition-meredith-solutions-manual/
Chapter Six
PROGRAMMING LANGUAGES
Chapter Summary

This chapter begins with a short history of programming languages. It presents the classification of
languages by generations and also points out that such a linear classification scheme fails to capture
the true diversity of languages today. To support this claim, the chapter introduces the declarative,
functional, and object-oriented paradigms as alternatives to the more traditional imperative
approach. There are separate sections later in the chapter on both the object-oriented and declarative
paradigms.
The chapter also presents some common structures found in third-generation imperative and
object-oriented languages, drawing examples from Ada, C, C++, C#, FORTRAN, and Java. Topics
covered include declaration statements, control statements, functions, and parameter passing. An
additional section extends this study to include topics associated with object-oriented languages.
To bridge the gap between high-level languages and machine language, this chapter discusses
the rudiments of language translation, including the basic steps of lexical analysis, parsing, and
code generation.
Optional sections introduce parallel programming, and explore declarative programming via
logic programming and the language Prolog.

Comments

1. This chapter is intended to serve one of two roles, depending on the programming background of
the audience. For those with previous programming experience, the chapter can be approached as
an introduction to the subject of language design and implementation. For those with no
programming experience, the chapter can serve as a generic introduction to programming
languages or a context in which a particular language can be emphasized.
2. I encourage you not to get bogged down in the details of this chapter. Discourage your students
from approaching the material in the context of memorizing facts about specific languages. Their
goal should be to answer questions such as "Identify some different programming paradigms,"
"Describe three generic control structures and indicate how they might be expressed in a high-level
programming language," and "Describe the difference between data type and data structure."
3. Although the section on declarative programming is optional, I encourage you to give it some
time in your class. It is important that beginning students be exposed to alternatives.
4. An area in programming language research is the identification of useful control structures and
the development of syntactic structures to represent them. Along these lines I like to use the
example of trying to find a particular value in an array using the equivalent of a "for" statement. The
problem is to exit the loop structure as soon as the target value is found without traversing more of
the array. This leads to the role of such statements as the "break" in C and its derivatives or "EXIT"
in FORTRAN.

Answers to Chapter Review Problems


1. The statements in the language are not made in terms of a particular machine’s characteristics.

33
2. Suppose the value of x is stored in the memory cell whose address is XY and the program begins
at address 00.
2100
31XY
2003
B110
2201
5112
31XY
B006
3. We'll represent the addresses of LENGTH, WIDTH, and HALFWAY by XX, YY, and ZZ,
respectively.
10XX
11YY
6001
30ZZ
4. Suppose the values W, X, Y, and Z are stored at locations WW, XX, YY, and ZZ, respectively.
Moreover, we use VV as an address.
2000
11XX
12YY
B1VV
11WW
VV: 5012
30ZZ
5. The answer to both questions is that this information is needed before the machine code for
manipulating the data can be generated. (To add two binary values uses a different op-code than
adding two floating-point values.)
6. Imperative paradigm: Programs consist of a sequence of commands.
Object-oriented paradigm: Programs are organized as active elements called objects.
Functional paradigm: Programs consist of nested functions.
Declarative paradigm: Programs consist of declarative statements that describe properties.
7. The smallest of the four values w, x, y, and z.
8. The string dcababcd.
9. The major item of data would be the account balance. The object should be able to respond to
deposit and withdrawal messages. Other objects in the program might be saving account objects,
mortgage objects, and credit card account objects.
10. An assembly language is essentially a mnemonic form of a machine language.
11. A simple approach would be to assign mnemonics to the opcodes, using R1, R2, and so on to
represent the registers, and separating the fields in each instruction with commas. This would
produce instructions such as ST R5, F2; MV R4, R5; and ROT R5, 3.
12. This approach is not self-documenting in the sense that it does not indicate that the value of
AirportAlt will not change in the program. Moreover, it allows the value to be changed by an
erroneous statement.
13. The declarative part of the program contains the programmer-defined terminology; the
procedural part contains the steps in the algorithm to be executed.
14. A literal is a specific value appearing as itself; a constant is a name for a fixed value; a variable is
a name whose associated value can change as the program executes.

34
15. a. Operator precedence is a priority system given to operations that determines the order in
which operations will be performed unless otherwise specified.
b. Depending on operator precedence the expression could be equal to either 24 or 12.
16. Structured programming refers to an organized method of developing and expressing a
program with the goal being to obtain a well-organized program that is easy to read, understand,
and modify.
17. In the first case the symbol represents a comparison; in the second case it represents data
movement.
18.

19. x = 2
while (x < 8):
. . .
x = x + 2
20. Music is normally written in an imperative language containing loops and "go to" control
structures.
21.

22. case(W)
5: Z = 7
6: Y = 7
7: X = 7

35
23. if (X > 5):
X = X + 2
else:
X = X + 1
24. a. if and switch structures
b. while, repeat, and for structures as well as recursion
c. the assignment statement
25. A translator merely converts a program form one language to another. An interpreter executes
the source program without producing a translated copy.
26. If the required coercion was allowed the value 2.5 would probably be truncated to 2.
27. All operations (including assignments) must be performed without coercion.
28. It would require time to copy the data as well as memory space to hold the copy.
29. When passing by value, the sequence 7, 5 would be printed. When passing by reference the
sequence 7, 7 would be printed.
30. When passing by value the sequence 5, 9, 5 would be printed. When passing by reference, the
sequence 9, 9, 9 would be printed.
31. 5, 9, 9
32. a. Passing parameters by value protects the calling environment from being altered by the
function being called.
b. Passing parameters by reference is more efficient than passing them by value.
33. Depending on the order of execution, X could be assigned either 25 or 13.
34. It is not clear which of the statements in the first program should be modified, but merely
changing the value of the constant NumberOfEmp in the alternate version would update the
program without difficulty.
35. a. A formal language is defined by its grammar, whereas the grammar of a natural language is
merely an attempt to explain the structure of a natural language.
b. Programming languages such as C, C++, Java, and C# are formal languages. Examples of
natural languages include English, Spanish, Italian, etc.
36.

37. As indicated in the text a solution could start like this:

38. The first diagram might be something like this:

39. Answers will vary. The top level diagram might indicate that the date can be expressed in
different ways. Then, other diagrams would reveal the details of each approach.

36
40. A string would have the structure of "yes no," or the word yes followed by a "sentence" followed
by the word no.
41. This one is a bit tough for beginning students. The point is for them to experience the reality that
the tools applied when solving a problem can actually restrict one's ability to find the solution. In
this case the problem is to describe the grammatical structure of a simple language. However, the
tool is the concept of a syntax diagram that only allows the description of context-free languages,
whereas the set to be described does not form a context-free language. Encourage your students to
think about this. An extension to the problem would be to ask your students what features could be
added to syntax diagrams that would allow such languages to be described.
42. Any string of the form xnyxn , where n is a nonnegative integer.
43.

44.

45. When performing either assignment statement, the value of X will already be in a register as a
result of the comparison performed earlier. Thus, it need not be retrieved from memory.
46. Y = 5
Z=9
47. X = 5
48. Both types and classes are templates used to describe the underlying composition of "variables."
Types, however, are predefined whereas classes are defined by the programmer within the "written
program." (We put written program in quotes because the class definition could be imported from a
pre-written package as in Java's API.) More about types versus classes is discussed in Section 7.7.
49. There are numerous answers. The idea is for students to isolate basic properties of buildings
within a single class and then use inheritance to describe more specialized classes such as houses,
hotels, grocery stores, barns, etc. Some students may find that multiple levels of inheritance are
helpful.
50. The public parts of a class are those parts that are accessible from the outside; the private parts
are those that are not accessible from the outside.
51. Answers will vary.
52. There may be numerous objects representing people. Some would be quests whereas others
would be hotel employees (a good place for inheritance). Other objects might include a
receptionist's desk, a seating area, and perhaps an elevator.

37
53. A programming language monitor is a construct that provides controlled access (usually mutual
exclusion) to a data item.
54. Concurrent processing can involve multiple threads of execution sharing and coordinating
resources. Programming languages with concurrency support provide easier ways for developers to
create and coordinate threads, share data between threads, provide mutual exclusion where
required, and prevent common concurrent programming errors.
55. One solution would be
56. No. The following resolution pattern produces the empty clause.
57. Assuming that the sibling relationship is amended so that a person cannot be his or her on
sibling as proposed in the answer to Question/Exercise 3, the additional relationships could be
defined as:
uncle(X, Y) :- male(X), sibling(X, Z), parent(Z, Y).
aunt(X, Y) :- female(X), sibling(X, Z), parent(Z, Y).
grandparent(X, Z) :- parent(X, Y), parent(Y, Z).
cousin(X, Y) :- sibling(W, Z), parent(W, X), parent(Z, Y).
parents(X, Y, Z) :- X \= Y, parent(X, Z), parent(Y, Z).
58. The last two statements translate to “David likes people who like sports” and “Alice likes things
that David likes.” Prolog will conclude that Alice likes sports, music, and herself. (Alice likes things
that David likes, David likes people who like sports, and Alice likes sports. Therefore, Alice likes Alice.)
59. Due to truncation errors, X may never be exactly equal to 1.00 so the loop may never terminate.

38
Random documents with unrelated
content Scribd suggests to you:
people murmuring or misimploying their time. Formerly two jesuits
were in each parish; but since their great increase there is only one,
till they get more from Europe.

The Indians are not sufferd to drink wine, or any spirituous liquor.
Herein the good priests copy the law of Mahomet, who likewise
forbid his disciples the use of wine; lest being spirited up, they
should rebel, shake off their yoke, and overturn the empire he had
founded.

The jesuits marry their men and women young, to fulfil perhaps the
first commandment given to Adam, Increase and multiply, or for
other wise ends. The first precepts the children learn, are to fear
God and the jesuit; to be humble and patient, and not in love with
this world.

As the civil government is well orderd, so is the military. Every parish


according to its power, is obliged to maintain some regiments of
horse and foot. Each regiment hath six companies of fifty men with
proper officers, and an adjutant who exercises them every sunday
evening. Those officers are traind up from father to son; so that the
military discipline becomes natural, and their forces march in great
order. For this reason the parishes have all an easy communication,
that their army may soon be formd under their proper commanders,
of whom one of the jesuits is generalissimo. Their small arms are
swords, muskets and slings; which last being natural to them, they
can throw heavy stones; and hit a mark at a great distance.

The whole Mission can draw together 60,000 men in a week’s time.
Their pretense for keeping up so great a number is, because the
Portuguese Paulists sometimes make excursions and take away their
people: but the Spaniards laugh at this, well knowing that the jesuits
keep these standing forces to prevent any foreign power giving
disturbance to their colony.
Their omitting to teach the Indians the Spanish tongue, and
forbiding them to converse at all with that nation when they are
sometimes sent to work in the towns for the king of Spain’s service,
is plain they mean to keep their government to themselves. For
when any stranger, as these two Frenchmen, are driven there by
accident, they are shut up while they stay. And when the Spaniards
themselves passing up the river Paraguay have occasion to touch
upon their settlement, they dare not go beyond their church walls:
and when they beg leave to see the town, the jesuit is sure to walk
with them, and all the Indians are taught to keep in, and shut their
doors. They have other precautions, one of which is, to send out
good detachments of troops to clear their frontiers from St. Gabriel’s
isles to the Maldonad hills, and hinder all communication with their
country, for the sake of their gold and silver mines; of which we shall
give two instances. The Falmouth of St. Malo being lost in 1706 near
the Flores islands, some of these troops plunderd part of her cargo;
which they afterwards restored by the interposition of the governer
of Buenos Ayres. Two years after this, the Atlas was cast away at the
Castiles, and the crew having saved some of their best effects, were
marching over the country to the Maldonades, thinking to get home
again by sea; but were met by the Indians, who took all from them.
However, they had luckily buryd their silver upon the coast, to the
value of several thousand dollars, which they afterwards took along
with them.

At the foot of the Maldonad mountains are good mines, which were
discoverd by Pacheco, who lived at Buenos Ayres and was formerly
miner of Potosi in Peru: they are about seventy mile from the port,
and forty from Montevide. The governer of Buenos Ayres being
acquainted with it, sent workmen with Pacheco, who dug up the
place and returnd with a good quantity of gold ore. But Valdes
Inelau the governer being bribed by the father of the Mission, gave
out that he had made trial of the ore, and it would not answer the
charge and trouble. However Pacheco kept what he had got, and
saw it was only a trick of the jesuits, to prevent any new settlement
near their dominions.
Some of the said ore was lately tryd in France, but yielded little,
being taken from neat the surface. But Pacheco, who is known to be
as good a miner as any, says, there is no richer earth in America
than that place affords: and doubts not the rivers thereaway are
fertile of gold dust, as those near the Paulists. The young Indians in
the parish of St. Dominic, have several times brought gold to Buenos
Ayres, which they got privately from the Mission; from whence we
may infer there is a good deal of it.

In the year 1706, the aforesaid D’Escaseau, being in Maldonad port,


met with some of these Indians, who came in a small detachment to
drive some cattle up to the Mission. He talkd with them, and made
them a present. In return, they told him if he would go up the
country to a place they pointed at, he might get silver enough. The
priests have all along been jealous, lest the Spaniards should find
any of these mines, because a settlement of that kind might be of
dangerous consequence: and they have taken care to clear the
country on that side of all cattle and provision whatsoever.

From the foregoing particulars, ’tis evident that the jesuits affect
sovereignty and arbitrary rule; and the three chief objects of their
desire are power, splendor and riches. Their method of educating
and governing their people, from whose industry arises all they
enjoy, allowing them the bare necessaries of life; their care to
prevent any communication with the Spaniards; their caution when
any stranger comes to their Mission by accident; their standing
forces, and scowring their borders to prevent any new settlement
near their limits; are all manifest arguments that they design to
continue independent: and not only conceal what revenues they
have, but many other advantages they are not yet quite possest of.

Some casuists will say, that all these nations round Paraguay belong
to his Spanish majesty as king of the Indies; Paraguay it self being
possest by the Spaniards in 1540, and governd by the viceroy of
Peru. According to these gentlemen, the true divine right is the right
of conquest: so that all these Indians are his natural born subjects,
and should obey him alone. They ought freely to parcel out their
land, and dispose of their own crop, and otherwise injoy the fruit of
their labor, whether in the mines or manufactures: this would make
it a regular colony, and cause a general circulation of trade and
money. Doubtless the poor Indians would be glad of all this: but the
wise fathers argue a different way, That since they have got them
under subjection, and brought them into great rule and order, they
have at present a fair title to their allegiance: especially since all this
is done without cruelty or force of arms. ’Tis true, the Indians can
call nothing their property, but give up all as the inheritance of two
and forty ecclesiastical kings ruling two million of good natured loyal
subjects.

We shall give one instance of the great authority of these fathers,


and the duty of their people. When the governer of Buenos Ayres
was orderd to besiege St. Gabriel belonging to the Portuguese, a
body of 4000 jesuit Indians came to assist him. After lying a short
time before the town, the said governer orderd the attack at four in
the morning. The Indians not receiving their orders from their own
commander, refused to obey; and threatend to revolt: whereupon
the right reverend general was acquainted with it, who not being yet
come from his tent, made haste to the army, and put himself at the
head of his forces: when the Indians immediately formd themselves,
and executed his commands.

The jesuits ought to pay the king a yearly subsidy of so much a head
for every Indian through their settlement, according to the capitation
tax. But this, if paid, is sufficiently returnd by the wages the Indians
receive, when they work for the king, who at the year’s end is often
made debtor to the Mission. For, in the first place, the jesuits dont
give in the number of half their families to be taxt. Then the
governer of Buenos Ayres, who ought once in five years to visit all
their Mission, and take an exact list, is stopt in his journey, and
gratifyd for his trouble: so that he finds it better to take their own
list. And lastly, when 500 Indians are imployd in the king’s service,
the good fathers charge him 1000.
Thus is his Catholic majesty served, not only in the south Indies, but
in all other parts of America; where his revenues are half sunk in
feignd imployments and imaginary applications. As for the
settlement of the jesuits, I shall only make this observation upon it,
That all people are more naturally led than driven; and the same
policy that founded this government will probably maintain it, if the
fathers keep a succession out of their own society. If ever they make
a present of this colony to a foreign power, it must be that of
France: for the Spaniards and Portuguese are hated by all the
Americans for their tyranny and pride: and no other Romish power
except France, would be able to defend and support its title.
MEMORANDUM.

T HE circumstance of captain Shelvocke’s losing the Speedwel at


Fernandes, and his building a bark out of the wreck, has been
received by some people as a most ingenious wonderful
performance: and has been the chief motive of such as never heard
the like before, to buy the book for the sake of that story. Therefore
I thought it proper here to mention, two particular facts of the same
kind, tho’ far superior to that of Shelvocke.

The one is of John Oxenham of Plymouth, in queen Elizabeth’s reign.


When Sir Francis Drake had made himself greatly famous for his
exploits against the Spaniards in America, the affair at that time
being new, all people were speaking of Drake’s glory and
acquisitions. Mr. Oxenham being a sprightly man, and emulous of
doing something very extraordinary, set on foot a subscription at
Plymouth to fit out a ship with seventy men to land at the istmus of
Darien; hide the ship and leave her there till he returnd; build
another vessel and cross the land by a river thereabouts, and so get
at once into the South Sea and surprize the enemy: for he knew that
to go by cape Horne was very hazardous, tedious and chargeable,
especially in those days. This, tho’ it might seem a strange project
and like a wild chimera, yet ’tis certain he performd it: he left the
ship a ground at Darien; coverd her with trees; went inland to a
river which leads into the south ocean; built a bark there 45 foot by
the keel, and saild into the South Sea, where he made several rich
prizes. However he afterwards lost them all with his life by the
artifices of a lady whom he took prisoner. If the reader is curious, he
may find it at length in Hacluit. Sir Richard Hawkins also has it in his
South Sea journal.

The other is an example in the reign of king Charles I. After several


experiments were made to find a northwest passage to the East-
indies, captain James a very skilful navigator was sent also upon the
same errand: and discoverd more land which he called new South
Wales. He wanderd up and down those seas in vain; and then
winterd at a place called by him Charleton island, in 52 degrees. His
ship having all this time received great damage, he there built a
pinnace out of the said ship; and he with his people returnd in it to
England. See the journal printed by the king’s command 1633.

If these facts are examined together, besides many that I could


mention done by the buccaniers, pyrates and others, captain
Shelvocke will appear to have done nothing at all to boast of: neither
can his performance hardly bear a comparison.

FINIS.

Transcriber’s Note:
Page iv, Errata incorporated into book.

Obvious printer errors corrected silently.

Inconsistent spelling and hyphenation are as in the original.


*** END OF THE PROJECT GUTENBERG EBOOK A VOYAGE ROUND
THE WORLD ***

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