C++ How to Program 10th Edition Deitel Test Bank download
C++ How to Program 10th Edition Deitel Test Bank download
install download
https://testbankfan.com/product/c-how-to-program-10th-edition-
deitel-test-bank/
https://testbankfan.com/product/c-how-to-program-10th-edition-
deitel-solutions-manual/
https://testbankfan.com/product/c-how-to-program-7th-edition-
deitel-test-bank/
https://testbankfan.com/product/c-how-to-program-7th-edition-
deitel-solutions-manual/
https://testbankfan.com/product/visual-c-how-to-program-6th-
edition-deitel-test-bank/
Visual C How to Program 6th Edition Deitel Test Bank
https://testbankfan.com/product/visual-c-how-to-program-6th-
edition-deitel-test-bank-2/
https://testbankfan.com/product/visual-c-2012-how-to-program-5th-
edition-deitel-test-bank/
https://testbankfan.com/product/visual-c-how-to-program-6th-
edition-deitel-solutions-manual/
https://testbankfan.com/product/c-how-to-program-early-objects-
version-9th-edition-deitel-test-bank/
https://testbankfan.com/product/c-how-to-program-late-objects-
version-7th-edition-deitel-test-bank/
C++ How to Program, 10/e Multiple Choice Test Bank 1 of 7
Section 9.2 Time Class Case Study: Separating Interface from Implementation
9.2 Q1: Member access specifiers (public and private) can appear:
a. In any order and multiple times.
b. In any order (public first or private first) but not multiple times.
c. In any order and multiple times, if they have brackets separating each type.
d. Outside a class definition.
ANS: a. In any order and multiple times.
9.2 Q2: Which of the following preprocessor directives does not constitute part of the preprocessor wrapper?
a. #define
b. #endif
c. #ifndef
d. #include
ANS: d. #include
9.2 Q4: Parameterized stream manipulator setfill specifies the fill character that’s displayed when an output is
displayed in a field wider than the number of characters or digits in the output. The effect of setfill applies:
a. Only to the current value being displayed.
b. Only to outputs displayed in the current statement.
c. Until explicitly set to a different setting.
d. Until the output buffer is flushed.
ANS: c. Until explicitly set to a different setting.
9.2 Q6: A class’s functions can throw exceptions, such as __________to indicate invalid data.
a. invalid_data
b. bad_data
c. invalid_argument
d. bad_argument
ANS: c. invalid_argument
© Copyright 1992-2017 by Deitel & Associates, Inc. and Pearson Education, Inc. All Rights Reserved.
C++ How to Program, 10/e Multiple Choice Test Bank 2 of 7
9.3 Q1: Which of the following statements is false (assume we're referring to class Time)?
a.Often a class’s interface and implementation will be created and compiled by one programmer and used by a
separate programmer who implements the client code that uses the class.
b. To hide the class’s member-function implementation details, the class-implementation programmer would
provide the client-code programmer with the header Time.h (which specifies the class’s interface and data
members) and the Time object code (i.e., the machine-code instructions that represent Time’s member functions).
c. The client-code programmer is not given Time.cpp, so the client remains unaware of how Time’s member
functions are implemented.
d. The client-code programmer needs to know only Time’s interface to use the class and must be able to link its
object code.
ANS: a. A class’s interface and implementation must be created and compiled the programmer who
implements the client code that uses the class. Actually, often a class’s interface and implementation will be
created and compiled by one programmer and used by a separate programmer who implements the client
code that uses the class.
9.3 Q2: Which of the following statements is false (ssume we're referring to class Time)?
a. Since the interface of the class is part of the class definition in the Time.h header, the client-code programmer
must have access to this file and must #include it in the client’s source-code file.
b. When the client code is compiled, the compiler uses the class definition in Time.h to ensure that the main
function creates and manipulates objects of class Time correctly.
c. The linker’s output is the executable Time application that users can execute to create and manipulate a Time
object.
d. Compilers and IDEs typically invoke the linker for you after compiling your code.
ANS: d. Compilers and IDEs typically invoke the compiler for you after linking your code. Actually,
compilers and IDEs typically invoke the linker for you after compiling your code.
9.4 Q2: A class-scope variable hidden by a block-scope variable can be accessed by preceding the variable name
with the class name followed by:
a. ::
b. :
c. .
d. ->
ANS: a. ::
9.5 Q1: The type of function a client would use to check the balance of a bank account would be:
a. A utility function.
b. A predicate function.
c. An access function.
d. A constructor.
ANS: c. an access function.
© Copyright 1992-2017 by Deitel & Associates, Inc. and Pearson Education, Inc. All Rights Reserved.
C++ How to Program, 10/e Multiple Choice Test Bank 3 of 7
Section 9.6 Time Class Case Study: Constructors with Default Arguments
9.6 Q2: If a member function of a class already provides all or part of the functionality required by a constructor or
another member function then:
a. Copy and paste that member function’s code into this constructor or member function.
b. Call that member function from this constructor or member function.
c. That member function is unnecessary.
d. This constructor or member function is unnecessary.
ANS: b. Call that member function from this constructor or member function.
9.6 Q3[C++11]: Assuming the following constructor is provided for class Time
9.7 Q1: Which of the following is not true of a constructor and destructor of the same class?
a. They both have the same name aside from the tilde ( ~) character.
b. They are both usually called once per object created .
c. They both are able to have default arguments.
d. Both are called automatically, even if they are not explicitly defined in the class .
ANS: c. They both are able to have default arguments.
© Copyright 1992-2017 by Deitel & Associates, Inc. and Pearson Education, Inc. All Rights Reserved.
C++ How to Program, 10/e Multiple Choice Test Bank 4 of 7
class CreateDestroy
{
public:
CreateDestroy() {cout << "constructor called, ";}
~CreateDestroy() {cout << "destructor called, ";}
};
int main()
{
CreateDestroy c1;
CreateDestroy c2;
return 0;
}
© Copyright 1992-2017 by Deitel & Associates, Inc. and Pearson Education, Inc. All Rights Reserved.
C++ How to Program, 10/e Multiple Choice Test Bank 5 of 7
class CreateDestroy
{
public:
CreateDestroy() {cout << "constructor called, ";}
~CreateDestroy() {cout << "destructor called, ";}
};
int main()
{
for (int i = 1; i <= 2; ++i) {
CreateDestroy cd;
}
return 0;
}
Section 9.9 Time Class Case Study: A Subtle Trap—Returning a Reference to a private Data Member
9.9 Q2: A client changing the values of private data members is:
a. Only possible by calling private member functions.
b. Possible using public functions and references.
c. Never possible.
d. Only possible if the private variables are not declared inside the class.
ANS: b. Possible using public functions and references.
© Copyright 1992-2017 by Deitel & Associates, Inc. and Pearson Education, Inc. All Rights Reserved.
C++ How to Program, 10/e Multiple Choice Test Bank 6 of 7
9.11 Q1: Which of the following statements will not produce a syntax error?
e. Defining a const member function that modifies a data member of the object.
f. Invoking a non-const member function on a const object.
g. Declaring an object to be const.
h. Declaring a constructor to be const.
ANS c. Declaring an object to be const.
Increment::Increment(int c, int i)
: increment (i)
{
count = c;
}
does not cause any compilation errors. This tells you that:
a. count must be a non-const variable.
b. count must be a const variable.
c. increment must be a non-const variable.
d. increment must be a const variable.
ANS a. count must be a non-const variable.
9.11 Q1: When composition (one object having another object as a member) is used:
a. The host object is constructed first and then the member objects are placed into it.
b. Member objects are constructed first, in the order they appear in the host constructor’s initializer list.
c. Member objects are constructed first, in the order they are declared in the host’s class.
d. Member objects are destructed last, in the order they are declared in the host’s class.
ANS c. Member objects are constructed first, in the order they are declared in the host’s class.
© Copyright 1992-2017 by Deitel & Associates, Inc. and Pearson Education, Inc. All Rights Reserved.
C++ How to Program, 10/e Multiple Choice Test Bank 7 of 7
9.13 Q2: Which of the following statements about friend functions and friend classes is false?
a. A class can either grant friendship to or take friendship from another class using the friend keyword.
b. A friend declaration can appear anywhere in a class definition.
c. A friend of a class can access all of its private data member and member functions.
d. The friendship relationship is neither symmetric nor transitive.
ANS a. A class can either grant friendship to or take friendship from another class using the friend
keyword.
9.14 Q1: For a non-constant member function of class Test, the this pointer has type:
a. const Test *
b. Test * const
c. Test const *
d. const Test * const
ANS: b. Test * const
9.14 Q2: Inside a function definition for a member function of an object with data member x, which of the following
is not equivalent to this->x:
a. *this.x
b. (*this).x
c. x
d. None of the above are equivalent.
ANS: a. *this.x
9.14 Q3: Assume that t is an object of class Test, which has member functions a(), b(), c() and d(). If the
functions a(), b() and c() all return references to an object of class Test (using the dereferenced this pointer)
and function d() returns void, which of the following statements will not produce a syntax error:
a. t.a().b().d();
b. a().b().t;
c. t.d().c();
d. t.a().t.d();
ANS: a. t.a().b().d();
9.15 Q1: If Americans are objects of the same class, which of the following attributes would most likely be
represented by a static variable of that class?
a. Age.
b. The President.
c. Place of birth.
d. Favorite food.
ANS: b. The President.
© Copyright 1992-2017 by Deitel & Associates, Inc. and Pearson Education, Inc. All Rights Reserved.
Exploring the Variety of Random
Documents with Different Content
Such floral devices do not now rank as votive gifts. They are merely
decorations. The custom may have originated in the Roman Fontinalia. At
any rate it had at one time a corresponding object. The Fontinalia formed an
annual flower-festival in honour of the nymphs inhabiting springs. Joyous
bands visited the fountains, crowned them with boughs, and threw nosegays
into their sparkling water. The parallelism between the Roman and the
English Fontinalia is too well marked to be overlooked. In Derbyshire and
Staffordshire the ceremony of well-dressing is usually observed on
Ascension Day. In more than one instance the festival has attracted to itself
various old English sports commonly associated with May Day. Among
these may be mentioned May-pole and Morris-dancing and crowning the
May-queen.
In all ages much attention has been given to the weather, with special
reference to its bearings on human well-being. As Mr. R. Inwards truly
observes, in his “Weather-lore,” “From the earliest times hunters,
shepherds, sailors, and tillers of the earth have from sheer necessity been
led to study the teachings of the winds, the waves, the clouds, and a
hundred other objects from which the signs of coming changes in the state
of the air might be foretold. The weather-wise amongst these primitive
people would be naturally the most prosperous, and others would soon
acquire the coveted foresight by a closer observance of the same objects
from which their successful rivals guessed the proper time to provide
against a storm, or reckoned on the prospects of the coming crops.” Hence,
naturally enough, the weather has an important place in folklore. Various
prognostications concerning it have been drawn from sun and moon, from
animals and flowers; while certain meteorological phenomena have, in their
turn, been regarded as prophetic of mundane events. Thus, in the
astrological treatise entitled “The Knowledge of Things Unknown,” we read
that “Thunder in January signifieth the same year great winds, plentiful of
corn and cattle peradventure; in February, many rich men shall die in great
sickness; in March, great winds, plenty of corn, and debate amongst people;
in April, be fruitful and merry with the death of wicked men;” and so on
through the other months of the year. One can easily understand why
thunder should be counted peculiarly ominous. The effects produced on the
mind by its mysterious noise, and on the nerves by the electricity in the air,
are apt to lead superstitious people to expect strange events. Particular
notice was taken of the weather on certain ecclesiastical festivals, and
omens were drawn from its condition. Thus, from “The Husbandman’s
Practice,” we learn that “The wise and cunning masters in astrology have
found that man may see and mark the weather of the holy Christmas night,
how the whole year after shall be in his making and doing, and they shall
speak on this wise. When on the Christmas night and evening it is very fair
and clear weather, and is without wind and without rain, then it is a token
that this year will be plenty of wine and fruit. But if the contrariwise, foul
weather and windy, so shall it be very scant of wine and fruit. But if the
wind arise at the rising of the sun, then it betokeneth great dearth among
beasts and cattle this year. But if the wind arise at the going down of the
same, then it signifieth death to come among kings and other great lords.”
We do not suppose that anyone nowadays attends to such Yule-tide
auguries, but there are not wanting those who have a lingering belief in the
power of Candlemas and St. Swithin’s Day to foretell the sort of weather to
be expected in the immediate future.
When the wind was to be allayed the rag was dried. About 1670 an attempt
was made to drain some two thousand acres of land belonging to the estate
of Dun in Forfarshire. The Dronner’s, i.e., Drainer’s Dyke—remains of
which are still to be seen behind the Montrose Infirmary—was built in
connection with the scheme. But the work was destroyed by a terrible
storm, caused, it was believed, by a certain Meggie Cowie—the last to be
burned for witchcraft in the district. About eighty years before, a notable
witch-trial in the time of James VI. had to do with the raising of a storm. A
certain woman, Agnes Sampson, residing in Haddingtonshire, confessed
that she belonged to a company of two hundred witches, and that they were
all in the habit of sailing along the coast in sieves to meet the devil at the
kirk of North Berwick. After one of these interviews the woman took a cat
and christened it, and, after fixing to it parts of a dead man’s body, threw
the creature into the sea in presence of the other witches. The king, who was
then returning from Denmark with his bride, was delayed by contrary
winds, and such a tempest arose in the Firth of Forth that a vessel,
containing valuable gifts for the queen on her arrival, sank between
Burntisland and Leith. The Rev. T. F. Thiselton Dyer makes the suggestion
in his “Folklore of Shakespeare,” that it was probably to these contrary
winds that the author of “Macbeth” alludes when he makes the witch say—
Even down to the end of last century, and probably later, some well-
educated people believed that the devil had the power of raising the wind.
The phrase, the prince of the power of the air, applied to him in Scripture,
was interpreted in a literal way. “The Diary of the Rev. John Mill,” minister
in Shetland from 1740 till 1803, bears witness to such a belief. In his
introduction to the work, the editor, Mr. Gilbert Goudie, tells us: “He (Mill)
was often heard talking aloud with his (to others) unseen foe; but those who
heard him declared that he spoke in an unknown tongue, presumably
Hebrew. After one of these encounters the worthy man was heard muttering,
‘Well, let him do his worst; the wind aye in my face will not hurt me.’ This
was in response to a threat of the devil, that wherever he (Mill) went, he
(Satan) should be a-blowing ‘wind in his teeth,’ in consequence of which
Mill was unable ever after to get passage out of Shetland.” On the 5th of
November, 1605, a terrible storm swept over the north of Scotland and
destroyed part of the cathedral at Dornoch. As is well known, the day in
question was selected by Guy Fawkes for blowing up the Houses of
Parliament. In his “Cathedral of Caithness, at Dornoch,” Mr. Hugh F.
Campbell tells us: “When the news of the gunpowder plot reached the
north, the co-incidence of time at once impressed the imagination of a
superstitious age. The storm was invested with an element of the
marvellous.” Mr. Campbell then quotes the following curious passage from
Sir Robert Gordon, specially referring to Satan’s connection with the
tempest:—“The same verie night that this execrable plott should have been
put in execution all the inner stone pillars of the north syd of the body of the
cathedral church at Dornogh—lacking the rooff before—were blowen from
the verie roots and foundation quyt and clein over the outer walls of the
church: such as hath sein the same. These great winds did even then
prognosticate and forshew some great treason to be at hand; and as the
divell was busie then to trouble the ayre, so wes he bussie by these hiss
fyrebrands to trouble the estate of Great Britane.”
Within the last half-century there lived in Stonehaven an old woman, who
was regarded with considerable awe by the sea-faring population. Before a
voyage it was usual to propitiate her by the gift of a bag of coals. On one
occasion, two brothers, owners of a coasting smack, after setting sail, had to
return to port through stress of weather, the storm being due, it was
believed, to the fact that one of the brothers had omitted to secure the
woman’s good offices in the usual way. The brother who was captain of the
smack seems to have been a firm believer in wind-charms, for it is related
of him that during a more than usually high wind he was in the habit of
throwing up his cap into the air with the exclamation, “She maun hae
something.” She, in this case, was the wind, and not the witch: and the cap
was meant as a gift to propitiate the storm. Dr. Charles Rogers, in his
“Social Life in Scotland,” tells us that “the seamen of Shetland, in
tempestuous weather, throw a piece of money into the window of a ruinous
chapel dedicated to St. Ronald in the belief that the saint will allay the
vehemence of the storm.” According to the same writer, “Shetland boatmen
still purchase favourable winds from elderly women, who pretend to rule or
to modify the storms.” “There are now in Lerwick,” Dr. Rogers continues,
“several old women who in this fashion earn a subsistence. Many of the
survivors of the great storm of the 20th of July, 1881—so fatal on northern
coasts—assert that their preservation was due to warnings which they
received through a supernatural agency.”
Human skulls have their folklore. The lifting of them from their usual
resting-places has, in popular belief, been connected with certain
mysterious occurrences. According to a story told by Mr. Wirt Sikes, in his
“British Goblins,” a man who removed a skull from a church to prove to his
companions that he was free from superstition was overtaken by a terrible
whirlwind, the result, it was thought, of his rash act. In some Highland
districts it used to be reckoned unlucky to allow a corpse to remain
unburied. If from any cause, human bones came to the surface, care was
taken to lay them below ground again, as otherwise disastrous storms would
ensue.
From the evidence of an Irish example, we find that springs could allay a
storm, as well as produce a favourable breeze. The island of Innismurray,
off the coast of Sligo, has a sacred well called Tobernacoragh. When a
tempest was raging, the natives believed that by draining the water of this
well into the sea, the wrath of the elements could be calmed. Mr. Gomme,
in his “Ethnology in Folklore,” when commenting on the instance, remarks,
“In this case the connection between well-worship and the worship of a
rain-god is certain, for it may be surmised that if the emptying of the well
allayed a storm, some complementary action was practised at one time or
other in order to produce rain, and in districts more subject to a want of rain
than this Atlantic island, that ceremony would be accentuated at the expense
of the storm-allaying ceremony at Innismurray.” The Routing Well, at
Monktown, in Inveresk parish, Mid-Lothian, was believed to give notice of
an approaching storm by uttering sounds resembling the moaning of the
wind. As a matter of fact, the noises came from certain disused coal-
workings in the immediate neighbourhood, and were due to the high wind
blowing through them. The sounds thus accompanied and did not precede
the storm.
Tree-worship—Ygdrasil—Personality of Plants—Tree-ancestors
—“Wassailing”—Relics of Tree-worship—Connla’s Well—Cutting down Trees
Unlucky—Spring at Monzie—Marriage Well—Pear-Tree Well—Some
Miraculous Trees—External Soul—Its Connection with Trees, &c.—Arms of
Glasgow.
Part of the contents of the cup was then drunk, and the remainder was
thrown at the tree amid shouts from the by-standers. Relics of the same cult
can be traced in the superstitious regard for such trees as the rowan, the
elder, &c., and in the decoration of the May-pole and the Christmas Tree.
According to an ancient Irish legend, a certain spring in Erin, called
Connla’s Well, had growing over it nine mystical hazel trees. Year by year
these trees produced their flowers and fruit simultaneously. The nuts were
of a brilliant crimson colour and contained in some mysterious way the
knowledge of all that was best in poetry and art. Professor O’Curry, in his
“Lectures on the Manners and Customs of the Ancient Irish,” refers to this
legend, and says, “No sooner were the beautiful nuts produced on the trees
than they always dropped into the well, raising by their fall a succession of
shining red bubbles. Now, during this time the water was always full of
salmon, and no sooner did the bubbles appear than these salmon darted to
the surface and ate the nuts, after which they made their way to the river.
The eating of the nuts produced brilliant crimson spots on the bellies of
these salmon, and to catch and eat these salmon became an object of more
than mere gastronomic interest among those who were anxious to become
distinguished in the arts and in literature without being at the pains and
delay of long study, for the fish was supposed to have become filled with
the knowledge which was contained in the nuts, which, it was believed,
would be transferred in full to those who had the good fortune to catch and
eat them.”
In many cases it was counted unlucky to cut down trees, since the spirits,
inhabiting them, would resent the injury. In the sixteenth century the
parishioners of Clynnog, in Caernarvonshire, refrained from destroying the
trees growing in the grounds of St. Beyno. Even though he was their patron
saint, he was quite ready to harm anybody who took liberties with his
grove. Loch Siant Well, in Skye, was noted for its power to cure headaches,
stitches, and other ailments, and was much frequented in consequence.
Martin says, “There is a small coppice near to the well, and there is none of
the natives dare venture to cut the least branch of it for fear of some signal
judgment to follow upon it.” Martin also tells us that the same reverence
was for long paid to the peat on the island of Lingay. This island, he says,
“is singular in respect of all the lands of Uist, and the other islands that
surround it, for they are all composed of sand, and this, on the contrary, is
altogether moss covered with heath, affording five peats in depth, and is
very serviceable and useful, furnishing the island Borera, &c., with plenty
of good fuel. This island was held as consecrated for several ages, insomuch
that the natives would not then presume to cut any fuel in it.”
When trees beside wells had rags hung on them as offerings, they would
naturally be reverenced, as the living altars for the reception of the gifts.
But even when not used for this purpose, they were sometimes thought to
have a mysterious connection with the springs they overshadowed. In the
parish of Monzie, Perthshire, is a mineral well held in much esteem till
about the year 1770. At that time two trees, till then the guardians of the
spring, fell, and with their fall its virtue departed. On the right bank of the
Clyde, about three-quarters of a mile from Carmyle village, is the once
sylvan district of Kenmuir. There, at the foot of a bank, is a spring locally
known as “The Marriage Well,” the name being derived, it is said, from two
curiously united trees beside its margin. These trees were recently cut
down. In former times, it was customary for marriage parties, the day after
their wedding, to visit the spring, and there pledge the bride and bridegroom
in draughts of its sparkling water. On the banks of the Kelvin, close to the
Glasgow Botanic Gardens, once flowed a spring styled the Pear-Tree, Pea-
Tree, or Three-Tree Well, the last name being probably the original one. In
former times it was a recognised trysting-place for lovers. A tragic story is
told in connection with it by Mr. James Napier in his “Notes and
Reminiscences of Partick.” A maiden, named Catherine Clark, arranged to
meet her lover there by night,
She never returned to her home. “A few days after,” remarks Mr. Napier,
“her body was found buried near a large tree which stood within a few
yards of the Pea-Tree Well. This tree was afterwards known as ‘Catherine
Clark’s Tree,’ and remained for many years an object of interest to the
visitors to this far-famed well, and many a sympathising lover carved his
name in rude letters on its bark. But the tree was also an object of terror to
those who had to pass it in dark and lonely nights, and many tales were told
of people who had seen a young female form dressed in white, and stained
with blood, standing at the tree foot.” The tree was removed many years
ago. The spring too is gone, the recent extension of the Caledonian Railway
to Maryhill having forced it to quit the field.
The external soul was sometimes associated with objects other than living
trees. Dr. Charles Rogers tells us that “a pear, supposed to have been
enchanted by Hugh Gifford, Lord of Yester, a notable magician in the reign
of Alexander III., is preserved in the family of Brown of Colston, as heirs of
Gifford’s estate.” The prosperity of the family is believed to be linked with
the preservation of the pear. Even an inanimate object would serve the
purpose. The glass drinking-cup, known as the “Luck of Edenhall,” is
connected with the fortunes of the Musgrave family, and great care is taken
to preserve it from injury. Tradition says that a company of fairies were
making merry beside a spring near the mansion-house, but that, being
frightened by some intruder, they vanished, leaving the cup in question,
while one of them exclaimed:—
Some living object, however, either vegetable or animal, was the usual
repository of the external soul. A familiar folk-tale tells of a giant whose
heart was in a swan, and who could not be killed while the swan lived.
Hunting was a favourite occupation among the inhabitants of the Western
Isles; but on the mountain Finchra, in Rum, no deer was killed by any
member of the Lachlan family, as it was believed that the life of that family
was in some way linked with the life of these animals. A curious
superstition is mentioned by Camden in his “Britannia.” In a pond near the
Abbey of St. Maurice, in Burgundy, were put as many fish as there were
monks. When any monk was taken ill, one of the fish was seen to float half-
dead on the surface of the pond. If the fish died the monk died too, the
death of the former giving warning of the fate of the latter. In this case the
external soul was thought of as stowed away in a fish. As is well known, the
Arms of the City of Glasgow are a bell, a tree, a fish with a ring in its
mouth, and a bird. The popular explanation of these emblems connects
them with certain miracles, wrought by Kentigern, the patron saint of the
burgh. May we not hold that an explanation of their symbolism is to be
sought in a principle, that formed an article in the beliefs of men, long
before Kentigern was born, as well as during his time and since? The bell, it
is true, had, doubtless, an ecclesiastical association; but the other three
symbols point, perhaps, to some superstitious notion like the above. In
various folk-tales, as well as in Christian art, the soul is sometimes typified
by a bird. As we have just seen, it has been associated with trees and fish.
We are entitled therefore to ask whether the three symbols may not express
one and the same idea under different forms. It is, of course, open to anyone
to say that there were fish in the river, on whose banks Kentigern took up
his abode, and quite a forest with birds singing in it around his cell, and that
no further explanation of the symbolism need be sought. All these, it is true,
existed within the saint’s environment, but may they not have been regarded
as types of the soul under the guise of objects familiar to all, and afterwards
grouped together in the burgh Arms? On this hypothesis, the symbols have
survived the belief that gave them birth, and serve to connect the practical
life of to-day, with the vague visions and crude conjectures of the past.
CHAPTER XV.
Charm-Stones in and out of Water.
We have already seen that in early times water was an object of worship.
Stones also were reverenced as the embodiments of nature-deities. “In
Western Europe during the middle ages,” remarks Sir J. Lubbock in his
“Origin of Civilisation,” “we meet with several denunciations of stone-
worship, proving its deep hold on the people. Thus the worship of stones
was condemned by Theodoric, Archbishop of Canterbury, in the seventh
century, and is among the acts of heathenism forbidden by King Edgar in
the tenth, and by Cnut in the eleventh century.” Even as late as the
seventeenth century, the Presbytery of Dingwall sought to suppress, among
other practices of heathen origin, that of rendering reverence to stones, the
stones in question having been consulted as to future events. It is not
surprising therefore that stones had certain mysterious properties ascribed to
them. In all ages precious stones have been deservedly admired for their
beauty, but, in addition, they have frequently been esteemed for their occult
qualities. “In my youth,” Mr. James Napier tells us, in his “Folklore in the
West of Scotland,” “there was a belief in the virtue of precious stones,
which added a value to them beyond their real value as ornaments …. Each
stone had its own symbolic meaning and its own peculiar influence for
imparting good and protecting from evil and from sickness its fortunate
possessor.” By the ancient Jews, the topaz and the amethyst were believed
to guard their wearers respectively against poison and drunkenness; while
the diamond was prized as a protection against Satanic influence.
Concerning the last-mentioned gem, Sir John Mandeville, writing about
1356, says, “It makes a man stronger and firmer against his enemies, heals
him that is lunatic, and those whom the fiend pursues and torments.” By
certain sects of the Gnostics, precious stones were much thought of as
talismans. Among the sect founded by Basilides of Egypt, the famous
Abraxas gems were used as tokens by the initiated. The Gnostics also
placed gems inscribed with mystic mottoes in sarcophagi, to remind the
dead of certain prayers that were thought likely to aid them in the other
world. In Scandinavia, warriors were in the habit of carrying about with
them amulets called life-stones or victory-stones. These strengthened the
hand of the wearer in fight. In our own country, the use of amulets was not
uncommon. A flat oval-shaped pebble, measuring two and a half inches in
greatest diameter, was presented in 1864 to the Society of Antiquaries of
Scotland. It had been worn as a charm by a Forfarshire farmer, who died in
1854 at the age of eighty-four. When in use, it had been kept in a small bag
and suspended by a red string round the wearer’s neck.
Even when stones were not used as amulets, they were sometimes held in
superstitious regard. When in Mull, Martin was told of a yellow stone, lying
at the bottom of a certain spring in the island, its peculiarity being that it did
not get hot, though kept over the fire for a whole day. The same writer
alludes to a certain stone in Arran, called Baul Muluy, i.e., “Molingus, his
Stone Globe.” It was green in colour, and was about the size of a goose’s
egg. The stone was used by the islanders, when great oaths had to be sworn.
It was also employed to disperse an enemy. When thrown among the front
ranks, the opposing army would retreat in confusion. In this way the
Macdonalds were said to have gained many a victory. When not in use, the
Baul Muluy was carefully kept wrapped up in cloth. Among oath-stones,
the black stones of Iona were specially famous. These were situated to the
west of St. Martin’s Cross, and were called black, not from their colour—
for they were grey—but from the effects of perjury in the event of a false
oath being sworn by them. Macdonald, Lord of the Isles, knelt on them,
and, with uplifted hands, swore that he would never recall the rights granted
by him to his vassals. Such a hold had these oath-stones taken on the
popular imagination, that when anyone expressed himself certain about a
particular thing, he gave weight to his affirmation, by saying that he was
prepared to “swear upon the black stones.” Bishop Pocoke mentions that
the inhabitants of Iona “were in the habit of breaking off pieces from a
certain stone lying in the church,” to be used “as medicine for man or beast
in most disorders, and especially the flux.”