100% found this document useful (4 votes)
19 views

Starting Out with Java From Control Structures through Data Structures 3rd Edition Gaddis Test Bank instant download

The document provides links to various test banks and solution manuals for textbooks, including 'Starting Out with Java From Control Structures through Data Structures' by Gaddis. It also includes multiple-choice and true/false questions related to Java programming concepts, such as classes, methods, and UML diagrams. The content appears to be aimed at students seeking additional resources for studying Java programming.

Uploaded by

kdctzovig
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 (4 votes)
19 views

Starting Out with Java From Control Structures through Data Structures 3rd Edition Gaddis Test Bank instant download

The document provides links to various test banks and solution manuals for textbooks, including 'Starting Out with Java From Control Structures through Data Structures' by Gaddis. It also includes multiple-choice and true/false questions related to Java programming concepts, such as classes, methods, and UML diagrams. The content appears to be aimed at students seeking additional resources for studying Java programming.

Uploaded by

kdctzovig
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/ 40

Starting Out with Java From Control Structures

through Data Structures 3rd Edition Gaddis Test


Bank download

https://testbankfan.com/product/starting-out-with-java-from-
control-structures-through-data-structures-3rd-edition-gaddis-
test-bank/

Explore and download more test bank or solution manual


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

Starting Out with Java From Control Structures through


Data Structures 3rd Edition Gaddis Solutions Manual

https://testbankfan.com/product/starting-out-with-java-from-control-
structures-through-data-structures-3rd-edition-gaddis-solutions-
manual/

Starting Out With Java From Control Structures Through


Data Structures 2nd Edition Gaddis Test Bank

https://testbankfan.com/product/starting-out-with-java-from-control-
structures-through-data-structures-2nd-edition-gaddis-test-bank/

Starting Out With Java From Control Structures Through


Data Structures 2nd Edition Gaddis Solutions Manual

https://testbankfan.com/product/starting-out-with-java-from-control-
structures-through-data-structures-2nd-edition-gaddis-solutions-
manual/

College Algebra 7th Edition Blitzer Solutions Manual

https://testbankfan.com/product/college-algebra-7th-edition-blitzer-
solutions-manual/
Payroll Accounting 2015 1st Edition Landin Solutions
Manual

https://testbankfan.com/product/payroll-accounting-2015-1st-edition-
landin-solutions-manual/

Chemistry 6th Edition McMurry Test Bank

https://testbankfan.com/product/chemistry-6th-edition-mcmurry-test-
bank/

Principles of Animal Physiology 3rd Edition Moyes Test


Bank

https://testbankfan.com/product/principles-of-animal-physiology-3rd-
edition-moyes-test-bank/

General Organic and Biochemistry An Applied Approach 2nd


Edition James Armstrong Solutions Manual

https://testbankfan.com/product/general-organic-and-biochemistry-an-
applied-approach-2nd-edition-james-armstrong-solutions-manual/

Psychology A Framework for Everyday Thinking 1st Edition


Lilienfeld Test Bank

https://testbankfan.com/product/psychology-a-framework-for-everyday-
thinking-1st-edition-lilienfeld-test-bank/
Social Animal 11th Edition Aronson Test Bank

https://testbankfan.com/product/social-animal-11th-edition-aronson-
test-bank/
Starting Out with Java: From Control Structures through Data Structures 3e (Gaddis and Muganda)
Chapter 6 A First Look at Classes

6.1 Multiple Choice Questions

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


A) field
B) class
C) method
D) instance
Answer: 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
Answer: 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
Answer: B

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


A) Scanner
B) Random
C) PrintWriter
D) All of the above
Answer: 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
Answer: A

6) What is stored by a reference variable?


A) A binary encoded decimal
B) A memory address
C) An object
D) A string
Answer: B

1
Copyright © 2016 Pearson Education, Inc.
7) Most programming languages that are in use today are:
A) procedural
B) logic
C) object-oriented
D) functional
Answer: 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
Answer: B

9) A UML diagram does not contain:


A) the class name
B) the method names
C) the field names
D) object names
Answer: 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
Answer: 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.
Answer: D

2
Copyright © 2016 Pearson Education, Inc.
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
Answer: 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
Answer: D

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


A) instance variables
B) instance methods
C) public methods
D) private methods
Answer: 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
Answer: 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
Answer: 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";
Answer: A

3
Copyright © 2016 Pearson Education, Inc.
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
Answer: 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.printf("Final order amount = $%,.2f\n",
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.
Answer: D

4
Copyright © 2016 Pearson Education, Inc.
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
Answer: C

21) This refers to the combining of data and code into a single object.
A) Data hiding
B) Abstraction
C) Object
D) Encapsulation
Answer: D

22) Another term for an object of a class is:


A) access specifier
B) instance
C) member
D) method
Answer: 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
Answer: 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.
Answer: D

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


A) methods private
B) fields private
C) fields public
D) fields and methods public
Answer: B

5
Copyright © 2016 Pearson Education, Inc.
26) After the header, the body of the method appears inside a set of:
A) brackets, []
B) parentheses, ()
C) braces, {}
D) double quotes, ""
Answer: C

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


A) *
B) #
C) -
D) +
Answer: C

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


A) /
B) @
C) -
D) +
Answer: 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
Answer: 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
Answer: 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
C) the values for each field
D) the method names
Answer: B

6
Copyright © 2016 Pearson Education, Inc.
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.
Answer: 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
Answer: 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
Answer: 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
Answer: C

7
Copyright © 2016 Pearson Education, Inc.
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)
{
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.printf("Final order amount = $%,.2f\n",
finalAmount);
}
}
A) 528.00
B) 580.00
C) 522.00
D) There is no value because the object order has not been created.
Answer: C

37) A class's responsibilities include:


A) the things a class is responsible for doing
B) the things a class is responsible for knowing
C) both A and B
D) neither A nor B
Answer: C

8
Copyright © 2016 Pearson Education, Inc.
38) Instance methods do not have this key word in their headers:
A) public
B) static
C) private
D) protected
Answer: B

39) Which of the following is NOT involved in finding the classes when developing an object-oriented
application?
A) Describe the problem domain.
B) Identify all the nouns.
C) Write the code.
D) Refine the list of nouns to include only those that are relevant to the problem.
Answer: C

40) This is a group of related classes.


A) archive
B) package
C) collection
D) attachment
Answer: B

41) Quite often you have to use this statement to make a group of classes available to a program.
A) import
B) use
C) link
D) assume
Answer: A

42) Look at the following statement.

import java.util.Scanner;

This is an example of
A) a wildcard import
B) an explicit import
C) unconditional import
D) conditional import
Answer: B

9
Copyright © 2016 Pearson Education, Inc.
43) Look at the following statement.

import java.util.*;

This is an example of:


A) a wildcard import
B) an explicit import
C) unconditional import
D) conditional import
Answer: A

44) The following package is automatically imported into all Java programs.
A) java.java
B) java.default
C) java.util
D) java.lang
Answer: D

6.2 True/False Questions

1) An object can store data.


Answer: TRUE

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


Answer: TRUE

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


Answer: TRUE

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.
Answer: TRUE

5) Instance methods should be declared static.


Answer: FALSE

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


Answer: TRUE

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

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

9) A method that gets a value from a class's field but does not change it is known as a mutator method.
Answer: FALSE
10
Copyright © 2016 Pearson Education, Inc.
Visit https://testbankbell.com
now to explore a rich
collection of testbank,
solution manual and enjoy
exciting offers!
10) Instance methods do not have the key word static in their headers.
Answer: TRUE

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

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

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

14) The java.lang package is automatically imported into all Java programs.
Answer: TRUE

11
Copyright © 2016 Pearson Education, Inc.
Other documents randomly have
different content
make into a huge damson and apple tart that we shall eat to-
morrow.
The old gardener then takes the longest of all the ladders and props
it up against the quince tree, for the quince is the highest of all the
trees in the orchard. One of the maids climbs half-way up below the
gardener and he gathers the green and golden quinces and passes
them to her and she passes them to the kitchenmaid, who stands
ready on the ground to put them into the basket. And the Imp and
the Elf sit in their apple tree and eat apples and laugh and then
pretend that they are two wise little owls and call tuwhit tuwhoo,
tuwhit tuwhoo, till I take up a walking-stick and pretend to shoot
them, and then they throw apples at me and we have a game of
catch with the great round red-cheeked balls. Oh, it is a jolly time,
the apple-gathering, as the Imp and the Elf would tell you.
About now the fairy Godmother works her miracle for Autumn. We
look up to the moors and find them no longer dark and dull for the
green brackens have been turned a gorgeous orange by the early
frosts in the night-times. And when we look over the farm land to
the woods we find the trees no longer green, and the Elf says, "Do
you see Ogre, the Godmother has crowned Autumn now?" and sure
enough, for the leaves are turned like the brackens into a glory of
splendid colours. And then we go and picnic in the golden woods,
and sometimes when the sun is hot we could almost fancy it was
summer if it were not for the colour. We picnic under the trees and
do our best to get a sight of a squirrel, and watch the leaves blowing
down from the trees like ruddy golden rain. Once, before we went to
the woods, I asked the Imp and the Elf which leaves fall first, the
leaves on the topmost branches of the trees or the leaves on the low
boughs, The Imp said the top ones, the Elf said the low, and the Elf
was right, although I do not think that either of them really knew.
Usually the Imp is right, and when I said the low leaves fell the first,
he said, "But isn't the wind stronger up above, and don't the high
leaves get blown hardest?" Yes, one would think that the high leaves
would be the first to drop. Can you guess why they are not? Shall I
tell you? Well, you just remember in Spring how the first buds to
open were the low ones. Then you will see why they are the first to
fall. They are the oldest. When we came to the woods we found that
this was just what was happening. All the leaves at the bottom fall,
and sometimes many of the trees in the woods kept little plumes of
leaves on their topmost twigs after all the others had gone fluttering
down the wind.
I am only going to remind you of three more things that belong to
Autumn. And one of them is pretty, and one of them is exciting, and
one of them is a little sad.
The first is a garden happening. Close under the house we have a
broad bed, and for some time before the real Autumn it is full of a
very tall plant with lots and lots of narrow dark green leaves. And
after a little it is covered with buds, rather like daisy buds only
bigger. And then one day the Imp leans out of the window and gives
a sudden wriggle. "Come and hold on to my legs, Ogre, but you
must not look." And I hold on to his round fat legs and keep my eyes
the other way. And he leans farther and farther out of the window,
puffing and panting for breath, until he can reach what he wants.
And then the fat legs kick backwards, and I pull him in, and when he
is quite in he says, "The first," and there in his hand is a beautiful
flower like a purple daisy with a golden middle to it. And sure
enough it is the first Michaelmas daisy. That is the really most
autumnal of all flowers, just as the primrose is the most special
flower of Spring.
The second of the three happenings belongs to the moorland. Up on
the high moors, where there is a broad flat place with a little marshy
pond in it, the Elf and the Imp have a few very special friends. There
are the curlews, with their speckly brown bodies and long thin beaks
and whistling screams, and the grouse who make a noise like an old
clock running down in a hurry when they leap suddenly into the air.
But these are not the favourites. The birds that the Imp and the Elf
love best of all on the moorland have a beautiful crest on the tops of
their heads, and they are clothed in white and dark green that looks
like black from a little way off. They cry pe-e-e-e-wi, pe-e-e-e-e-wi,
and the Imp cries "peewit" back to them. Some people call them
plovers, and some people call them lapwings, because of the way
they fly, but we always call them the "peewits." All through the
spring and summer they are there, and it is great fun to watch
them, for they love to fly into the air and turn somersaults, and
throw themselves about as if they were in a circus, just for fun, you
know, and because it is jolly to be alive.
But in the Autumn many of the birds do strange things. Some, like
the swallows and martins, fly far away over the seas to warmer
countries for the winter. Some only come here to spend the winter
months, living in cooler countries through the summer. And the
peewits, when Autumn comes, collect in tremendous flocks. All the
friends and relations of our peewits on the moor seem to come and
join them, and then they move away all over the country from place
to place, wherever they can get food. When we go up to the moor
just at this time, we see not two or three or half-a-dozen peewits,
but crowds and crowds of them flying low, and strutting on the
ground, with their crests high up over their heads.
The last of the three happenings is the saddest. Do you remember
the haymaking and what the hay was carted away for? You
remember how the farmers stored it to feed the cows in winter. At
the end of the Autumn comes an evening when the cows are driven
home for milking, and do not go back again. The fields are left
empty all the Winter, while the red and white cows are fastened up
in the byre (a byre is a nice name for a cowshed) to eat the hay.
When that day comes the Imp and the Elf always walk home from
the fields with the cows, and pat them and say good-bye to them at
the door of the byre, and promise to come and visit them during the
Winter. And then they come home to the house, and knock sadly on
the door of my study, and come in and say, "Ogre, the cows have
been shut up for the Winter, and nurse says we are to begin our
thicker things to-morrow." And then we are all sad, for that means
Winter. And I have to tell all sorts of jolly stories of King Frost and
the Snow Queen before we are cheerful enough to go to bed.
IV

WINTER
In Winter, real Winter, we get up with our teeth chattering to tell
each other how cold it is, and we find the water frozen in the basin,
and the soap frozen to the soap-dish, and the sponge frozen hard.
That is what Winter is like indoors, and it is not very nice. But there
is a nice indoor Winter too, when the fire is burning in the study
grate with logs on it from old broken ships, making blue flames that
lick about the chimney-hole. The Imp and the Elf plant cushions on
the floor, and I sit in a big chair and read stories to them out of a
book or tell them out of my head, making them up as I go along.
That is the greatest fun, because I do not know any better than the
children what is going to happen, whether the green pigmy or the
blue will win in the battle in the water lily, or whether the little boy
with scarlet shoes will be eaten by the giant, or whether he will
make friends with him and be asked to stop to tea. We can make
the stories do just what we want, be happy if we are happy, or full
of scrapes if we are feeling naughty.
When we are in the middle of stories like this, we hear a tremendous
screaming, screaming, screaming outside, and a white cloud passes
the window with a great, shrill shriek, and we all jump up crying,
"The gulls, the gulls!"
And in the meadow and in the garden and flying in the air,
screaming and laughing with their weird voices, are hundreds of
seagulls, blown inland from the sea, bringing wild weather with
them. You know the place where we live is only a few miles from the
sea, where it runs up into the land in a broad, sandy bay that ends
in wide marshes. There are seagulls in the bay all the year round,
and we sometimes see them in the fields in Summer before the
storms reach us from the west. But in Winter when the cold and
windy weather is coming, they fly in great flocks like clouds of huge
snow-flakes, and we watch them from the window and wonder how
soon the storm will follow them. And the next day or the day after,
or sometimes the very day when they come, the air is white again,
this time with driving snow. It comes flying past the windows, to be
whirled up high by the gale and dropped again till we see the
ground speckled with white, and then white everywhere except close
round the big tree trunks. Even the branches of the trees are heaped
with snow, so they look like white boughs with black shadows
beneath them.
It snows all day and all night, and when our eyes are tired of looking
at the shining dazzling white, we come away from the window and
sit down by the fire, and talk about it, and think of children long ago,
who used to tell each other, when it was snowing, that geese were
being plucked in Heaven.
The Imp and the Elf put the matter another way. The Imp says, "It's
old King Frost freezing the rain, isn't it, Ogre?" I say "yes." And the
Elf goes on, "He does it because he wants to run about and play
without hurting the poor little plants. He knows that he is so cold
that they would die, like the children in the story book, if he danced
about on top of them, without covering them with a blanket So he
just freezes the rain into a big cosy white blanket for them and lays
It gently down."
Presently, after we have been talking and telling stories for a little,
the Imp cries out, "Ogre, Ogre, we have forgotten all about the
cocoanut," and the Elf shouts, "Oh yes, the cocoanut," and away
they fly, leaving the door open and a horrible draught in the room.
But soon they run back again, with a saw and a gimlet, and a round,
hard, hairy cocoanut. We bore a few holes with the gimlet, to let the
cocoanut milk run out. The Imp likes cocoanut milk, but the Elf hates
it, and says it is just like medicine. Then comes the difficult part. I
have to hold the cocoanut steady on the edge of a chair, and saw
away at it, all round the end, while the Imp and the Elf stand
watching, till the hard shell is cut through. Then we knock the end
off and the cocoanut is ready. Ready for what, you want to know?
Look out of the window and then you will understand. All the ground
is covered with snow, and the poor birds are finding it difficult to find
their food. The Imp and the Elf, who love all live things, and the
birds above all, could tell you a little about that, for every winter day,
as soon as breakfast is over, they collect all the scraps off
everybody's plates, and the crumbs off the bread-board, and throw a
great bowl of food out on the snowy lawn. And then there is a fine
clutter and a fuss. Starlings, and jackdaws, and sparrows, and
blackbirds, and thrushes, and sometimes rooks, and once, one
exciting day, a couple of magpies, all squabble and fight for the
food, and of course the sparrows get the best of it, because though
they are so small they are the cheekiest little birds that ever are.
When all the food is done the birds fly away, and leave the snow
covered with the marks of their feet, like very delicate tracery, or like
that piece of embroidery that the Elf is trying to do for a Christmas
present, when she is not busy with something else.
Well, well, but still you have not told us what you want to do with
the cocoanut. Wait just a minute, just half a minute, while I tell you
about the robin. Little Mr. Redbreast does not let us see much of
himself in summer, when he is off to the hedges and the hazel
woods, having as gay a time as a happy little bird knows how to
enjoy. But he is a lazy small gentleman, and as soon as the cold
weather comes, he flies back to the houses where he has a chance
of scraps. He even flies in at the pantry window and chirps at the
cook till she gives him some food.
There are some other little birds just like the robin in this and these
are the tits. In the Summer we can see them in the woods if we go
to look for them, but they do not trouble about repaying our call;
they do not come to our gardens very often. But when Winter comes
things are on quite a different footing. They are very fond of suet or
fat or the white inside of a cocoanut, and as soon as the snow
comes so do they, looking for their food. We tie the cocoanut up
with string and hang it outside the study window from a big nail,
and before it has been there very long there is a fluttering of wings
and a little blue-capped bird with a green coat, blue splashes on his
wings, and a golden waistcoat, perches on the top of it. He puts his
head first on this side and then on that, and then he nimbly hops to
the end of the cocoanut, just above the hole, bends over, and peeps
in. He flutters off into the air and perches again, this time in the
mouth of the hole; and then suddenly he plunges his head in and
has a good peck at the juicy white stuff inside. Presently another
blue tit comes flying, and then another. They perch on the top of the
cocoanut and quarrel and flap about till the first tit has finished, and
then they both try to get into the hole together and find that it is not
big enough. We all watch them and would like to clap our hands at
the performance but dare not for fear of frightening them.
At the beginning of the Winter the tits are very shy, but later on, if
the window is open, they often alight on the window-sill and have a
good look about the room when they have had their turn at the
cocoanut and are waiting till the others have done to have a second
peck.
I think all the Seasons are jolly in their own way, and perhaps it is a
good thing that they are all so different. Do you remember the
Autumn fairy story? Well the Seasons really are just like a family of
sisters, and we should find them very dull if they were all exactly the
same. After the snowstorms, when we go out together, things are
quite different, and we are quite different. The Imp and the Elf wear
red woolly caps instead of sunbonnet and straw hat. They wear
thick, fluffy coats and piles of things underneath them, and thick
furry gloves. Why, the Elf carries a muff just like any grown-up. And
the ground has changed as much as they. It is all white with snow,
so that it is difficult to believe that the hayfield where we played in
Summer is really the same place. We put on our thickest boots, and
they go crunch, crunch in the crisp snow. And we gather the snow in
our hands and make snowballs and throw them at each other. And
then we make a giant snowball, The Imp makes the biggest
snowball he can in his hands and then puts it on the ground and
rolls it about. Everywhere it rolls the snow clings to it, and it gets
bigger and bigger till at last it is nearly as big as the Imp himself and
it takes all three of us to roll it. We roll another and put it on the top
of the first, and then a smaller one and put it on the top of that, and
then we roll snow into long lumps for arms, and there we have our
snow-man. We make eyes for him with little blobs of earth, and a
nose and a mouth, and in his mouth we always put one of my pipes
to make the poor fellow comfortable.
When we are tired of making snowballs and snow-men we go out of
the garden and across the road and along the field paths to the
wood, tramping through the shining snow. And we drag something
behind us: can you guess what it is? Do you remember in the fairy
stories about the people who lived near the forests? When the
winter came they used to shiver and rub their cold hands and go to
the forests for firewood. And as there were wolves in the forest they
used to take a sledge so that they could carry the sticks quickly back
again before the wolves could catch them. Well, when we go to the
woods in winter we pretend that we are going to the forests for
firewood and we drag the Imp's big wooden sledge behind us, and
keep a bright look-out for wolves, though, of course, there are no
wolves in England now. All the same it is very good fun to pretend
that there are.
A jolly time we have on the way to the woods. The hedges are all
bright with hips and haws, coral colour and scarlet, the fruits of the
wild rose and the hawthorn. They glitter like crimson jewels in the
white hedges, where the birds are eating them as fast as they can.
The sunlight shimmers on the snow of the fields and the snow of the
woods, and the broad white shining slopes of the distant hills. And,
of course, all the way we watch carefully for the tracks of the
wolves. We do not find them, but we find the tracks of birds that
have gone hop, hop, hop, leaving each time the print of their feet in
the snow, and the little paddy tracks of the rabbits, and the flap
tracks made by the rooks' wings as they flag up from the ground.
For a long time the road is all up hill, but then we come to a deep
slope down, when the Elf and the Imp sit on the sledge, and I give
them a push off, and away they slide, quicker and quicker all the
way to the bottom; and then, instead of going straight on to the
wood, they drag the sledge up and go down again, and then once
more, and then we all go down together and sometimes end in a
heap on the snow.

When we leave the sliding hill we go up into the woods, and


sometimes really do find the tracks of a big four-footed animal. The
Imp and the Elf cry, "Wolf, wolf," but we know that really it is not a
wolf, but a big red fox with a bushy tail, who has passed that way in
the night, perhaps after stealing a chicken from the yard of one of
the farms.
The woods are like fairy woods now, just as if the fairies had hung
them with glittering jewels, for they are covered with snow and
frost, and icicles, too, when the snow on the boughs has begun to
melt and then been frozen again. We hear crunch, crash, crash,
crunch, and then the woods are very still for a moment, and then we
hear a great heavy crunch, and perhaps see a mass of caked snow
tumble off a branch to the ground.
If it is near Chrismas time we do not bother about looking for sticks
and dead branches. We walk straight along the edge of the wood to
where three stout holly bushes grow close together. You cannot
think how pretty they look, with their dark green leaves and red
berries, and the white snow resting on the leaves, and you just
cannot think how prickled we get in picking the branches of holly.
But we think of Christmas fun, and do not mind the prickles much,
while the Elf sings:
"Get the pale mistletoe,
And the red holly.
Hang them up,
Hang them up,
We will be jolly.

"Kiss under mistletoe,


Laugh under holly,
Hang them up,
Hang them up,
We will be jolly."

The mistletoe is not so easy to find as the holly. I remember once


after we had piled the sledge with holly and dragged it home, the Elf
pouted her lips and looked very unhappy and said, "There isn't a
mistletoe tree anywhere in all the world, not even in the Long Wood.
We shan't have any mistletoe for Christmas." Things really did look
rather sad, so I sent her off to ask the old gardener about it, and the
Imp went too. In about an hour they came running back all smiles
and happiness, and with their arms as full as they could be. I
shouted out to them as they went past the window, "Where did you
get all that mistletoe?" And they laughed and said that it grew on
the apple tree in the orchard, and that the old gardener had cut it
for them, and promised to let them bob for apples in a bucket in the
wood-shed if they were quick back. That is really and truly the way
the mistletoe grows. It is just like a baby that will not leave its
nurse. It pines away and will do nothing by itself, so it has to be
stuck into another tree to grow there more happily.
But you know the snow does not last all the Winter. After Christmas,
and before, there are weeks without any snow at all, and then we
find it rather sorrowful to walk over the bleak bare fields. But the
hips and haws are bright in the hedges, and whenever there is
sunshine everything is made jolly. And then, too, it is great fun to
watch them ploughing the land ready for next year's corn.
"Old Susan isn't pulling hay carts now," says the Elf, and we look up
and there is Susan side by side with another of the farm horses
harnessed to a plough. And a boy, a big strong boy, holds the
handles of the plough and the reins at the same time, and shouts to
the horses, and they cross the field slowly, tramp, tramp, tramp, and
the rough earth is turned over by the steel ploughshare, all dark and
earthy, ready for the seed. In the middle of one of the fields is a
special friend of the Imp's. He wears a battered hat and an old
green coat, and a red worsted scarf that flaps in the wind. He is
made of two sticks, one stuck in the earth and one nailed across it,
and he is called Sir John Scarecrow, because it is his duty to scare
the birds from the field. But we have laughed many a day to see the
rooks perched on his broken hat and tattered arms.
When we think of sowing seeds we think of Spring with the new
corn green on the red ground, and when we think of Spring we think
of Summer, when it is tall and wavy in the wind, and when we think
of Summer we think of Autumn when the corn is golden and cut,
and then, why, then we come to Winter again. And now the Imp and
the Elf say that I have told you enough about our Seasons, and that
I must tell them fairy stories till it is time for them to go to bed. So
here is good-bye to you and a piece of advice. If you have got any
grown-ups near at hand and it is not quite bedtime, if I were you I
would ask them to tell you stories, too.
*** END OF THE PROJECT GUTENBERG EBOOK THE CHILD'S BOOK
OF THE SEASONS ***

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

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


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

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


personal growth every day!

testbankfan.com

You might also like