100% found this document useful (2 votes)
14 views

Starting Out with C++ From Control Structures through Objects Brief Version 9th Edition Gaddis Test Bank - Read Online Or Download Now

The document provides information about accessing various test banks and solutions manuals for C++ programming and other subjects. It includes links to download resources for different editions of textbooks, specifically focusing on C++ from Control Structures through Objects by Gaddis. Additionally, it contains a series of true/false and multiple-choice questions related to arrays and vectors in C++.

Uploaded by

rinoksariyu
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)
14 views

Starting Out with C++ From Control Structures through Objects Brief Version 9th Edition Gaddis Test Bank - Read Online Or Download Now

The document provides information about accessing various test banks and solutions manuals for C++ programming and other subjects. It includes links to download resources for different editions of textbooks, specifically focusing on C++ from Control Structures through Objects by Gaddis. Additionally, it contains a series of true/false and multiple-choice questions related to arrays and vectors in C++.

Uploaded by

rinoksariyu
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/ 36

Instant TestBank Access, One Click Away – Begin at testbankfan.

com

Starting Out with C++ From Control Structures


through Objects Brief Version 9th Edition Gaddis
Test Bank

https://testbankfan.com/product/starting-out-with-c-from-
control-structures-through-objects-brief-version-9th-
edition-gaddis-test-bank/

OR CLICK BUTTON

DOWLOAD NOW

Get Instant TestBank Download – Browse at https://testbankfan.com


Recommended digital products (PDF, EPUB, MOBI) that
you can download immediately if you are interested.

Starting Out with C++ From Control Structures through


Objects Brief Version 9th Edition Gaddis Solutions Manual

https://testbankfan.com/product/starting-out-with-c-from-control-
structures-through-objects-brief-version-9th-edition-gaddis-solutions-
manual/
testbankfan.com

Starting Out with C++ From Control Structures through


Objects Brief Version 8th Edition Gaddis Test Bank

https://testbankfan.com/product/starting-out-with-c-from-control-
structures-through-objects-brief-version-8th-edition-gaddis-test-bank/

testbankfan.com

Starting Out With C++ From Control Structures Through


Objects 7th Edition Tony Gaddis Test Bank

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

testbankfan.com

Biopsychology 8th Edition Pinel Test Bank

https://testbankfan.com/product/biopsychology-8th-edition-pinel-test-
bank/

testbankfan.com
Guide to Computer Forensics and Investigations 4th Edition
Nelson Solutions Manual

https://testbankfan.com/product/guide-to-computer-forensics-and-
investigations-4th-edition-nelson-solutions-manual/

testbankfan.com

Shelly Cashman Series Microsoft Office 365 and Access 2016


Intermediate 1st Edition Pratt Test Bank

https://testbankfan.com/product/shelly-cashman-series-microsoft-
office-365-and-access-2016-intermediate-1st-edition-pratt-test-bank/

testbankfan.com

Modern Principles of Economics 3rd Edition Cowen Test Bank

https://testbankfan.com/product/modern-principles-of-economics-3rd-
edition-cowen-test-bank/

testbankfan.com

Journey of Adulthood 8th Edition Bjorklund Solutions


Manual

https://testbankfan.com/product/journey-of-adulthood-8th-edition-
bjorklund-solutions-manual/

testbankfan.com

Calculus Single Variable Canadian 8th Edition Adams


Solutions Manual

https://testbankfan.com/product/calculus-single-variable-canadian-8th-
edition-adams-solutions-manual/

testbankfan.com
Economics 4th Edition Krugman Test Bank

https://testbankfan.com/product/economics-4th-edition-krugman-test-
bank/

testbankfan.com
Starting Out with C++ from Control Structures to Objects, 9e (Gaddis)
Chapter 7 Arrays and Vectors

TRUE/FALSE

1. The amount of memory used by an array depends on the array's data type and the number of elements
in the array.

ANS: T

2. An array initialization must be all on one line.

ANS: F

3. When you pass an array as an argument to a function, the function can modify the contents of the
array.

ANS: T

4. C++ limits the number of array dimensions to two.

ANS: F

5. If you attempt to store data past an array's boundaries, it is guaranteed to cause a compiler error.

ANS: F

6. An individual array element can be processed like any other type of C++ variable.

ANS: T

7. In C++11 you cannot use a range-based for loop to modify the contents of an array unless you
declare the range variable as a reference variable.

ANS: T

8. In C++11 the range-based for loop is best used in situations where you need the element subscript for
some purpose.

ANS: F

9. Although two-dimensional arrays are a novel idea, there is no known way to pass one to a function.

ANS: F

10. Each individual element of an array can be accessed by the array name and the element subscript.
ANS: T

11. If an array is partially initialized, the uninitialized elements will be set to zero.

ANS: T

12. The following statement is a valid C++ definition:


double money[25.00];

ANS: F

13. Assume array1 and array2 are the names of two arrays. To assign the contents of array2 to
array1, you would use the following statement:
array1 = array2;

ANS: F

14. A vector object automatically expands in size to accommodate the items stored in it.

ANS: T

MULTIPLE CHOICE

1. Unlike regular variables, __________ can hold multiple values.


a. constants
b. named constants
c. arrays
d. floats
e. None of these
ANS: C

2. The individual values contained in an array are known as


a. parts
b. items
c. constants
d. elements
e. None of these
ANS: D

3. To access an array element, use the array name and the element's ___________.
a. data type
b. subscript
c. value
d. name
e. None of these
ANS: B
4. By using the same ___________ you can build relationships between data stored in two or more
arrays.
a. array name
b. data types
c. subscript
d. arguments
e. None of these
ANS: C

5. The name of an array stores the __________ of the first array element.
a. value
b. memory address
c. element number
d. data type
e. None of these
ANS: B

6. Which of the following is a valid C++ array definition?


a. int nums[0];
b. float $payments[10];
c. void numbers[5];
d. int sizes[10];
e. None of these
ANS: D

7. Which of the following is a valid C++ array definition?


a. int array[0];
b. float $payments[10.23];
c. int numbers[5.6];
d. int scores[25];
e. None of these
ANS: D

8. If you leave out the size declarator in an array definition


a. you must furnish an initialization list
b. you are not required to initialize array elements
c. all array elements default to zero values
d. your array will contain no elements
e. None of these
ANS: A

9. An array can store a group of values, but the values must be

a. the same data type


b. integers and floating-point numbers
c. integers
d. constants
e. None of these
ANS: A

10. An array's size declarator must be a __________ with a value greater than __________.

a. number, one
b. number, zero
c. constant integer expression, zero
d. variable, -1
e. None of these
ANS: C

11. Subscript numbering in C++

a. can be set at runtime


b. can begin with a value defined by the programmer
c. varies from program to program
d. begins with zero
e. None of these
ANS: D

12. Arrays must be __________ at the time they are __________.

a. sized, executed
b. re-scoped, deleted
c. initialized, declared
d. compiled, typed
e. None of these
ANS: C

13. This following statement shows an example of ___________.


int grades][ ] = {100, 90, 99, 80};
a. default arguments
b. an illegal array declaration
c. an illegal array initialization
d. implicit array sizing
e. None of these
ANS: D

14. Given the following declaration, where is the value 77 stored in the scores array?
int scores[] = {83, 62, 77, 97, 86}
a. scores[0]
b. scores[1]
c. scores[2]
d. scores[3]
e. scores[5]
ANS: C

15. An array can easily be stepped through by using a


a. a for loop
b. a reference variable
c. an array prototype
d. a null value
e. None of these
ANS: A

16. The range-based for loop in C++11 is designed to work with a built-in variable known as
a. the counter
b. the i variable
c. an iterator
d. the range variable
e. None of these
ANS: D

17. A(n) __________ can be used to specify the starting values of an array.

a. initialization list
b. array name
c. subscript
d. element
e. None of these
ANS: A

18. An array with no elements is


a. legal in C++
b. illegal in C++
c. automatically furnished with one element whose value is set to zero
d. automatically furnished with one element, the null terminator
e. None of these
ANS: B

19. It is _________ to pass an argument to a function that contains an individual array element, such as
scores[3].
a. illegal in C++11
b. legal in C++
c. not recommended by the ANSI committee
d. not good programming practice
e. None of these
ANS: B

20. What is the last legal subscript that can be used with the following array?
int values[5];
a. 0
b. 5
c. 6
d. 4
e. 1
ANS: D

21. How many elements does the following array have?


int values[1000];
a. 1000
b. 999
c. 1001
d. cannot tell from the code
ANS: A

22. To assign the contents of one array to another, you must use
a. the assignment operator with the array names
b. the equality operator with the array names
c. a loop to assign the elements of one array to the other array
d. Any of these
e. None of these
ANS: C

23. To pass an array as an argument to a function, pass the __________ of the array.
a. contents
b. size, expressed as an integer
c. name
d. value of the first element
e. None of these
ANS: C

24. The __________ is automatically appended to a character array when it is initialized with a string
constant.
a. array name
b. number of elements
c. value of the first element
d. null terminator
e. None of these
ANS: D

25. An array of string objects that will hold five names would be declared with which of the following
statements?
a. string names[5];
b. string names(5);
c. string names 5;
d. String[5] = names;
ANS: A

26. A two-dimensional array can be viewed as


a. rows and columns
b. arguments and parameters
c. increments and decrements
d. All of these
e. None of these
ANS: A

27. An element of a two-dimensional array is referred to by


a. the array name followed by the column number of the element
b. the row subscript of the element followed by the column subscript of the element
c. a comma followed by a semicolon
d. the row subscript of the element followed by the array name
e. None of these
ANS: B

28. When writing functions that accept multi-dimensional arrays as arguments, __________ must be
explicitly stated in the parameter list.
a. all dimensions
b. all but the first dimension
c. the size declarator of the first dimension
d. all element values
e. None of these
ANS: B

29. A two-dimensional array can have elements of __________ data type(s).


a. one
b. two
c. four
d. any number of
e. None of these
ANS: A

30. A two-dimensional array of characters can contain


a. strings of the same length
b. strings of different lengths
c. uninitialized elements
d. All of these
e. None of these
ANS: D

31. What will the following code display?


int numbers[] = {99, 87, 66, 55, 101};
cout << numbers[3] << endl;
a. 55
b. 66
c. 101
d. 87
ANS: A

32. What will the following code display?


int numbers[] = {99, 87, 66, 55, 101};
for (int i = 1; i < 4; i++)
cout << numbers[i] << " ";
a. 99 87 66 55 101
b. 87 66 55 101
c. 87 66 55
d. Nothing. This code has an error.
ANS: C

33. What will the following code display?


int numbers[4] = {99, 87};
cout << numbers[3] << endl;
a. 87
b. 0
c. 99
d. garbage
e. This code will not compile
ANS: B

34. What does the following code do?


const int SIZE = 5;
double x[SIZE];
for (int i = 2; i <= SIZE; i++)
{
x[i] = 0.0;
}
a. Each element in the array is initialized to 0.0.
b. Each element in the array except the first is initialized to 0.0.
c. Each element in the array except the first and last is initialized to 0.0.
d. An error will occur when the code runs.
ANS: D

35. Which statement correctly defines a vector object for holding integers?
a. vector v<int>;
b. int vector v;
c. int<vector> v;
d. vector<int> v;
ANS: D

36. Which statement correctly uses C++11 to initalize a vector of ints named n with the values 10
and 20?
a. vector n<int>(10, 20);
b. vector<int> n = {10, 20};
c. vector<int> n {10, 20};
d. int vector n ({10}, {20});
ANS: C
37. What does the following statement do?
vector<int> v(10);
a. It creates a vector object and initializes all its elements to the value 10.
b. It creates a vector object with a starting size of 10.
c. It creates a vector object and initializes the first element with the value 10.
d. It creates a vector object that can only store values of 10 or less.
ANS: B

38. What does the following statement do?


vector<int> v(10, 2);
a. It creates a vector object and initializes the first two elements with the values 10 and
2.
b. It creates a vector object with a starting size of 2 and initializes the first element with
the value 10.
c. It creates a vector object with a starting size of 10 and initializes the first element
with the value 2.
d. It creates a vector object with a starting size of 10 and initializes all the elements with
the value 2.
ANS: D

39. This vector function is used to insert an item into a vector.


a. insert_item
b. add_item
c. store
d. push_back
ANS: D

40. This vector function removes an item from a vector.


a. remove_item
b. delete_item
c. erase
d. pop_back
ANS: D

41. This vector function returns the number of elements in a vector.


a. size
b. num_elements
c. elements
d. length
ANS: A

42. This vector function returns true if the vector has no elements.
a. has_no_elements
b. null_size
c. empty
d. is_empty
ANS: C

43. What will the following C++11 code display?


vector<int> numbers {3, 5};
for (int val : numbers)
cout << val << endl;
a. 5
5
5
b. 3
3
3
3
3
c. 3
5
d. Nothing. This code has an error.
ANS: C
Random documents with unrelated
content Scribd suggests to you:
183 əkstreinjes əkstreinjəs 1
184 --- -- 2
184 — —s 1
186 Fadingnesss Fadingness 1
187 —to falsetto 6
189 de de de 3
190 —lesssness —lessness 1
194 -gun —-gun 1
194 Filementous Filamentous 1
195 ,, … 3
195 in in in 3
196 —extinguisher —-extinguisher 1
199 —-head —head 1
199 —roofed —-roofed 1
199 —-er —er 1
200 —-ly —ly 1
204 —shackles —-shackles 1
206 —-medecine —-medicine 1
207 fötifikeis’n fötifikeiš’n 1/0
212, 324,
—-ness —ness 1
361
214 cofffin coffin 1
214 opwonden opgewonden 2
215 gafe gafə 1
215 gəlenik’(l) gəlenik(’l) 2
216 —ripe —-ripe 1
219 practioner practitioner 2
219 — - 1
223 glâs’nbəri glâst’nbəri 1
224 , lof [Verwijderd] 5
224, 460,
—er —r 1
461
228 —-ess —ess 1
229 childrens’ children’s 2
231 —mare —-mare 1
234, 304 —-sman —sman 1
236 —belts — belts 1
džai(dži džainikəlodžik’l (dži
236 13
—)nikəlodžik’l —)
237 — ’ing —’ing 1
237 hagiolədzi hagiolədži 1/0
238, 346,
1.50 1,50 1
468, 499
240 —-spring —spring 1
242 Artifical Artificial 1
244 Hawaian Hawaiian 1
245 Dulness Dullness 1
251 —churchman —-churchman 1
251 —mindedness —-mindedness 1
253 roe row 1
259 pupliek publiek 1
264 —-lity —lity 1
271 inkənsiûməb’l inkənsjûməb’l 1
276 inišeit inišieit 1
286 dzâh džâh 1/0
287 dzântiŋ-kâ džântiŋ-kâ 1/0
287 dzenətiŋ dženətiŋ 1/0
287 dzerəmi džerəmi 1/0
287 dzâvis džâvis 1/0
288 —s’bark —s’ bark 1
289, 301,
[Niet in bron] ? 1
640
290 dzûdikətjuə džûdikətjuə 1/0
291 In I 1
294 medecine medicine 1
294 —mistress — mistress 1
295 kinîtəscoop kinîtəskoup 2
295 — at-arms —-at-arms 1
295 wilderniss wilderness 1
295 —me-quick —-me-quick 1
298 Labrodor Labrador 1
299 —al —l 1
302 ex— ex-— 1
302 — st —st 1
302 lôdeis’n lôdeiš’n 1/0
303 —- — 1
305 lîsh lîš 2/1
309 —d-victualler —d victualler 1
312 dissappointed disappointed 1
314 zouthout zoethout 1
320 lau lou 1
322 Lycantrope Lycanthrope 1
323 isippi issippi 1
323 ueen’s (ueen’s) 2
323 Musical) Mus(ical) 1
324 Ma(c)Kinley M(a)cKinley 3
329 —r —er 1
332, 344,
[Niet in bron] 1
344, 345
333, 388 —-ship —ship 1
334 —-y-mouthed —y-mouthed 1
336 wegmelten wegsmelten 1
340 fabriedsarbeider fabrieksarbeider 1
341 2.70 2,70 1
341 citoensap citroensap 1
341 —meat —-meat 1
346 16.20 16,20 1
350 —-cylist —-cyclist 1
353 —-alness —alness 1
354 Muntinous Mutinous 1
355 0.057 0,057 1
356 Natiness Nattiness 1
358 West.-Ind. West-Ind. 1
359 [Niet in bron] — 2
359 He ’s He’s 1
361 ’t Is It is 2
362 nondžûrin nondžûriŋ 1
364 [Niet in bron] of 3
364 —-worthy —worthy 1
364, 364 [Niet in bron] … 4
365 — —ry 2
368 verdingsbrug verbindingsbrug 3
369 of off 1
370 —hand —-hand 1
373 Ophtalmic Ophthalmic 1
375 ödzi ödži 1/0
376 l’ ’l 2
376 an — an— 1
381 Postcript Postscript 1
384 amendation emendation 1
384 palbəbiliti palpəbiliti 1
386 universisiteits universiteits 2
387 —-ed —ed 1
388 moeie mooie 1
388 aannnemen aannemen 1
392 —-cristal —-crystal 1
392 —-aboo —-a-boo 1
394 dispentaties dispensaties 1
—sietootsie- —sie-tootsie-
397 1
wootsie wootsie
398 Philantropic Philanthropic 1
399 —es —s 1
400 2.60 2,60 1
400 1.07 1,07 1
402 subst. [Verwijderd] 7
403 0.568 0,568 1
404 vast-vastgesteld vastgesteld 5
406 toejuching toejuiching 1
407 Secundary Secondary 1
408 ecstacy ecstasy 1
409 did’nt didn’t 2
410 expediton expedition 1
411 —-granate —granate 1
419 —s —rs 1
419 prižidjəri prizidjəri 1/0
420 priziûm prižûm 2/1
425 kwisttig kwistig 1
426 Prodaedeutic Propaedeutic 1
434 dit did 1
436 0.142 0,142 1
440 —rent —-rent 1
444 bloodybones bloody bones 1
452 groete groeten 1
456 would’nt wouldn’t 2
458 Reprihensive Reprehensive 1
462 jachthoud jachthond 1
465 bicyle bicycle 1
469 appél appèl 1/0
479 səl(j)ûtərəri səl(j)ûtətəri 1
480 ver-verzadiging verzadiging 4
481 seivin seiviŋ 1
481 Mississipi Mississippi 1
484 sköts skötš 1/0
487 Sdainful ’Sdainful 1
490 sedžwick sedžwik 1
494 sîres sîrəs 1
499 šidhd šîdhd 1/0
500 sərîf šərîf 1/0
500 sɐ̂ wud šɐ̂ wud 1/0
500 0.60 0,60 1
502 söt šöt 1/0
504 s hudden schudden 1
505 sick — 4
509 —led —ed 1
514 steel-trap steel trap 1
515 —like —-like 1
519 —-s-in-wine —s-in-wine 1
520 sofistik’(l) sofistik(’l) 2
520 šö sö 1/0
521 zuidwestewind zuidwestenwind 1
527 acttacked attacked 1
537 stiŋži stinži 1
544 stûdjou stjûdjou 1
545 Juliaaansche Juliaansche 1
549 immediateley immediately 1
549 —y — 1
550 —ming-up summing-up 3
550 dver over 1
550 — down —down 1
551 siûpevaiz siûpəvaiz 1
551 siûpeviž’n siûpəviž’n 1
552 sɐ̂ tsɐ̂ dž sɐ̂ tšɐ̂ dž 1/0
553 šɐ̂ f sɐ̂ f 1/0
553 sɐ̂ dz sɐ̂ dž 1/0
553 sɐ̂ dzik’l sɐ̂ džik’l 1/0
553 sɐ̂ ridzôin sɐ̂ ridžôin 1/0
554 — man swagman 4
554 Noor-Amerik. Noord-Amerik. 1
558 syndikaat syndicaat 1
562 billards billiards 1
562 .., … 1
562 talmɐdik’l talmɐdik(’l) 2
563 tapistry tapestry 1
566 teliəlodzik’l teliəlodžik’l 1/0
566 tîliəlodzik’l tîliəlodžik’l 1/0
577 ill —-d ill-—d 2
579 ’T is ’Tis 1
585 —orous —ous 2
585 —orousness —ousness 2
586 trans(l(jûs’nt transl(j)ûs’nt 2
589 traiang’l traiaŋg’l 1
589 traiangjulə traiaŋgjulə 1
589 traidaktil(ɐ)s traidaktil(ɐs) 2
591 : . 1
593 zwellling zwelling 1
595 railway shares railway-shares 1
597 ’T was ’Twas 1
597 [Niet in bron] , twîz 6
602 ɐŋk’ntestib’l ɐnk’ntestib’l 1
602 ɐŋkontrədiktəb’l ɐnkontrədiktəb’l 1
604 onderderkleeren onderkleeren 3
605 Unembarassed Unembarrassed 1
605 ɐnəseŋš’l ɐnəsenš’l 1
607 Unguiculat(ed) Unguiculate(d) 2
609 Unneccessary Unnecessary 1
616 Unproarious Unproarious 0
622 Vesicle Versicle 1
627 vautsö vautšö 1/0
633 — water at low — 7
635 parcell parcel 1
641 [Niet in bron] — 1
641 —or — or 1
641 [Niet in bron] ! 1
641 mean — mean— 1
645 —ing —ning 1
645 —ing-post —ning-post 1
648 —-ery —ery 1
648 Dit Did 1
650 108.826 108,826 1
655 91.44 91,44 1
655 . ? 1

Afkortingen

Overzicht van gebruikte afkortingen.

Afkorting Uitgeschreven
a.s. aanstaande
A.S. Angelsaksische
b.v. bijvoorbeeld
bet. betekenis
c.M. centimeter
d.i. dat is
H.B.S. Hoogere Burgerschool
K.G. kilogram
K.M. kilometer
m.v. meervoud
N.B. Nota bene
N.N. Nomen nescio
N.W. noordwesten
N.Y. New York
o.a. onder andere
R.-K. Roomsch-Katholieke
R.K. Roomsch-Katholieke
U.S.A. United States of America
Z.-Afr. Zuid-Afrikaansche
Z.O. zuidoosten
*** END OF THE PROJECT GUTENBERG EBOOK ENGELSCH
WOORDENBOEK. EERSTE DEEL: ENGELSCH-NEDERLANDSCH ***

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
Welcome to Our Bookstore - The Ultimate Destination for Book Lovers
Are you passionate about testbank and eager to explore new worlds of
knowledge? At our website, we offer a vast collection of books that
cater to every interest and age group. From classic literature to
specialized publications, self-help books, and children’s stories, we
have it all! Each book is a gateway to new adventures, helping you
expand your knowledge and nourish your soul
Experience Convenient and Enjoyable Book Shopping Our website is more
than just an online bookstore—it’s a bridge connecting readers to the
timeless values of culture and wisdom. With a sleek and user-friendly
interface and a smart search system, you can find your favorite books
quickly and easily. Enjoy special promotions, fast home delivery, and
a seamless shopping experience that saves you time and enhances your
love for reading.
Let us accompany you on the journey of exploring knowledge and
personal growth!

testbankfan.com

You might also like