Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
100% found this document useful (1 vote)
11 views

Introduction to Programming with C++ 3rd Edition Liang Test Bank instant download

The document provides links to various test banks and solution manuals for programming and mathematics textbooks, including C++ programming and macroeconomics. It includes a section with multiple-choice questions related to C++ programming concepts and coding exercises. Additionally, it features a part for writing functions in C++ to find minimum values and count letters in strings.

Uploaded by

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

Introduction to Programming with C++ 3rd Edition Liang Test Bank instant download

The document provides links to various test banks and solution manuals for programming and mathematics textbooks, including C++ programming and macroeconomics. It includes a section with multiple-choice questions related to C++ programming concepts and coding exercises. Additionally, it features a part for writing functions in C++ to find minimum values and count letters in strings.

Uploaded by

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

Introduction to Programming with C++ 3rd Edition

Liang Test Bank download

https://testbankfan.com/product/introduction-to-programming-
with-c-3rd-edition-liang-test-bank/

Explore and download more test bank or solution manual


at testbankfan.com
We believe these products will be a great fit for you. Click
the link to download now, or visit testbankfan.com
to discover even more!

Introduction to C++ Programming and Data Structures 4th


Edition Liang Solutions Manual

https://testbankfan.com/product/introduction-to-c-programming-and-
data-structures-4th-edition-liang-solutions-manual/

Introduction to Programming with C++ 4th Edition Diane Zak


Test Bank

https://testbankfan.com/product/introduction-to-programming-
with-c-4th-edition-diane-zak-test-bank/

Introduction to Programming with C++ 4th Edition Diane Zak


Solutions Manual

https://testbankfan.com/product/introduction-to-programming-
with-c-4th-edition-diane-zak-solutions-manual/

Macroeconomics 3rd Edition Hubbard Solutions Manual

https://testbankfan.com/product/macroeconomics-3rd-edition-hubbard-
solutions-manual/
Calculus Concepts An Informal Approach to the Mathematics
of Change 5th Edition LaTorre Test Bank

https://testbankfan.com/product/calculus-concepts-an-informal-
approach-to-the-mathematics-of-change-5th-edition-latorre-test-bank/

Principles of Organizational Behavior Realities and


Challenges 6th Edition Quick Solutions Manual

https://testbankfan.com/product/principles-of-organizational-behavior-
realities-and-challenges-6th-edition-quick-solutions-manual/

Aircraft Structures for Engineering Students 5th Edition


Megson Solutions Manual

https://testbankfan.com/product/aircraft-structures-for-engineering-
students-5th-edition-megson-solutions-manual/

Applied Mathematics for the Managerial Life and Social


Sciences 7th Edition Tan Solutions Manual

https://testbankfan.com/product/applied-mathematics-for-the-
managerial-life-and-social-sciences-7th-edition-tan-solutions-manual/

Calculus Several Variables Canadian 9th Edition Adams


Solutions Manual

https://testbankfan.com/product/calculus-several-variables-
canadian-9th-edition-adams-solutions-manual/
Sales Force Management 10th Edition Johnston Test Bank

https://testbankfan.com/product/sales-force-management-10th-edition-
johnston-test-bank/
Name:_______________________ CSCI 2490 C++ Programming
Armstrong Atlantic State University
(50 minutes) Instructor: Dr. Y. Daniel Liang

(Open book test, you can only bring the textbook)

Part I: Multiple Choice Questions:

1
12 quizzes for Chapter 7
1 If you declare an array double list[] = {3.4, 2.0, 3.5, 5.5}, list[1] is ________.

A. 3.4
B. undefined
C. 2.0
D. 5.5
E. 3.4
2 Are the following two declarations the same

char city[8] = "Dallas";


char city[] = "Dallas";

A. no
B. yes
3 Given the following two arrays:

char s1[] = {'a', 'b', 'c'};


char s2[] = "abc";

Which of the following statements is correct?

A. s2 has four characters


B. s1 has three characters
C. s1 has four characters
D. s2 has three characters
4 When you pass an array to a function, the function receives __________.

A. the length of the array


B. a copy of the array
C. the reference of the array
D. a copy of the first element
5 Are the following two declarations the same

char city[] = {'D', 'a', 'l', 'l', 'a', 's'};


char city[] = "Dallas";

1
A. yes
B. no
6 Suppose char city[7] = "Dallas"; what is the output of the following statement?

cout << city;

A. Dallas0
B. nothing printed
C. D
D. Dallas
7 Which of the following is incorrect?

A. int a(2);
B. int a[];
C. int a = new int[2];
D. int a() = new int[2];
E. int a[2];
8 Analyze the following code:

#include <iostream>
using namespace std;

void reverse(int list[], const int size, int newList[])


{
for (int i = 0; i < size; i++)
newList[i] = list[size - 1 - i];
}

int main()
{
int list[] = {1, 2, 3, 4, 5};
int newList[5];

reverse(list, 5, newList);
for (int i = 0; i < 5; i++)
cout << newList[i] << " ";
}

A. The program displays 1 2 3 4 5 and then raises an ArrayIndexOutOfBoundsException.


B. The program displays 1 2 3 4 6.
C. The program displays 5 4 3 2 1.
D. The program displays 5 4 3 2 1 and then raises an ArrayIndexOutOfBoundsException.
9 (Tricky) What is the output of the following code:

#include <iostream>
using namespace std;

2
int main()
{
int x[] = {120, 200, 16};
for (int i = 0; i < 3; i++)
cout << x[i] << " ";
}

A. 200 120 16
B. 16 120 200
C. 120 200 16
D. 16 200 120
10 Which of the following statements is valid?

A. int i(30);
B. int i[4] = {3, 4, 3, 2};
C. int i[] = {3, 4, 3, 2};
D. double d[30];
E. int[] i = {3, 4, 3, 2};
11 Which of the following statements are true?

A. The array elements are initialized when an array is created.


B. The array size is fixed after it is created.
C. Every element in an array has the same type.
D. The array size used to declare an array must be a constant expression.
12 How many elements are in array double list[5]?

A. 5
B. 6
C. 0
D. 4

3 quizzes for Chapter 8


13 Which of the following function declaration is correct?

A. int f(int a[3][], int rowSize);


B. int f(int a[][], int rowSize, int columnSize);
C. int f(int a[][3], int rowSize);
D. int f(int[][] a, int rowSize, int columnSize);
14 What is the output of the following code?

#include <iostream>
using namespace std;

3
int main()
{
int matrix[4][4] =
{{1, 2, 3, 4},
{4, 5, 6, 7},
{8, 9, 10, 11},
{12, 13, 14, 15}};

int sum = 0;

for (int i = 0; i < 4; i++)


cout << matrix[i][1] << " ";

return 0;
}

A. 3 6 10 14
B. 1 3 8 12
C. 1 2 3 4
D. 4 5 6 7
E. 2 5 9 13
15
Which of the following statements are correct?

A. char charArray[2][2] = {{'a', 'b'}, {'c', 'd'}};


B. char charArray[][] = {{'a', 'b'}, {'c', 'd'}};
C. char charArray[][] = {'a', 'b'};
D. char charArray[2][] = {{'a', 'b'}, {'c', 'd'}};
Part II: Show the printout of the following code:

a. (2 pts)
#include <iostream>
using namespace std;

void swap(int n1, int n2)


{
int temp = n1;
n1 = n2;
n2 = temp;
}

int main()
{
int a[] = {1, 2};
swap(a[0], a[1]);
cout << "a[0] = " << a[0] << " a[1] = " << a[1] << endl;

return 0;
}

4
b. (2 pts)
#include <iostream>
using namespace std;

void swap(int a[])


{
int temp = a[0];
a[0] = a[1];
a[1] = temp;
}

int main()
{
int a[] = {1, 2};
swap(a);
cout << "a[0] = " << a[0] << " a[1] = " << a[1] << endl;

return 0;
}

c. (4 pts) Given the following program, show the values of the array
in the following figure:

#include <iostream>
using namespace std;

int main()
{
int values[5];
for (int i = 1; i < 5; i++)
{
values[i] = i;
}

values[0] = values[1] + values[4];

return 0;
}

5
After the last statement
After the array is After the first iteration After the loop is in the main method is
created in the loop is done completed executed

0 0 0 0

1 1 1 1

2 2 2 2

3 3 3 3

4 4 4 4

Part III:

Part III:

1. Write a function that finds the smallest element in an


array of integers using the following header:
double min(double array[], int size)

Write a test program that prompts the user to enter ten


numbers, invokes this function, and displays the minimum
value. Here is the sample run of the program:

<Output>

Enter ten numbers: 1.9 2.5 3.7 2 1.5 6 3 4 5 2

The minimum number is: 1.5

<End Output>

2. Write a function that counts the number of letters in


the string using the following header:
int countLetters(const char s[])

6
Write a test program that reads a C-string and displays the number of
letters in the string. Here is a sample run of the program:

<Output>

Enter a string: 2010 is coming

The number of letters in 2010 is coming is 8


<End Output>

7
Other documents randomly have
different content
occupied with twenty-one such signs, and his fourth chapter with a
hundred more signs and circumstances, in numbered paragraphs. It
is possible that his was the manuscript out of which the botanist
made capital in his title-page; but his meagre list of signs might
have been got from almost any work on almost any febrile disorder,
and is not sufficient to identify Boghurst by, although a word or
phrase here and there is the same. However, Defoe would have seen
Bradley’s title-page, and might have inquired after the Sloane MS.
[1202] Of the six plague-deaths in 1664, three were in Whitechapel
parish, and one each in Aldgate, Cripplegate and St Giles’s-in-the-
Fields.
[1203] Reliquiae Baxterianae. London, 1696, i. 448. This entry in his
journal is dated September 28, 1665, at Hampden, Bucks.
[1204] Ed. cit. Chap. xiv. p. 131:—“Diseases which seem to be
nearest like its (plague’s) nature; which chiefly are fevers, called
pestilent and malignant; for ’tis commonly noted that fevers
sometimes reign popularly, which for the vehemency of symptoms,
the great slaughter of the sick, and the great force of contagion,
scarce give place to the pestilence; which, however, because they
imitate the type of putrid fevers, and do not so certainly kill the sick
as the plague, or so certainly infect others, they deserve the name,
not of the plague, but by a more minute appellation of a pestilential
fever.”
[1205] In a letter from London, 9 May, 1637 (Gawdy MSS. at
Norwich, Hist. MSS. Commis. x. pt. 2. p. 163) it is said: “There is a
strange opinion here amongst the poorer sort of people, who hold it
a matter of conscience to visit their neighbours in any sickness, yea
though they know it to be the infection.”
[1206] Evans, in preface to 1721 edition of Vincent’s book.
[1207] Cal. State Papers.
[1208] Ibid.
[1209] Evans, l. c.
[1210] Reliquiae Baxterianae. London, 1696, ii. 1. 2.
[1211] Milton, with his wife and daughters, spent the summer and
autumn in the same quiet neighbourhood, at Chalfont St Giles, in a
cottage which Ellwood had secured for him, still remaining with its
low ceilings and diamond window-panes. He there showed Ellwood
the manuscript of Paradise Lost, which was published in 1667. The
poem contains no reference to the plague, unless, indeed, the flight
to the country had given point to the lines in the 9th book:
“As one who long in populous city pent,
Where houses thick and sewers annoy the air,
Forth issuing on a summer’s morn, to breathe
Among the pleasant villages and farms,”—
An opportunity arises in the 12th book, where the Plagues of Egypt
come into the prophetic vision of events after the Fall; but the
movement is too rapid to allow of delay, and we have no more than

“Botches and blains must all his flesh emboss,
And all his people.”
Gibbon thought that the comet of 1664 (which was generally
remarked upon as a portent of the plague that followed) might have
suggested the lines, ii. 708-11
“and like a comet burn’d,
That fires the length of Ophiuchus huge
In the arctic sky, and from his horrid hair
Shakes pestilence and war.”
Gibbon seems to make a slip in taking these as “the famous lines
which startled the licenser;” those are usually taken to have been i.
598-9, the figure of the sun’s eclipse, which
“with fear of change
Perplexes monarchs.”
[1212] Brit. Mus. Addit. MS. 4376 (8). “Abstract of several orders
relating to the Plague,” from 35 Hen. VIII. to 1665.
[1213] In excavating the foundations of the Broad Street terminus of
the North London Railway, the workmen came upon a stratum four
feet below the surface and descending eight or ten feet lower, which
was full of uncoffined skeletons. Some hundreds of them were
collected and re-interred. (Notes and Queries, 3rd Ser. iv. 85.) The
ground was part of the old enclosure of Bethlem Hospital (St Mary’s
Spital outside Bishopsgate), and was acquired for a cemetery, to the
extent of an acre, by Sir Thomas Roe, in 1569. Probably there were
plague-pits dug in it during more than one of the great epidemics,
from 1593 to 1665.
[1214] Cal. State Papers, Domestic, 1665, p. 579.
[1215] Reliquiae Hearnianae. Ed. Bliss, 1869, ii. 117 (under the date
of Jan. 21, 1721).
[1216] The City Remembrancer. London, 1769 (professing to be
Gideon Harvey’s notes).
[1217] Procopius (De Bello Persico, ii. cap. 23, Latin Translation)
says the same of the great Justinian plague in a.d. 543 at Byzantium:
“ut vere quis possit dicere, pestem illam, seu casu aliquo seu
providentia, quasi delectu diligenter habito, sceleratissimos quosque
reliquisse. Sed haec postea clarius patuerunt.” On this Gibbon
remarks: “Philosophy must disdain the observation of Procopius, that
the lives of such men were guarded by the peculiar favour of fortune
or Providence;” and most men will agree with Gibbon. But, if we
could be sure of the fact of immunity (and Boghurst’s testimony is a
little weakened by his deference to Diemerbroek, who knew the
classical traditions of plague), it might be possible to explain it on
merely pathological grounds.
[1218] John Tillison to Dr Sancroft, September 14, 1665. Harl. MSS.
cited by Heberden, Increase and Decrease of Diseases. London,
1801. Woodall, writing in 1639, and basing on his experience of
London plague in 1603, 1625, and 1636, is in like manner emphatic
that the symptoms varied much in individuals and in seasons.
[1219] Cal. State Papers. Hist. MSS. Com. ix. 321.
[1220] Cal. State Papers. Cal. Le Fleming MSS. p. 37 (also for
Cockermouth).
[1221] Ibid.
[1222] Mead seems to have known that there were plague-cases at
Battle in 1665.
[1223] Cal. S. P.
[1224] Hist. MSS. Com. ii. 115.
[1225] The History and Antiquities of Eyam, with a full and particular
account of the Great Plague which desolated that village a.d. 1666.
By William Wood, London, 1842. This small volume, which owes its
interest solely to the plague-incident, has gone through at least five
editions. Among those who have written, in prose or verse, upon the
same theme, Wood mentions Dr Mead, Miss Seward, Allan
Cunningham, E. Rhodes, S. T. Hall, William and Mary Howitt, S.
Roberts, and J. Holland. The story is also in the Book of Golden
Deeds.
[1226] Bacon (Sylva Sylvarum, Cent. x. § 912. Spedding ii. 643)
says: “The plague is many times taken without a manifest sense, as
hath been said. And they report that, where it is found, it hath a
scent of the smell of a mellow apple; and (as some say) of May-
flowers; and it is also received that smells of flowers that are mellow
and luscious are ill for the plague: as white lilies, cowslips and
hyacinths.”
[1227] Sir Thomas Elyot, in The Castle of Health (1541), says that
“infected stuff lying in a coffer fast shut for two years, then opened,
has infected those that stood nigh it, who soon after died.” (Cited by
Brasbridge, Poor Man’s Jewel, 1578, Chapter viii.)
[1228] Milner’s Hist. of Winchester.
[1229] The City Remembrancer, Lond. 1769, vol. i.—an account of
the plague, fire, storm of 1703, etc., said to have been “collected
from curious and authentic papers originally compiled by the late
learned Dr [Gideon] Harvey.” But the section on the plague is almost
purely Defoe and Vincent, with a few things from Mead.
[1230] These figures, with the two oaths, had been copied by the
antiquary Morant for his History of Essex, and are preserved in No.
87. ff. 55 and 56, of the Stowe MSS. in the British Museum, where
Mr J. A. Herbert, of the Manuscript Department, pointed them out to
me. In his printed History Morant has summarized the plague-deaths
in monthly periods.
The Bearers’ Oath, fol. 57:—
“Ye shall swear, that ye shall bear to the ground and bury the bodys
of all such persons as, during these infectious times, shall dye of the
pestilence within this Towne or the Liberties thereof, or so many of
them as ye shall have notice of, and may be permitted to bury,
carrying them to burials always in the night time, unless it be
otherwise ordered by the Mayor of this Towne; And ye shall be
always in readiness for that purpose at your abode, where you shall
be appointed, keeping apart from your families together with the
searchers, and not to be absent from thence more than your office
of Bearers requires. Ye shall always in your walk, as much as may
be, avoid the society of people, keeping as far distant from them as
may bee, and carrying openly in your hands a white wand, by which
people may know you, and shun and avoid you. And shall do all
other things belonging to the office of Bearers, and therein shall
demean yourselves honestly and faithfully, discharging a good
conscience; So etc.
August 1665. James Barton and
John Cooke:—sworn, who are to have for their pains 10
sh. a week a piece; and 2d for every one to be buried, taking the 2d
out of the estate of the deceased. If there be not wherewithal, the
parish to bear it.
Oath 6. p. 44.
The Oath for the Searchers of the Plague, 1665.
“Yee and either of You shall sweare, that ye shall diligently view and
search the corps of all such persons, as during these infectious
times, shall dye within this Towne or the Liberties thereof, or so
many of them as you shall or may have access unto, or have notice
of; And shall according to the best of your skill, determine of what
disease every such dead corps came to its death. And shall
immediately give your judgment thereof to the Constables of the
parish where such corps shall be found, and to the Bearers
appointed for the burial of such infected corps. You shall not make
report of the cause of any one’s death better or worse than the
nature of the disease shall deserve. Yee shall live together where
you shall be appointed, and not walk abroad more than necessity
requires, and that only in the execution of your office of Searchers.
Ye shall decline and absent yourselves from your families, and
always avoid the society of people. And in your walk shall keep as
far distant from men as may be, always carrying in your hands a
white wand, by which the people may know you, and shun and
avoid you. And ye shall well and truly do all other things belonging
to the office of Searchers, according to the best of your skill,
wisdom, knowledge, and power, in all things dealing faithfully,
honestly, unfeignedly and impartially. So help” etc.
[1231] Morant, Hist. of Essex, I. 74.
[1232] Deering, Nottingham, vetus et nova, 1751, pp. 82-83. Copied
in Thoresby’s edition of Thoroton’s History of Nottingham, II. 60.
*** END OF THE PROJECT GUTENBERG EBOOK A HISTORY OF
EPIDEMICS IN BRITAIN, VOLUME 1 (OF 2) ***

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