100% found this document useful (8 votes)
26 views

Immediate download Introduction to JavaScript Programming with XML and PHP 1st Edition Drake Test Bank all chapters

The document provides links to download test banks and solution manuals for various programming and sociology textbooks, including 'Introduction to JavaScript Programming with XML and PHP' and 'Introduction to Programming with C++'. It includes sample multiple-choice and true/false questions from the JavaScript test bank, covering topics such as form handling and string manipulation. Additionally, it discusses the worship practices related to generative powers in various cultures, referencing symbols associated with deities like Venus and Siva.

Uploaded by

tobinhoethw0
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (8 votes)
26 views

Immediate download Introduction to JavaScript Programming with XML and PHP 1st Edition Drake Test Bank all chapters

The document provides links to download test banks and solution manuals for various programming and sociology textbooks, including 'Introduction to JavaScript Programming with XML and PHP' and 'Introduction to Programming with C++'. It includes sample multiple-choice and true/false questions from the JavaScript test bank, covering topics such as form handling and string manipulation. Additionally, it discusses the worship practices related to generative powers in various cultures, referencing symbols associated with deities like Venus and Siva.

Uploaded by

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

Visit https://testbankfan.

com to download the full version and


explore more testbank or solution manual

Introduction to JavaScript Programming with XML


and PHP 1st Edition Drake Test Bank

_____ Click the link below to download _____


https://testbankfan.com/product/introduction-to-
javascript-programming-with-xml-and-php-1st-edition-
drake-test-bank/

Explore and download more testbank at testbankfan.com


Here are some suggested products you might be interested in.
Click the link to download

Introduction to JavaScript Programming with XML and PHP


1st Edition Drake Solutions Manual

https://testbankfan.com/product/introduction-to-javascript-
programming-with-xml-and-php-1st-edition-drake-solutions-manual/

Introduction to Programming with C++ 3rd Edition Liang


Test Bank

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

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/

Exploring Sociology The Concise Edition Canadian 1st


Edition Ravelli Test Bank

https://testbankfan.com/product/exploring-sociology-the-concise-
edition-canadian-1st-edition-ravelli-test-bank/
Introduction to Operations Research 9th Edition Hillier
Solutions Manual

https://testbankfan.com/product/introduction-to-operations-
research-9th-edition-hillier-solutions-manual/

Experience Psychology 3rd Edition King Test Bank

https://testbankfan.com/product/experience-psychology-3rd-edition-
king-test-bank/

Paralegal Professional 5th Edition Goldman Solutions


Manual

https://testbankfan.com/product/paralegal-professional-5th-edition-
goldman-solutions-manual/

Introduction to Young Children with Special Needs Birth


Through Age Eight 4th Edition Gargiulo Solutions Manual

https://testbankfan.com/product/introduction-to-young-children-with-
special-needs-birth-through-age-eight-4th-edition-gargiulo-solutions-
manual/

Technology Now Your Companion to SAM Computer Concepts 1st


Edition Corinne Hoisington Test Bank

https://testbankfan.com/product/technology-now-your-companion-to-sam-
computer-concepts-1st-edition-corinne-hoisington-test-bank/
Science of Nutrition 4th Edition Thompson Test Bank

https://testbankfan.com/product/science-of-nutrition-4th-edition-
thompson-test-bank/
Introduction to JavaScript Programming Test Bank Chapter 6
with XML and PHP

Test Bank for Chapter 6

MULTIPLE CHOICE

1. Where are <form></form> tags placed?

a. Directly after the opening <body> tag b. Anywhere in the HTML document
and must be closed right before the
closing </body> tag
c. Anywhere in the body of a web page d. In the <head> section
ANS: C

2. Buttons that can be automatically created using the type attribute are:

a. submit b. reset
c. hidden d. (a) and (b) only e. (a), (b), and (c)
ANS: E

3. Which of the following are ways to submit form data?

a. By email b. to a JavaScript program


c. to a server d. (b) and (c) only e. (a), (b), and (c)
ANS: E

4. When using a set of radio buttons, which attribute must be the same for all buttons in the set

a. name b. value
c. id d. selected
ANS: A

5. Which line of code should be used to make the following code snippet work?

var longString = "Great day, isn't it?";


var shortString = _____???_______
document.write("It's going ton rain to" + shortString);

a. shortString = longString.substr(20, 7);


b. shortString = longString.substr(6, 3);
c. shortString = substr(longString, 6, 3);
d. shortString = longString.substr(7, 3);
ANS: B

© 2014 Pearson Education 1


Introduction to JavaScript Programming Test Bank Chapter 6
with XML and PHP

6. Which of the following will send form results from a form named “importantInfo” to the email
address [email protected] with the subject “Read this!”

a. <form name=“info” method=“post” id=“important info” action =


[email protected]?subject = Read this!” enctype=“plain/text”>

b. <form name=“importantInfo” method=“post” id=“info” action=


“mailto:[email protected]?subject=Read this!” enctype=“plain/text”>

c. <form name=“importantInfo” method=“email” id=“info” action =


mailto:[email protected] “subject=Read this!” enctype=“plain/text”>

d. <form name=“importantInfo” method=post id=info action =


“mailto:[email protected] ? subject=Read this!” enctype=text/plain>

ANS: B

7. Which line of code will check if any character in the string variable pword is the letter X and
return true for the variable check?

var check = false;


for (i = 0; i < pword.length; i++)
{
_____???_______
check = true;
}

a. if (var charX == "X");

b. if (var charX == charX.charAt[i]);

c. if (var charX.charAt[i] == "X");

d. if (var charX.charCodeAt[i] == "X");


ANS: C

8. Given the following line of code, what does the this keyword refer to?

<input type = "button" name = "murgatroyd" id = "Mortimer"


onclick = "doSomething(this.id)" />

© 2014 Pearson Education 2


Introduction to JavaScript Programming Test Bank Chapter 6
with XML and PHP

a. the button type b. the name attribute


c. the id attribute d. the onclick() event
ANS: C

9. Which of the following will check to see if a password contains a # sign, given that the
character code for "#" is 37? The password is 8 characters long and is stored in a variable named
pword.

a. var check = false;


for (j = 1; j < 7; j++)
{
if (pword.charCodeAt[j] == 37);
check = true;
}

b. var check = false;


for (j = 0; j < 8; j++)
{
if (pword.charCodeAt(j) == 37)
check = true;

c. var check = false;


for (j = 0; j <= 8; j++)
{
if (pword.charCodeAt()== 37)
check = true;
}

d. var check = true;


for (j = 1; j < 9; j++)
{
if (pword.charCodeAt(37)== "#")
check = true;
}

ANS: B

10. Which of the following sets or changes the tab order of form controls?

a. tab b. tab = 0; c. tab index d. index

ANS: C

© 2014 Pearson Education 3


Introduction to JavaScript Programming Test Bank Chapter 6
with XML and PHP

11. Which of the following will substitute an image named redButton.jpg that is stored in the same
place as the web page for a generic button? The doStuff() function is called when the button is
clicked.

a. button type="image" src=redButton.jpg onclick="doStuff()" /></button>


b. <a href="Javascript:doStuff()"> <img src = "redButton.jpg"> </a>
c. <button type="image" onclick="doStuff()"><img src="redButton.jpg" />
d. <a href=:Javascript:doStuff()" src ="redButton.jpg" type="button" />

ANS: B

12. Which of the following will call a function named setBlue() when a text box with id =
"blue" gets the focus?

a. onfocus = "blue" onclick = ("setBlue()");


b. onfocus.blue = setBlue()
c. id = "blue" onclick = setBlue()
d. onfocus = "setBlue('blue')"
ANS: D

13. Which of the following is the correct way to set a background color of blue to an HTML element with
id = "color_change"?

a. document.getElementById("color_change").style.background = "blue";
b. document.getElementById("color_change").innerHTML = "blue";
c. document.getElementById("color_change").style = blue(this.id);
d. document.getElementById("color_change").this.id = background("blue");
ANS: A

14. Which of the following checks if the sixth character of a string variable named myMail is the @ sign
using a Boolean variable named atSign set to true if this is true?

a. for (k = 0; k < myMail.length; k++)


{
if(myMail.charAt(k) == @)
atSign = true;
}
b. atSign = "@";
for (k = 0; k < 7; k++)
{
if(myMail.charAt(k) == atSign)
flag = true;
}
c. if(myMail.substr(5, 1) == "@")
atSign = true;
d. if(myMail.substr(1, 5) == "@")

© 2014 Pearson Education 4


Introduction to JavaScript Programming Test Bank Chapter 6
with XML and PHP

atSign = true;

ANS: C

15. Which of the following checks to see if the number of characters in a given string named myName is
greater than 2 and less than 11?

a. if(myName.length > 2 && myName.length < 11)


b. if(myName.length > 2 || myName.length < 11)
c. if(myName.length > 1 && myName.length <= 10)
d. if(myName.length >= 2 || myName.length <= 11)

ANS: A

TRUE/FALSE

1. True/False: Radio buttons are used to allow users to select several options at one time.
ANS: F

2. True/False: A form using the <form></form> tag pair can be placed anywhere within a web page.
ANS: T

3. True/False: When a form is enhanced with JavaScript, an event handler must be used to evoke the
JavaScript code.
ANS: T

4. True/False: The Common Gateway Interface (CGI) allows web pages to be generated as executable
files.
ANS: T

5. True/False: CGI scripts are normally saved in a folder named cgi-bin that exists on every client's
hard drive.
ANS: F

6. True/False: The property of each radio button in a group of radio buttons that must be the same for
each button is the id property.
ANS: F

7. True/False: The checked property can be used to return the state of a checkbox to a JavaScript
function.
ANS: T

8. True/False: The properties that determine the size of a text box are cols and rows.
ANS: F

© 2014 Pearson Education 5


Introduction to JavaScript Programming Test Bank Chapter 6
with XML and PHP

9. True/False: If the information entered into a textarea box exceeds the number of rows originally set,
a scroll bar is created.
ANS: T

10. True/False: The two types of buttons that display masked text (such as *'s or #'s) to hide what a user
enters are "hidden" and "password".
ANS: F

© 2014 Pearson Education 6


Discovering Diverse Content Through
Random Scribd Documents
those described by the author of the “Worship of the Generative
Powers of the Western Nations,” showing again the similarity of the
custom with those practised by the Catholics in France. The writer
says:—“Women sought a remedy for barrenness by kissing the end
of the Phallus; sometimes they appear to have placed a part of their
body, naked, against the image of the saint, or to have sat upon it.
This latter trait was perhaps too bold an adoption of the indecencies
of Pagan worship to last long, or to be practised openly; but it
appears to have been innocently represented by lying upon the body
of the saint, or sitting upon a stone, understood to represent him
without the presence of the energetic member. In a corner in the
church of the village of St. Fiacre, near Monceaux, in France, there is
a stone called the chair of St. Fiacre, which confers fecundity upon
women who sit upon it; but it is necessary nothing should intervene
between their bare skin and the stone. In the church of Orcival in
Auvergne, there was a pillar which barren women kissed for the
same purpose and which had perhaps replaced some less equivocal
object.”
The principal object of worship at Elora is the stone, so frequently
spoken of; “the Lingam,” says Seeley, and he apologises for using
the word so often, but asks to be excused, “is an emblem not
generally known, but as frequently met with as the Cross in Catholic
worship.” It is the god Siva, a symbol of his generative character, the
base of which is usually inserted in the Yoni. The stone is of a
conical shape, often black stone, covered with flowers (the Belia and
Asuca shrubs). The flowers hang pendant from the crown of the Ling
stone to the spout of the Argha or Yoni (mystical matrix); the same
as the Phallus of the Greeks. Five lamps are commonly used in the
worship at the symbol, or one lamp with five wicks. The Lotus is
often seen on the top of the Ling.
VENUS-URANIA.—THE MOTHER GODDESS

The characteristic attribute of the passive generative power was


expressed in symbolical writing, by different enigmatical
representations of the most distinguished characteristic of the
female sex: such as the shell or Concha Veneris, the fig-leaf, barley
corn, and the letter Delta, all of which occur very frequently upon
coins and other ancient monuments in this sense. The same
attribute personified as the goddess of Love, or desire, is usually
represented under the voluptuous form of a beautiful woman,
frequently distinguished by one of these symbols, and called Venus,
Kypris, or Aphrodite, names of rather uncertain mythology. She is
said to be the daughter of Jupiter and Dione, that is of the male and
female personifications of the all-pervading Spirit of the Universe;
Dione being the female Dis or Zeus, and therefore associated with
him in the most ancient oracular temple of Greece at Dodona. No
other genealogy appears to have been known in the Homeric times;
though a different one is employed to account for the name of
Aphrodite in the “Theogony” attributed to Hesiod.
The Genelullides or Genoidai were the original and appropriate
ministers or companions of Venus, who was however, afterwards
attended by the Graces, the proper and original attendants of Juno;
but as both these goddesses were occasionally united and
represented in one image, the personifications of their respective
subordinate attributes were on other occasions added: whence the
symbolical statue of Venus at Paphos had a beard, and other
appearances of virility, which seems to have been the most ancient
mode of representing the celestial as distinguished from the popular
goddess of that name—the one being a personification of a general
procreative power, and the other only of animal desire or
concupiscence. The refinement of Grecian art, however, when
advanced to maturity, contrived more elegant modes of
distinguishing them; and, in a celebrated work of Phidias, we find
the former represented with her foot upon a tortoise; and in a no
less celebrated one of Scopas, the latter sitting upon a goat. The
tortoise, being an androgynous animal, was aptly chosen as a
symbol of the double power; and the goat was equally appropriate
to what was meant to be expressed in the other.
The same attribute was on other occasions signified by a dove or
pigeon, by the sparrow, and perhaps by the polypus, which often
appears upon coins with the head of the goddess, and which was
accounted an aphrodisiac, though it is likewise of the androgynous
class. The fig was a still more common symbol, the statue of Priapus
being made of the tree, and the fruit being carried with the Phallus
in the ancient processions in honour of Bacchus, and still continuing
among the common people of Italy to be an emblem of what it
anciently meant: whence we often see portraits of persons of that
country painted with it in one hand, to signify their orthodox
elevation to the fair sex. Hence, also arose the Italian expression far
la fica, which was done by putting the thumb between the middle
and fore-fingers, as it appears in many Priapic ornaments extant; or
by putting the finger or thumb into the corner of the mouth and
drawing it down, of which there is a representation in a small Priapic
figure of exquisite sculpture, engraved among the Antiquities of
Herculaneum.

LIBERALITY AND SAMENESS OF THE WORLD-


RELIGIONS

The same liberal and humane spirit still prevails among those
nations whose religion is founded on the same principles. “The
Siamese,” says a traveller of the seventeenth century, “shun disputes
and believe that almost all religions are good” (“Journal du Voyage
de Siam”). When the ambassador of Louis XIV asked their king, in
his master’s name, to embrace Christianity, he replied, “that it was
strange that the king of France should interest himself so much in an
affair which concerns only God, whilst He, whom it did concern,
seemed to leave it wholly to our discretion. Had it been agreeable to
the Creator that all nations should have had the same form of
worship, would it not have been as easy to His omnipotence to have
created all men with the same sentiments and dispositions, and to
have inspired them with the same notions of the True Religion, as to
endow them with such different tempers and inclinations? Ought
they not rather to believe that the true God has as much pleasure in
being honoured by a variety of forms and ceremonies, as in being
praised and glorified by a number of different creatures? Or why
should that beauty and variety, so admirable in the natural order of
things, be less admirable or less worthy of the wisdom of God in the
supernatural?”
The Hindus profess exactly the same opinion. “They would readily
admit the truth of the Gospel,” says a very learned writer long
resident among them, “but they contend that it is perfectly
consistent with their Shastras. The Deity, they say, has appeared
innumerable times in many parts of this world and in all worlds, for
the salvation of his creatures; and we adore, they say, the same
God, to whom our several worships, though different in form, are
equally acceptable if they be sincere in substance.”
The Chinese sacrifice to the spirits of the air, the mountains and the
rivers; while the Emperor himself sacrifices to the sovereign Lord of
Heaven, to whom all these spirits are subordinate, and from whom
they are derived. The sectaries of Fohi have, indeed, surcharged this
primitive elementary worship with some of the allegorical fables of
their neighbours; but still as their creed—like that of the Greeks and
Romans—remains undefined, it admits of no dogmatical theology,
and of course no persecution for opinion. Obscure and sanguinary
rites have, indeed, been wisely prescribed on many occasions; but
still as actions and not as opinions. Atheism is said to have been
punished with death at Athens; but nevertheless it may be
reasonably doubted whether the atheism, against which the citizens
of that republic expressed such fury, consisted in a denial of the
existence of the gods; for Diagoras, who was obliged to fly for this
crime, was accused of revealing and calumniating the doctrines
taught in the Mysteries; and from the opinions ascribed to Socrates,
there is reason to believe that his offence was of the same kind,
though he had not been initiated.
These were the only two martyrs to religion among the ancient
Greeks, such as were punished for actively violating or insulting the
Mysteries, the only part of their worship which seems to have
possessed any vitality; for as to the popular deities, they were
publicly ridiculed and censured with impunity by those who dared
not utter a word against the populace that worshipped them; and as
to the forms and ceremonies of devotion, they were held to be no
otherwise important, then as they were constituted a part of civil
government of the state; the Pythian priestess having pronounced
from the tripod, that whoever performed the rites of his religion
according to the laws of his country, performed them in a manner
pleasing to the Deity. Hence the Romans made no alterations in the
religious institutions of any of the conquered countries; but allowed
the inhabitants to be as absurd and extravagant as they pleased,
and to enforce their absurdities and extravagances wherever they
had any pre-existing laws in their favour. An Egyptian magistrate
would put one of his fellow-subjects to death for killing a cat or a
monkey; and though the religious fanaticism of the Jews was too
sanguinary and too violent to be left entirely free from restraint, a
chief of the synagogue could order anyone of his congregation to be
whipped for neglecting or violating any part of the Mosaic Ritual.
The principle underlying the system of emanations was, that all
things were of one substance, from which they were fashioned and
into which they were again dissolved, by the operation of one plastic
spirit universally diffused and expanded. The polytheist of ancient
Greece and Rome candidly thought, like the modern Hindu, that all
rites of worship and forms of devotion were directed to the same
end, though in different modes and through different channels.
“Even they who worship other gods,” says Krishna, the incarnate
Deity, in an ancient Indian poem (Bhagavat-Gita), “worship me
although they know it not.”—Payne Knight.

THE END.
Transcriber’s Notes

Some inconsistencies in spelling, hyphenation, and punctuation have


been retained.
Obvious typographical errors have been corrected.
*** END OF THE PROJECT GUTENBERG EBOOK PHALLIC WORSHIP
***

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 ideal destination for book lovers and
knowledge seekers. With a mission to inspire endlessly, we offer a
vast collection of books, ranging from classic literary works to
specialized publications, self-development books, and children's
literature. Each book is a new journey of discovery, expanding
knowledge and enriching the soul of the reade

Our website is not just a platform for buying books, but a bridge
connecting readers to the timeless values of culture and wisdom. With
an elegant, user-friendly interface and an intelligent search system,
we are committed to providing a quick and convenient shopping
experience. Additionally, our special promotions and home delivery
services ensure that you save time and fully enjoy the joy of reading.

Let us accompany you on the journey of exploring knowledge and


personal growth!

testbankfan.com

You might also like