100% found this document useful (2 votes)
43 views42 pages

Prelude to Programming 6th Edition Venit Test Bank - Free Download Available To Read All Chapters

The document provides links to download various test banks and solution manuals, including the 'Prelude to Programming 6th Edition Venit Test Bank.' It includes sample questions and answers from the test bank, covering topics related to programming and pseudocode. Additionally, it features true/false and short answer questions related to programming concepts.

Uploaded by

ragonavilaa70
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 (2 votes)
43 views42 pages

Prelude to Programming 6th Edition Venit Test Bank - Free Download Available To Read All Chapters

The document provides links to download various test banks and solution manuals, including the 'Prelude to Programming 6th Edition Venit Test Bank.' It includes sample questions and answers from the test bank, covering topics related to programming and pseudocode. Additionally, it features true/false and short answer questions related to programming concepts.

Uploaded by

ragonavilaa70
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/ 42

Visit https://testbankdeal.

com to download the full version and


browse more test banks or solution manuals

Prelude to Programming 6th Edition Venit Test Bank

_____ Press the link below to begin your download _____

https://testbankdeal.com/product/prelude-to-programming-6th-
edition-venit-test-bank/

Access testbankdeal.com now to download high-quality


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

Prelude to Programming 6th Edition Venit Solutions Manual

https://testbankdeal.com/product/prelude-to-programming-6th-edition-
venit-solutions-manual/

C++ Programming From Problem Analysis to Program Design


6th Edition Malik Test Bank

https://testbankdeal.com/product/c-programming-from-problem-analysis-
to-program-design-6th-edition-malik-test-bank/

C++ Programming From Problem Analysis to Program Design


6th Edition Malik Solutions Manual

https://testbankdeal.com/product/c-programming-from-problem-analysis-
to-program-design-6th-edition-malik-solutions-manual/

Strategic Analysis and Action 8th Edition Crossan Test


Bank

https://testbankdeal.com/product/strategic-analysis-and-action-8th-
edition-crossan-test-bank/
International Economics A Policy Approach 10th Edition
Kreinin Solutions Manual

https://testbankdeal.com/product/international-economics-a-policy-
approach-10th-edition-kreinin-solutions-manual/

Phlebotomy Textbook 3rd Edition Strasinger Test Bank

https://testbankdeal.com/product/phlebotomy-textbook-3rd-edition-
strasinger-test-bank/

Principles of Taxation for Business and Investment


Planning 21st Edition Jones Test Bank

https://testbankdeal.com/product/principles-of-taxation-for-business-
and-investment-planning-21st-edition-jones-test-bank/

Fundamentals of Nursing 8th Edition Potter Test Bank

https://testbankdeal.com/product/fundamentals-of-nursing-8th-edition-
potter-test-bank/

Essentials of Systems Analysis and Design 5th Edition


Valacich Solutions Manual

https://testbankdeal.com/product/essentials-of-systems-analysis-and-
design-5th-edition-valacich-solutions-manual/
Management Information Systems 10th Edition McLeod Test
Bank

https://testbankdeal.com/product/management-information-systems-10th-
edition-mcleod-test-bank/
Prelude to Programming 6th edition Elizabeth Drake

Test Bank for Prelude to Programming Chapter 6

MULTIPLE CHOICE

1. If Number = 4, what possible numbers can result from:


Floor(Random()() * 10) + Number

a. 1, 2, 3, 4
b. 0, 1, 2, 3, 4
c. 0, 1, 2, 3
d. 4, 5, 6, 7, 8, 9, 10, 11, 12, 13

ANS: D

2. If Number = 4, what possible numbers can result from


Floor(Random() * Number)

a. 1, 2, 3, 4
b. 0, 1, 2, 3, 4
c. 0, 1, 2, 3
d. 4, 5, 6, 7, 8, 9, 10, 11, 12, 13
ANS: C

3. What is the output of the code corresponding to the following pseudocode?


Declare X As Integer
Declare Y As Integer
For (X = 1; X <=2; X++)
For (Y = 3; Y <= 4; Y++)
Write X * Y
End For(Y)
End For(X)

a. 3 b. 4 c. 1 d. 3 4
4 5 3 6 8
6 5 2
8 6 4

ANS: A

© 2015 Pearson Education 1


Prelude to Programming 6th edition Elizabeth Drake

4. What is the output of the code corresponding to the following pseudocode?


Declare Y As Integer
Declare X As Integer
For (Y = 1; Y <=2; Y++)
For (X = 3; X <= 4; X++)
Write Y * X
End For(X)
End For(Y)

a. 3 b. 4 c. 1 d. 3 4
4 5 3 6 8
6 5 2
8 6 4

ANS: A

5. What is the output of code corresponding to the following pseudocode?


Declare A As Integer
Declare B As Float
Set A = 2
While <= 3
Set B = 2.5 * A
Write B
Set B = Int(B)
Write B
Set A = A + 1
End While

a. 5 b. 5 c. 5 d. 2
7 5 5 5
7.5 7 3
7 7 7
ANS: B

6. Which of the following loops cannot be nested in a For loop?

a. While
b. For
c. Repeat ... Until
d. Do ... While
e. all of the above can be nested in a For loop

ANS: E

© 2015 Pearson Education 2


Prelude to Programming 6th edition Elizabeth Drake

7. What is the output of the code corresponding to the pseudocode shown?


Declare G As Integer
Declare H As Integer
Set G = 7
While G <= 8
Set H = 6
While H <= 7
Write G + H
Set H = H + 1
End While(H)
Set G = G + 1
End While(G)

a. 13 b. 7 c. 7 6 d. 13
14 6 7 7 14
15 7 8 6 14
8 8 7 15
ANS: D

8. What will be displayed after code corresponding to the following pseudocode is run?
Declare A As Integer
Declare B As Integer
Declare C As Integer
Set A = 3
While A <= 6
Set B = (2 * A) – 1
Write B
Set C = A
While C <= (A+1)
Write C
Set C = C + 1
End While(C)
Set A = A + 2
End While(A)

a. 5 b. 3 c. 5 d. 5
3 5 3 3
9 4 4 3
5 5 9 9
9 5 5
5 6 5
ANS: C

© 2015 Pearson Education 3


Prelude to Programming 6th edition Elizabeth Drake

9. Which of the following statements should be used to validate that a number input by the
user into a variable named Widgets is an integer value?

a. While Widgets != Widgets


Write “Please enter an integer value:”
Input Widgets
End While
b. While Int(Widgets) != Widgets
Write “Please enter an integer value:”
Input Widgets
End While
c. Repeat
Write “Please enter an integer value:”
Input Widgets
End Repeat
d. While Widgets > 0
Write “Please enter an integer value:”
Input Widgets
End While
ANS: B

10. What does the following program segment do?


Declare Count As Integer
Declare Sum As Integer
Set Sum = 0
For (Count = 1; Count < 50; Count++)
Set Sum = Sum + Count
End For

a. It sums all the integers from 0 through 50


b. It sums all the integers from 1 through 50
c. It sums all the integers from 1 through 49
d. It does nothing since there is no Write statement
ANS: C

© 2015 Pearson Education 4


Prelude to Programming 6th edition Elizabeth Drake

11. What is wrong with the following pseudocode?


Declare Count As Integer
Declare TheNumber As Integer
Set TheNumber = 12
For (Count = 10; Count>TheNumber; Count--)
Write TheNumber + Count
End For

a. A counter must start at 0 or 1


b. The limit condition in a For loop cannot be a variable
c. The loop will never be entered since the initial value of Count is less than the
test condition
d. The loop will never end since the test condition will never be met
ANS: D

12. If MyNumber = 7.82, what is the value of Int(MyNumber/2)+ 0.5?

a. 4.41
b. 3.5
c. 3.91
d. 4.5

ANS: B

13. What is the output of the code corresponding to the following pseudocode?
Declare M As Integer
Declare P As Integer
Repeat
Set P = 1
While P < 4
Write M + “ and “ + P
Set P = P + 1
End While(P)
Set M = M + 1
Until M = 3

a. 2 and 1 b. 2 and 1 c. 1 and 1 d. M and P


3 and 1 2 and 2 2 and 2 M and P
2 and 3 3 and 3 M and P
3 and 1
3 and 2
3 and 3
ANS: B

© 2015 Pearson Education 5


Prelude to Programming 6th edition Elizabeth Drake

14. Which statement would produce an output of one of the following numbers:
5, 6, 7, 8, 9, 10

a. Floor(Random() * 5) + 5
b. Floor(Random() * 6) + 5
c. Floor(Random()) + 5
d. Floor(Random() * 9) - 5

ANS: A

15. What is displayed when the following pseudocode is coded and run, given that the input is
“Harold”?

Declare Star As Character


Declare A As Integer
Declare Count As Integer
Declare Name As String
Set Star = “*”
Write “Enter your first name: “
Input Name
Set A = Length_Of(Name)
Set Count = 1
Print Name
Print <NL>
While Count <= A
Print Star
Set Count = Count + 1
End While

a. Harold b. Harold c. ****** d. Harold


* ***** ******
ANS: D

TRUE/FALSE
1. True/False: It is possible to have both a Select Case statement and an If-Then
structure within a single loop.
ANS: T

2. True/False: If Number = 4, is the following statement true or false:


Int(Number * Number) == Number * Number
ANS: T

3. True/False: If Number = 2.7, is the following statement true or false:


Int(Number * Number) == Number * Number
ANS: F
© 2015 Pearson Education 6
Prelude to Programming 6th edition Elizabeth Drake

4. True/False: If one For loop is nested within another, then the limit value for the two loops
must be different.
ANS: F

5. True/False: Two non-overlapping loops can be nested within a third loop.


ANS: T

6. True/False: If Number = 3, indicate whether the following statement is true


or false:
Floor(Random() * Number) may be 0, 1, 2, or 3
ANS: F

7. True/False: A For loop may not be nested within a While loop.


ANS: F

8. True/False: Given that Number = 3:


Floor(Random() * Number) + 4 may be 7, 8, 9, 10, 11, 12, or 13
ANS: F

9. True/False: Given that Number = 3:


Floor(Random() * 4) + Number may be 3, 4, 5, or 6
ANS: T

10. True/False: It is not possible to put a loop inside an If-Then statement.


ANS: F

11. True/False: If Number = 2.3, is the following statement true or false:


Number == Int(Number)
ANS: F

12. True/False: A counter in a loop can count up by fives.


ANS: T

13. True/False: Is the following statement true or false?


Ceiling(6.89) = 6
ANS: F

14. True/False: In a program with nested loops, the inner loop is completed before the outer
loop.
ANS: T

15. True/False: Is the following statement true or false?


Ceiling(4.22) = 5
ANS: T

© 2015 Pearson Education 7


Prelude to Programming 6th edition Elizabeth Drake

SHORT ANSWER

1. Numbers that form an unpredictable sequence in which each number is equally likely to oc-
cur are called __________ __________.
ANS: random numbers

2. ____________ __________ are numbers that belong to a sequence, generated by a


mathematical algorithm, in which each number is equally likely to occur.
ANS: pseudorandom numbers

3. The starting value of an algorithm used to generate a range of numbers is called the
_________.
ANS: seed

4. The expression Floor(Random()*6) produces the numbers _____ through _____


ANS: 0, 5

5. When one loop is contained within another loop, we say these are __________ loops.
ANS: nested

6. The statement
If Int(Number) != Number Then...
checks to see if the value of Number is a(n) _________.
ANS: integer

7. In a program with nested loops, the outer loop is completed __________ (before/after) the
inner loop.
ANS: after

8. If a counter named MyCount in a For loop has the value of 5 on the first pass, 10 on the
second pass, 15 on the third pass, and so on, the increment would be written as
__________.
ANS: MyCount+5

9. If a counter named MyCount in a For loop has the initial value of 5 on the first pass and
we want it to go through 4 iterations, increasing its value by 5 on each pass, the test
condition would be written as __________.
ANS: MyCount <= 20 or MyCount < 21

10. The function that returns the number of characters in a string is the __________ function.
ANS: Length_Of()

© 2015 Pearson Education 8


Other documents randomly have
different content
[10] This observation is not without a certain amount of
confirmation by more recent ones, in which certain lunar objects
and regions have been suspected of mist or vapour. Mr. Birt
(‘English Mechanic,’ vol. xxviii. no. 725) mentions two—the cloud-
like appearance of the white patch west of Picard, and the interior
of Tycho, which at one time always misty and ill-defined, is now
become perfectly distinct and sharply defined.
December 4, 1878, 4h 45m. I observed Klein’s crater as a dull
dark spot, larger than the true object; and while definition was
good and other objects were well defined, “the floor of Klein’s
object, the oval spot near, and also Agrippa (especially), all had
an odd misty look as if vapour were in or about them” (‘English
Mechanic,’ vol. xxviii. no. 727). The mystery of different observers
seeing and not seeing Klein’s object on the same night is hardly
to be accounted for by the angle of illumination.
[11] Some doubt has been cast on this observation, on the
ground that nothing unusual was seen, and that the appearances
were only those ordinarily presented by the moon at its then
phase. I simply give the account as it appears in the scientific
journal in which it was published.
[12] The question of a connexion between the waxing and
waning of the solar corona and the prevalence of sun-spots is
now being mooted, and may have an important bearing on the
subject of the constitution of the corona. It would seem that
when the corona has been examined about the time of minimum
of sun-spots, it has proved fainter though more extended, while
the bright lines of the spectrum have been absent, indicating a
change or variance in the gaseous part of it at those periods.
[13] There seems to be some confusion as to the W.L. here
given; 5567 is usually accepted as Ångström’s line, while Prof.
Smyth refers to it as 5579. The position, too, when examined
with a spectroscope of greater dispersion, is not exactly over the
citron-line of acetylene, both the above referred to lines lying
somewhat more towards the violet end of the spectrum (see Plate
V. fig. 7).
[14] Ångström’s drawing, in giving this character to the two
Aurora-bands which are said to correspond with violet-pole bands
about 47 and 43, is incorrect, and calculated to mislead by giving
the Aurora-bands a feature corresponding to the violet-pole bands
which they do not possess. I am not aware of any Aurora-line or
band which is described as distinguished by degrading towards
the violet.
[15] The tubes generally seem marked Si Fl instead of the
ordinary notation Si F. Si Fl₆ is probably, in fact, Si F₄.
[16] Dr. Schuster has found that while the line-spectrum of
lightning is attributable to N, it has also a band-spectrum, which
he considers due to O and a slight trace of CO₂ (Phil. Mag. 5th
ser. vol. vii. p. 321).
[17] In these observations some suggestions made by Mr.
Capron have been incorporated.
[This was Mr. Lockyer’s note. In point of fact, the Author was
responsible for the verbatim paragraphs comprised between the
letters A and B, and C and D, in the instructions as now
reprinted.]
[18] Communicated by the author to the Royal Saxon Academy
of Science, 1871.
[19] Reports of the Royal Saxon Academy of Science, Oct. 31,
1871.
[20] This red line was first noticed by Zöllner.
[21] Recherches sur le Spectre Solaire, p. 42.
[22] American Journal of Science, lxviii. 123.
*** END OF THE PROJECT GUTENBERG EBOOK AURORÆ: THEIR
CHARACTERS AND SPECTRA ***

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.
back
back
back
back
back
back
back
back
back
back
back
Welcome to our website – the perfect destination for book lovers and
knowledge seekers. We believe that every book holds a new world,
offering opportunities for learning, discovery, and personal growth.
That’s why we are dedicated to bringing you a diverse collection of
books, ranging from classic literature and specialized publications to
self-development guides and children's books.

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


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

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


personal growth every day!

testbankdeal.com

You might also like