100% found this document useful (1 vote)
8 views

Starting Out with Java From Control Structures through Objects 5th Edition Tony Gaddis Test Bank download

The document provides a test bank for the book 'Starting Out with Java From Control Structures through Objects 5th Edition' by Tony Gaddis, including multiple-choice questions and answers. It also includes links to various other test banks and solution manuals for related programming and computer science textbooks. The content covers fundamental concepts in Java programming and object-oriented design.

Uploaded by

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

Starting Out with Java From Control Structures through Objects 5th Edition Tony Gaddis Test Bank download

The document provides a test bank for the book 'Starting Out with Java From Control Structures through Objects 5th Edition' by Tony Gaddis, including multiple-choice questions and answers. It also includes links to various other test banks and solution manuals for related programming and computer science textbooks. The content covers fundamental concepts in Java programming and object-oriented design.

Uploaded by

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

Starting Out with Java From Control Structures

through Objects 5th Edition Tony Gaddis Test


Bank download

https://testbankdeal.com/product/starting-out-with-java-from-
control-structures-through-objects-5th-edition-tony-gaddis-test-
bank/

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


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

Starting Out with Java From Control Structures through


Objects 5th Edition Tony Gaddis Solutions Manual

https://testbankdeal.com/product/starting-out-with-java-from-control-
structures-through-objects-5th-edition-tony-gaddis-solutions-manual/

Starting Out With C++ From Control Structures Through


Objects 7th Edition Tony Gaddis Test Bank

https://testbankdeal.com/product/starting-out-with-c-from-control-
structures-through-objects-7th-edition-tony-gaddis-test-bank/

Starting Out with Java From Control Structures through


Objects 6th Edition Gaddis Test Bank

https://testbankdeal.com/product/starting-out-with-java-from-control-
structures-through-objects-6th-edition-gaddis-test-bank/

Business Data Networks and Security 11th Edition Panko


Test Bank

https://testbankdeal.com/product/business-data-networks-and-
security-11th-edition-panko-test-bank/
Microsoft Access 2013 Comprehensive 1st Edition Pratt Test
Bank

https://testbankdeal.com/product/microsoft-
access-2013-comprehensive-1st-edition-pratt-test-bank/

Human Communication 4th Edition Pearson Test Bank

https://testbankdeal.com/product/human-communication-4th-edition-
pearson-test-bank/

Accounting Theory Conceptual Issues in a Political and


Economic Environment 8th Edition Wolk Solutions Manual

https://testbankdeal.com/product/accounting-theory-conceptual-issues-
in-a-political-and-economic-environment-8th-edition-wolk-solutions-
manual/

Contemporary Business 15th Edition Boone Test Bank

https://testbankdeal.com/product/contemporary-business-15th-edition-
boone-test-bank/

Auditing and Assurance Services An Asia Edition 1st


Edition Rittenberg Solutions Manual

https://testbankdeal.com/product/auditing-and-assurance-services-an-
asia-edition-1st-edition-rittenberg-solutions-manual/
Concepts of Database Management 8th Edition Pratt Test
Bank

https://testbankdeal.com/product/concepts-of-database-management-8th-
edition-pratt-test-bank/
Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education

Chapter 6

MULTIPLE CHOICE

1. One or more objects may be created from a(n):


a. field
b. class
c. method
d. instance

ANS: B

2. Class objects normally have __________ that perform useful operations on their data, but primitive variables do
not.
a. fields
b. instances
c. methods
d. relationships

ANS: C

3. In the cookie cutter metaphor, think of the ________ as a cookie cutter and ________ as the cookies.
a. object; classes
b. class; objects
c. class; fields
d. attribute; methods

ANS: B

4. Which of the following are classes from the Java API?


a. Scanner
b. Random
c. PrintWriter
d. All of the above

ANS: D

5. When you are working with a ____________, you are using a storage location that holds a piece of data.
a. primitive variable
b. reference variable
c. numeric literal
d. binary number

ANS: A

6. What is stored by a reference variable?


a. A binary encoded decimal
b. A memory address
c. An object
d. A string
Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education

ANS: B

7. Most programming languages that are in use today are:


a. procedural
b. logic
c. object-oriented
d. functional

ANS: C

8. Java allows you to create objects of this class in the same way you would create primitive variables.
a. Random
b. String
c. PrintWriter
d. Scanner

ANS: B

9. A UML diagram does not contain:


a. the class name.
b. the method names.
c. the field names.
d. object names

ANS: D

10. Data hiding, which means that critical data stored inside the object is protected from code outside the object, is
accomplished in Java by:
a. using the public access specifier on the class methods
b. using the private access specifier on the class methods
c. using the private access specifier on the class definition
d. using the private access specifier on the class fields

ANS: D

11. For the following code, which statement is not true?

public class Sphere


{
private double radius;
public double x;
private double y;
private double z;
}

a. x is available to code that is written outside the Circle class.


b. radius is not available to code written outside the Circle class.
c. radius, x, y, and z are called members of the Circle class.
d. z is available to code that is written outside the Circle class.
Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education

ANS: D

12. You should not define a class field that is dependent upon the values of other class fields:
a. in order to avoid having stale data
b. because it is redundant
c. because it should be defined in another class
d. in order to keep it current

ANS: A

13. What does the following UML diagram entry mean?

+ setHeight(h : double) : void

a. this is a public attribute named Height and is a double data type


b. this is a private method with no parameters and returns a double data type
c. this is a private attribute named Height and is a double data type
d. this is a public method with a parameter of data type double and does not return a value

ANS: D

14. Methods that operate on an object's fields are called:


a. instance variables
b. instance methods
c. public methods
d. private methods

ANS: B

15. The scope of a private instance field is:


a. the instance methods of the same class
b. inside the class, but not inside any method
c. inside the parentheses of a method header
d. the method in which they are defined

ANS: A

16. A constructor:
a. always accepts two arguments
b. has return type of void
c. has the same name as the class
d. always has an access specifier of private

ANS: C

17. Which of the following statements will create a reference, str, to the String, “Hello, World”?
a. String str = "Hello, World";
b. string str = "Hello, World";
c. String str = new "Hello, World";
d. str = "Hello, World";
Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education

ANS: A

18. Two or more methods in a class may have the same name as long as:
a. they have different return types
b. they have different parameter lists
c. they have different return types, but the same parameter list
d. you cannot have two methods with the same name

ANS: B

19. Given the following code, what will be the value of finalAmount when it is displayed?

public class Order


{
private int orderNum;
private double orderAmount;
private double orderDiscount;

public Order(int orderNumber, double orderAmt,


double orderDisc)
{
orderNum = orderNumber;
orderAmount = orderAmt;
orderDiscount = orderDisc;
}
public int getOrderAmount()
{
return orderAmount;
}
public int getOrderDisc()
{
return orderDisc;
}
}

public class CustomerOrder


{
public static void main(String[] args)
{
int ordNum = 1234;
double ordAmount = 580.00;
double discountPer = .1;
Order order;
double finalAmount = order.getOrderAmount() –
order.getOrderAmount() * order.getOrderDisc();
System.out.println("Final order amount = $" +
finalAmount);
}
}
a. 528.00
b. 580.00
c. There is no value because the constructor has an error.
d. There is no value because the object order has not been created.
Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education

ANS: D

20. A class specifies the ________ and ________ that a particular type of object has.
a. relationships; methods
b. fields; object names
c. fields; methods
d. relationships; object names

ANS: C

21. This refers to the combining of data and code into a single object.
a. Data hiding
b. Abstraction
c. Object
d. Encapsulation

ANS: D

22. Another term for an object of a class is


a. access specifier
b. instance
c. member
d. method

ANS: B

23. In your textbook the general layout of a UML diagram is a box that is divided into three sections. The top
section has the _______; the middle section holds _______; the bottom section holds _______.
a. class name; attributes or fields; methods
b. class name; object name; methods
c. object name; attributes or fields; methods
d. object name; methods; attributes or fields

ANS: A

24. For the following code, which statement is not true?

public class Circle


{
private double radius;
public double x;
private double y;
}

a. x is available to code that is written outside the Circle class.


b. radius is not available to code written outside the Circle class.
c. radius, x, and y are called members of the Circle class.
d. y is available to code that is written outside the Circle class.

ANS: D

25. It is common practice in object-oriented programming to make all of a class's


Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education

a. methods private
b. fields private
c. fields public
d. fields and methods public

ANS: B

26. After the header, the body of the method appears inside a set of:
a. brackets, []
b. parentheses, ()
c. braces, {}
d. double quotes, ""

ANS: C

27. In UML diagrams, this symbol indicates that a member is private:


a. *
b. #
c. -
d. +

ANS: C

28. In UML diagrams, this symbol indicates that a member is public.

a. /
b. @
c. -
d. +

ANS: D

29. In a UML diagram to indicate the data type of a variable enter:


a. the variable name followed by the data type
b. the variable name followed by a colon and the data type
c. the class name followed by the variable name followed by the data type
d. the data type followed by the variable name

ANS: B

30. When an object is created, the attributes associated with the object are called:
a. instance fields
b. instance methods
c. fixed attributes
d. class instances

ANS: A

31. When an object is passed as an argument to a method, what is passed into the method’s parameter variable?
a. the class name
b. the object’s memory address
Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education

c. the values for each field


d. the method names

ANS: B

32. A constructor is a method that:


a. returns an object of the class.
b. never receives any arguments.
c. with the name ClassName.constructor.
d. performs initialization or setup operations.

ANS: D

33. The scope of a public instance field is:


a. only the class in which it is defined
b. inside the class, but not inside any method
c. inside the parentheses of a method header
d. the instance methods and methods outside the class

ANS: D

34. Which of the following statements will create a reference, str, to the string, “Hello, world”?

(1) String str = new String("Hello, world");


(2) String str = "Hello, world";

a. 1
b. 2
c. 1 and 2
d. Neither 1 or 2

ANS: C

35. Overloading means multiple methods in the same class


a. have the same name, but different return types
b. have different names, but the same parameter list
c. have the same name, but different parameter lists
d. perform the same function

ANS: C

36. Given the following code, what will be the value of finalAmount when it is displayed?

public class Order


{
private int orderNum;
private double orderAmount;
private double orderDiscount;

public Order(int orderNumber, double orderAmt,


double orderDisc)
{
Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education

orderNum = orderNumber;
orderAmount = orderAmt;
orderDiscount = orderDisc;
}

public double finalOrderTotal()


{
return orderAmount - orderAmount *
orderDiscount;
}
}

public class CustomerOrder


{
public static void main(String[] args)
{
Order order;
int orderNumber = 1234;
double orderAmt = 580.00;
double orderDisc = .1;
order = new Order(orderNumber, orderAmt, orderDisc);
double finalAmount = order.finalOrderTotal();
System.out.println("Final order amount = $" +
finalAmount);
}
}
a. 528.00
b. 580.00
c. 522.00
d. There is no value because the object order has not been created.

ANS: C

37. A class’s responsibilities include:

a. the things a class is responsible for doing c. both A and B


b. the things a class is responsible for knowing d. neither A or B

ANS: C

38. Instance methods do not have this key word in their headers:
a. public
b. static
c. private
d. protected

ANS: B

39. Which of the following is not involved in finding the classes when developing an object-oriented application?

a. Describe the problem domain. c. Write the code.


b. Identify all the nouns. d. Refine the list of nouns to include only those
that are relevant to the problem.
Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education

ANS: C

40. This is a group of related classes.

a. archive c. collection
b. package d. attachment

ANS: B

41. Quite often you have to use this statement to make a group of classes available to a program.

a. import c. link
b. use d. assume

ANS: A

42. Look at the following statement.

import java.util.Scanner;

This is an example of

a. a wildcard import c. unconditional import


b. an explicit import d. conditional import

ANS: B

43. Look at the following statement.

import java.util.*;

This is an example of:

a. a wildcard import c. unconditional import


b. an explicit import d. conditional import

ANS: A

44. The following package is automatically imported into all Java programs.

a. java.java c. java.util
b. java.default d. java.lang

ANS: D

TRUE/FALSE

1. An object can store data.

ANS: T
Gaddis: Starting Out with Java: From Control Structures through Objects, 5/e © 2012 Pearson Education

2. A class in not an object, but a description of an object.

ANS: T

3. An access specifier indicates how the class may be accessed.

ANS: T

4. A method that stores a value in a class's field or in some other way changes the value of a field is known as a
mutator method.

ANS: T

5. Instance methods should be declared static.

ANS: F

6. A constructor is a method that is automatically called when an object is created.

ANS: T

7. Shadowing is the term used to describe where the field name is hidden by the name of a local or parameter
variable.

ANS: T

8. The public access specifier for a field indicates that the attribute may not be accessed by statements outside
the class.

ANS: F

9. A method that gets a value from a class's field but does not change it is known as a mutator method.

ANS: F

10. Instance methods do not have the key word static in their headers.

ANS: T

11. The term "default constructor" is applied to the first constructor written by the author of a class.

ANS: F

12. When a local variable in an instance method has the same name as an instance field, the instance field hides the
local variable.

ANS: F

13. The term "no-arg constructor" is applied to any constructor that does not accept arguments.

ANS: T

14. The java.lang package is automatically imported into all Java programs.

ANS: T
Visit https://testbankdead.com
now to explore a rich
collection of testbank,
solution manual and enjoy
exciting offers!
Random documents with unrelated
content Scribd suggests to you:
Tusk-elephant mountain, 291

Tuttuwa, 73, 74, 304, 306

Udayagiri, mountain of Dawn, 71

Unlucky days, 18

Unnānsē namak, 320

Untruthfulness, 36

Upāsakā, 350, 354

Vaeddā, 202–204;
complains to King, 188;
K. imprisons travellers, 34, 64, 65;
in folk-tales, 34;
seven shoot for Princess, 96, 98;
shoots magic turtle-dove, 80, 81;
visits city, 273;
wedding custom, 240;
stories, 224

Vali, K., and his five sons, 40

Vanaspati rice, 277

Vanga, Gangetic kingdom, 40

Vedarāla or Vedā, demon expeller, 147, 171;


medical man, 336, 338;
soothsayer, 179–185

Vessels, Gangetic, their voyages, 42, 43

Vibhīsana, K. in Ceylon, 251

Victim’s escape, enemies take his place, 105, 106, 110, 112
Village, Kandian, 6;
dress, 8, 103;
garden, 11;
life, 21, 35;
new year’s re-union, 21;
path, 2;
tank, 4;
women, 8

Vishnu, 227;
boar incarnation, 50;
creation of earth and man, 47–50

Wager for life, 158

Wand, magic white, revives dead buffalo, 102

Warāgan, 182

Warnings by animals, etc., 14, 15, 19, 97, 122–124, 126, 297–299, 300, 356

Washerman, caste, 28;


and boy, 320, 321;
and jackal, 212;
and Gamarāla, 322, 325;
their cattle, 323, 325, 326;
chena, 322;
house building, 323, 324, 328, 329;
onion garden, 323;
rice field, 323;
lawsuits, 322, 327

Watch hut in chena, 2, 72, 73, 169, 170

Water not drunk while eating, 12

Waterpot, foreign, 306

Weaver-bird and monkey, 247


Weavers count themselves, 259;
foolishness of, 252;
hero killed a mosquito, 315;
nine flies, 315

Whale’s fat brought, 301

Wife exchanged for bullock, 36, 337;


taken by king, 94, 186

Wimalī, 302;
reared by Rākshasa, 303

Wijaya, K., 38–41, 167;


his exile doubtful, 41;
his voyage to Ceylon, 42;
saves followers from Kuwēnī, 167, 168

Woodpecker’s cry, 3;
an omen, 19

Woman, body gilded (?), 290;


dead, becomes white turtle, 115;
mango tree, 116;
kaekiri, 117;
blue lotus, 118;
revived by spell, 378, 379;
made by first man, 49;
made from man’s body, 157, 159;
marries Rākshasa, 290;
old, rejuvenated by beating, 109–111;
skin dress, 310, 311

Work, all, begun at lucky hour, 18, 22

Worship of Gods for a child, 336

Writing style, 93
Yabbaelli, f. Demon Hound, 297

Yama, God of Death, in south, 13

Yakā, afraid of man, 148, 149;


and Damunu pole, 375;
and monk, 375;
assists Prince, 142, 144;
blinds man, 146;
blocks path, 16, 146;
imprisoned in bottle, 33;
in iron house, 137;
killed by Prince, 143, 265, 274;
kills calf and men, 170, 171;
lives in tree, 148;
magic nail in head, 376;
man-eating, 137, 141–143, 145, 265;
man re-born as, 170, 172;
mode of approach, 142, 265, 266;
offerings, 147, 170;
power of incantations over, 171;
possesses man, 147;
provides man with food, 148, 149;
seizes King, 141;
seizes man, 146;
shot, 146;
underground palace, 141;
a demon or evil spirit, 34, 137;
works, 375

Yakō, a form of address, 287

Yaksanī, female Yakā, built palace, 189;


chased man or Prince, 186, 190;
ate corpse, 189, 190;
made Queen, 186;
served Prince, 189
Yaksa Vedarāla, practitioner against demons, 147, 171

Yasalālaka-Tissa, K., deposition, 153

Youth accompanied by young animals, 297–300;


cheats monk, 320;
tom-tom beaters, 109–111;
washerman, 321;
four tasks given, 296–298

Youth, foolish, and gruel, 320;


and monk, 320;
burns house, 108;
kills fly on mother’s head, 319;
throws sticks into river, 108, 319

Yugas, four, 49
Butler & Tanner The Selwood Printing Works Frome and London
Colophon
Availability

This eBook is for the use of anyone anywhere 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 .

This eBook is produced by the Online Distributed Proofreading Team


at www.pgdp.net .

Scans of this book are available from the Internet Archive (Volume I:
copy 1 , 2 , 3 ; Volume II: copy 1 , 2 , 3 ; Volume III: copy 1 ,
2 , 3 ).

Metadata

Village Folk-Tales of Ceylon;


Title:
Volume I
Author: Henry Parker (1849–) Info
Language: English
Original publication
1910
date:
Keywords: Sinhalese Tales
Library of Congress: 23015132
Open Library (Book): OL23405355M
Open Library (Work): OL12415901W

Revision History
2018-02-15 Started.

External References

This Project Gutenberg eBook contains external references. These


links may not work for you.

Corrections

The following corrections have been applied to the text:

Edit
Page Source Correction
distance
10 verandah veranda 1
27 Ratēmahatmayā Raṭēmahatmayā 1 / 0
34,
34,
34,
34,
Vaedda Vaeddā 1/0
34,
64,
65,
239
45 VAEDDAS VAEDDĀS 1/0
53 eld held 1
54, [Not in source] , 1
73,
75,
77,
79,
82,
83,
100,
101,
104,
108,
113,
258,
273,
285,
287,
306,
339,
395
54,
[Not in source] ; 1
385
55 [Not in source] ’ 1
55 ’?’ ?” 2
80 should’nt shouldn’t 2
92 jogī jōgī 1/0
97 Brāmaṇa Brāhmaṇa 1
105 fields field 1
105 . , 1
109 dismisssed dismissed 1
124 ” ’ 1
151 Raja Rāja 1/0
151 Raṭēmahatmaya Raṭēmahatmayā 1 / 0
165,
188, . ? 1
287
167 Rishi Ṛishi 1/0
167 ‘ “ 1
174 [Not in source] ” 1
185 After-words Afterwards 2
197 [Not in source] . 1
207 Kujja Kujija 1
225 Kinnaras Kinnarās 1/0
230 case care 1
232,
247,
265, , . 1
300,
343
240 live lives 1
240,
Hitopadesa Hitōpadesa 1/0
248
253 Kaḍmbāwa Kaḍambāwa 1
253 Puttala m Puttalam 1
256 . [Deleted] 1
272 , [Deleted] 1
273 “ [Deleted] 1
275 Rakshasī Rākshasī 1/0
282,
workpeople work-people 1
282
296 Punci-Ammā Puñci-Ammā 1/0
306 kitul Kitul 1
313 ’ ” 1
319 greul gruel 2
351 Upāsaka Upāsakā 1/0
352 Varian t Variant 1
369 Perẹlibāse Pereḷibāse 2/0
387 Gama-gāeni Gama-gāēni 1/0
390 Maccocalingae Maccocalingæ 2
390 Modogalingae Modogalingæ 2
391 Pātaliputta Pāṭaliputta 1/0
393,
; , 1
393

Abbreviations
Overview of abbreviations used.

Abbreviation Expansion
V.P. Vishnu Purāna
*** END OF THE PROJECT GUTENBERG EBOOK VILLAGE FOLK-
TALES OF CEYLON, VOLUME 1 (OF 3) ***

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!

testbankdeal.com

You might also like