Instantly download the full Test Bank for Java Programming 7th Edition Farrell 1285081951 9781285081953 and start reading.
Instantly download the full Test Bank for Java Programming 7th Edition Farrell 1285081951 9781285081953 and start reading.
https://testbankpack.com/download/solution-manual-for-java-
programming-7th-edition-farrell-1285081951-9781285081953/
https://testbankpack.com/download/test-bank-for-java-programming-8th-
edition-farrell-1285856910-9781285856919/
https://testbankpack.com/download/solution-manual-for-java-
programming-8th-edition-farrell-1285856910-9781285856919/
https://testbankpack.com/download/test-bank-for-programming-logic-and-
design-comprehensive-7th-edition-joyce-
farrell-1111969752-9781111969752/
Solution Manual for Programming Logic and Design
Comprehensive 7th Edition Joyce Farrell 1111969752
9781111969752
https://testbankpack.com/download/solution-manual-for-programming-
logic-and-design-comprehensive-7th-edition-joyce-
farrell-1111969752-9781111969752/
https://testbankpack.com/download/test-bank-for-introduction-to-java-
programming-comprehensive-version-9th-edition-liang-9780132936521/
https://testbankpack.com/download/test-bank-for-introduction-to-java-
programming-brief-version-10th-edition-liang-0133592200-9780133592207/
Solution Manual:
https://testbankpack.com/p/solution-manual-for-
java-programming-7th-edition-farrell-
1285081951-9781285081953/
TRUE/FALSE
2. The legal integer values are -231 through 231-1. These are the highest and lowest values that you can store
in four bytes of memory, which is the size of an int variable.
3. Multiplication, division, and remainder always take place after addition or subtraction in an expression.
6. Once a variable has been declared and initialized, new values may not be assigned to the variable.
8. Even if a statement occupies multiple lines, the statement is not complete until the semicolon is reached.
10. Constants hold a single value for the duration of the program execution.
MULTIPLE CHOICE
3. Primitive types serve as the building blocks for more complex data types, called types.
a. integer c. reference
b. literal d. data
6. A(n) variable can hold only one of two values: true or false.
a. integer c. true
b. boolean d. comparison
10. In Java, is a built-in class that provides you with the means for storing and manipulating character
strings.
a. Escape c. String
b. Type d. Character
11. You can store any character, including nonprinting characters such as a backspace or a tab, in a(n)
variable.
a. int c. boolean
b. char d. set
12. The characters move the cursor to the next line when used within a println() statement.
a. /n c. .+
b. \n d. $
13. In Java, when a numeric variable is concatenated to a String using the , the entire expression
becomes a String.
a. plus sign c. concatenate statement
b. equal sign d. string statement
ANS: A PTS: 1 REF: 56
14. You use operators to perform calculations with values in your programs.
a. calculation c. integer
b. arithmetic d. precedence
17. What is the value of result after the following statement is executed? int result = 2 + 3 *
4;
a. 9 c. 14
b. 10 d. 20
18. The is the type to which all operands in an expression are converted so that they are compatible
with each other.
a. unifying type c. numbered
b. data type d. primitive
19. A(n) dialog box asks a question and provides a text field in which the user can enter a response.
a. question c. confirm
b. JOptPane d. input
ANS: D PTS: 1 REF: 85
20. Each primitive type in Java has a corresponding class contained in the java.lang package. These
classes are called classes.
a. case c. type-wrapper
b. primitive d. show
21. A(n) dialog box displays the options Yes, No, and Cancel.
a. confirm c. message
b. input d. answer
23. You may declare an unlimited number of variables in a statement as long as the variables are .
a. the same data type c. properly commented
b. initialized to the same value d. floating point numbers
24. When a numeric variable is concatenated to a String, the entire expression becomes a(n) .
a. int c. method
b. constant d. String
25. Which escape sequence will move the cursor to the beginning of the current line?
a. \b c. \\
b. \r d. \n
PTS: 1 REF: 52
2. A(n) operator compares two items and the result has a Boolean value.
ANS:
relational
comparison
PTS: 1 REF: 68
ANS:
floating-point
float double
PTS: 1 REF: 69
ANS:
Type casting type
casting Casting
casting
5. When you write programs that accept , there is a risk that the user will enter the
wrong type of data.
PTS: 1 REF: 81
MATCHING
6. Rules for the order in which parts of a mathematical expression are evaluated
SHORT ANSWER
1. A variable declaration is a statement that reserves a named memory location. It includes what four
elements?
ANS:
A data type that identifies the type of data that the variable will store
An identifier that is the variable’s name
An optional assignment operator and assigned value, if you want a variable to contain an initial value
An ending semicolon
PTS: 1 REF: 53
2. Describe the variation types byte, short, and long of the integer type.
ANS:
The types byte, short, and long are all variations of the integer type. The byte and short types
occupy less memory and can hold only smaller values; the long type occupies more memory and can
hold larger values.
PTS: 1 REF: 62
3. Describe how to assign values based on the result of comparisons to Boolean variables.
ANS:
Java supports six relational operators that are used to make comparisons. A relational operator
compares two items; an expression that contains a relational operator has a Boolean value. When you
use any of the operators that have two symbols (==, <=, >=, or !=), you cannot place any whitespace
between the two symbols. You also cannot reverse the order of the symbols. That is, =<, =>, and =! are
all invalid operators.
PTS: 1 REF: 68
4. What is the difference between the float data type and the double data type?
ANS:
Java supports two floating-point data types: float and double. A float data type can hold
floating-point values of up to six or seven significant digits of accuracy. A double data type requires
more memory than a float, and can hold 14 or 15 significant digits of accuracy. The term significant
digits refers to the mathematical accuracy of a value. For example, a float given the value
0.324616777 displays as 0.324617 because the value is accurate only to the sixth decimal position.
PTS: 1 REF: 69
5. What is an escape sequence and why would a Java programmer use it to store a character?
ANS:
You can store any character—including nonprinting characters such as a backspace or a tab—in a
char variable. To store these characters, you can use an escape sequence, which always begins with a
backslash followed by a character—the pair represents a single character.
PTS: 1 REF: 73
ANS:
Operator precedence refers to the rules for the order in which parts of a mathematical expression are
evaluated. The multiplication, division, and remainder operators have the same precedence. Their
precedence is higher than that for the addition and subtraction operators. Addition and subtraction have
the same precedence. In other words, multiplication, division, and remainder always take place from left
to right prior to addition or subtraction in an expression. For example, the following statement assigns
14 to result: int result = 2 + 3 * 4;.
PTS: 1 REF: 93
7. In Java, how is it possible to perform mathematical operations on operands with unlike types?
ANS:
When you perform arithmetic operations with operands of unlike types, Java chooses a unifying type
for the result. The unifying type is the type to which all operands in an expression are converted so that
they are compatible with each other. Java performs an implicit conversion; that is, it automatically
converts nonconforming operands to the unifying type.
PTS: 1 REF: 99
ANS:
You can explicitly (or purposely) override the unifying type imposed by Java by performing a type
cast. Type casting forces a value of one data type to be used as a value of another type. To perform a
type cast, you use a cast operator, which is created by placing the desired result type in parentheses.
Using a cast operator is an explicit conversion. The cast operator is followed by the variable or
constant to be cast.
9. How can you create and use an input dialog box in Java?
ANS:
You can create an input dialog box using the showInputDialog() method. Six overloaded
versions of this method are available, but the simplest version uses a single argument that is the prompt
you want to display within the dialog box. The showInputDialog() method returns a String
that represents a user’s response; this means that you can assign the
showInputDialog() method to a String variable and the variable will hold the value that the
user enters.
10. How would you ask the user to confirm an action using a dialog box?
ANS:
A confirm dialog box displays the options Yes, No, and Cancel; you can create one using the
showConfirmDialog() method in the JOptionPane class. Four overloaded versions of the
method are available; the simplest requires a parent component (which can be null) and the
String prompt that is displayed in the box. The showConfirmDialog() method returns an
integer containing one of three possible values: JOptionPane.YES_OPTION,
JOptionPane.NO_OPTION, or JOptionPane.CANCEL_OPTION.
PTS: 1 REF: 89
11. Describe how the use of named constants can provide advantages over the use of literal values.
ANS:
Using named constants makes programs easier to read and understand.
When a constant is defined, you can change the constant at one location, which saves time and
prevents you from missing other references.
Using named constants reduces typographical errors that may not be recognized by the compiler.
Constants can be easily identified when named conventionally (all caps).
PTS: 1 REF: 55
12. Describe why it is important to assign an appropriate data type to variables in an application.
ANS:
If a value is too large for the data type assigned, the compiler will issue an error message and the
program will not execute.
If a data type is used that is larger than needed, memory is wasted.
13. Describe how the Scanner class works with the System.in object in order to provide flexibility.
ANS:
The System.in object is designed to read bytes only. Since it is common to accept data of other
types, the Scanner object can connect to the System.in property. This creates a Scanner object
that will be connected to the default input device.
PTS: 1 REF: 76
ANS:
This assignment operator has a right-to-left associativity. Associativity is the order in which values are
used with operators. Since 100 is a numeric constant, it is an rvalue, which is an item that can appear
only on the right side of the assignment operator. An identifier that can appear on the left side of an
assignment operator is referred to as an lvalue (left-to-right associativity).
PTS: 1 REF: 53
15. Describe three ways in which a constant differs from a variable.
ANS:
Constants are preceded by the keyword final in a declaration statement.
Constants can be assigned a value once only and the value cannot be changed.
Constants conventionally have identifiers in all uppercase letters, distinguishing them from other
forms.
PTS: 1 REF: 54
CASE
ANS:
int salesAmt;
PTS: 1 REF: 54
2. Write the statement that will declare and assign two integer variables, salesAmt and costAmt, in a
single statement. Assign values of your choice to the variables.
ANS:
int salesAmt = 100, costAmt = 15;
A semicolon must end the statement. Variable declarations are separated with a comma.
PTS: 1 REF: 54
} }
In the above code, complete the statement that will display a message dialog box that will appear
centered on the screen and will display the following text: Congratulations! June sales were
$250!
ANS:
JOptionPane.showMessageDialog(null, "Congratulations! June sales
were
$" + storeSales + "!";
PTS: 1 REF: 57-58
In the above statements, identify the named constant and describe how a programmer can recognize
named constants.
ANS:
The named constant identifier is COSTPERITEM.
Constant declaration statements use the final keyword.
Constants are conventionally given identifiers in all uppercase letters.
5. Write the statement that will declare a char data type named
testScore that will hold a letter grade of your choice.
ANS:
char testScore = ‘A’;
PTS: 1 REF: 71
Given the above code, what will be the output at the command prompt?
ANS:
Output will be as follows:
7. Describe the error message that will be produced when the following code is compiled.
public class SalesOct
{
public static void main(String[] args)
{
int salesAmt;
System.out.print("October sales are $");
System.out.println(salesAmt);
}
}
ANS:
The second println statement will generate an error message because the variable used in the
statement is undeclared. It is legal to declare an uninitialized variable, but it cannot be used in a
println() statement uninitialized. If you assign a numeric value to int salesAmt, the program
will compile.
When the above code is compiled, what error message will be generated and why?
ANS:
The above code will result in the error message “possible loss of precision”. The assigned value of 940
to the aByte variable is larger than the maximum value allowed. A byte type can hold a value
between -128 and 127. Thus, the accuracy of the number has been compromised.
9. Why is the following relational operator expression invalid? How could you rewrite the statement so that
it is valid?
ANS:
In this statement, the order of the operator symbols is reversed. It is illegal to use =<, =>, and =!.
PTS: 1 REF: 68
10. char aCharacter = 2; int aNumber = '2';
In the above statements, what values will be output after a println() statement is executed? Why
are the output results different for the two statements?
ANS:
aCharacter will output a blank. aNumber
will output a value of 50.
Unicode values are used to assign a unique numeric code. Every computer stores each character it uses
as a number and each character is assigned a unique Unicode numeric value.
PTS: 1 REF: 71
11. How could you alter the following statement to display “Welcome” on one line and “back” on another
line?
System.out.println("Welcome back");
ANS:
There are two possible options:
System.out.println("Welcome\nback");
and
System.out.println("Welcome"); System.out.println("back");
Mortal Humor
Humor sometimes comes out on the very scaffold. An old man was
once hanged for complicity in a murder. The rope broke, and he fell
heavily to the ground. His first utterance when his breath returned to
him was, "Ah, sheriff, sheriff, gie us fair hangin'."
His friends demanded that he should be delivered up to them, as a
second hanging was not contemplated in the sentence. But the old
man, looking round on the curious crowd of gazers, and lifting up his
voice, said, "Na, na, boys, I'll no gang hame to my neighbors to hear
people pointing me oot as the half-hangit man; I'll be hangit oot."
And he got his wish five minutes after.
A Fruitful Field
The following anecdote was communicated to me by a gentleman
who happened to be a party to the conversation detailed below. This
gentleman was passing along the road not one hundred miles from
Peterhead one day. Two different farms skirt the separate sides of
the turnpike, one of which is rented by a farmer who cultivates his
land according to the most advanced system of agriculture, and the
other of which is farmed by a gentleman of the old school.
Our informant met the latter worthy at the side of the turnpike,
opposite his neighbor's farm, and seeing a fine crop of wheat upon
what appeared to be (and really was) very poor and thin land,
asked, "When was that wheat sown?"
"O, I dinna ken," replied the gentleman of the old school, with a sort
of half indifference, half contempt.
"But isn't it strange that such a fine crop should be reared on such
bad land?" asked our informant.
"O, na—nae at a'—devil thank it; a gravesteen wad gie guid bree gin
ye geed it plenty o' butter." [7]
Rivalry in Prayer
Yarmouth, Nova Scotia, has a wide-awake Presbyterian elder of
Scotch character, who, although a persistent advocate of the
Westminster Confession, occasionally for convenience sake—and
from an innate love of religious intercourse—attends the meetings of
his Methodist brethren.
At a recent prayer-meeting that was held preparatory to a centennial
service in commemoration of the progress of Methodism in Nova
Scotia, the presiding minister dwelt eloquently upon the wonderful
growth and prosperity of the Methodist Church, and upon the life of
its great founder, John Wesley. He also expressed thankfulness that
on that day there were one hundred and nine Methodist ministers in
Nova Scotia. The meeting thus very decidedly assumed a
denominational character, but the minister asked the good
Presbyterian brother to lead in prayer at the close. The elder
complied, and after thanking God for the many good things he had
just heard "about this branch of Zion," he added, with much depth
and feeling, "O Lord, we thank Thee for John Knox; we thank Thee
for the one hundred and nine Methodist ministers in our country, but
we especially thank Thee for the one hundred and thirteen
Presbyterian ministers who are preaching the Word of Life
throughout our land. Amen."
A Compensation Balance
The answers of servants often curiously illustrate the habits and
manners of the household. A bright maid-of-all-work, alluding to the
activity and parsimony of her mistress, said, "She's vicious upo' the
wark, but, eh, she's vary mysterious o' the victualing."
Scotchmen Everywhere
Was ever a place that hadn't its Scotchman? In a late English
publication we find an account of a gentleman traveling in Turkey,
who, arriving at a military station, took occasion to admire the
martial appearance of two men. He says: "The Russian was a fine,
soldier-like figure, nearly six feet high, with a heavy cuirassier
moustache, and a latent figure betraying itself (as the 'physical
force,' novelists say) in every line of his long muscular limbs. Our
pasha was a short thick-set man, rather too round and puffy in the
face to be very dignified; but the eager, restless glance of his quick
gray eye showed that he had no want of energy. My friend, the
interpreter, looked admiringly at the pair as they approached each
other, and was just exclaiming, 'There, thank God, are a real Russian
and a real Turk, and admirable specimens of their race, too!' when
suddenly General Sarasoff and Ibraham Pasha, after staring at each
other for a moment, burst forth simultaneously, 'Eh, Donald
Cawmell, are ye there?' 'Lord keep us, Sandy Robertson, can this be
you?'"
"Fou'—Aince"
George Webster once met a shepherd boy in Glenshee, and asked,
"My man, were you ever fou'?"
"Ay, aince"—speaking slowly, as if remembering—"Ay, aince."
"What on?"
"Cauld mutton!" [12]
Sunday Drinking
Dr. M——, accompanied by a friend, took a long walk on Sunday,
and being fatigued, the two stopped at an inn to get some
refreshment. The landlord stopped them at the door with the
question whether they were bona fide travelers, as such alone could
enter his house on Sunday. They said they were from London, and
were admitted. They were sent bread and cheese and stout. The
stout was bad, and they sent for ale; but that being worse, they sent
for whiskey. The landlord refused this, saying they had enough for
their bodily necessities.
After a great deal of urging for the whiskey, which the landlord
withstood, M—— said, "Very well; if you won't sell us whiskey, we
must use our own," at the same time pulling a flask out of his
pocket.
This was more than the Scotchman could stand. The sin was to be
committed, and there would be no compensation to its heinousness
in the way of profit to his inn. "Ah, weel," he said, "if ye maun have
the whiskey, ye maun, an' I'll send ye the mateyrials."
Drawing an Inference
A certain functionary of a country parish is usually called the
minister's man, and to one of these who had gone through a long
course of such parish official life, a gentleman one day remarked
—"John, ye hae been sae lang about the minister's hand that I dare
say ye could preach a sermon yersell now."
To which John modestly replied, "O na, sir, I couldna preach a
sermon, but maybe I could draw an inference."
"Well, John," said the gentleman, humoring the quiet vanity of the
beadle, "what inference could ye draw frae this text, 'A wild ass
snuffeth up the wind at her pleasure!" (Jer. ii: 24).
"Weel, sir, I wad draw this inference:—she wad snuff a lang time
afore she would fatten upon't." [7]
A Sexton's Criticism
The following criticism by a Scotch sexton is not bad:
A clergyman in the country had a stranger preaching for him one
day, and meeting his sexton, asked, "Well, Saunders, how did you
like the sermon to-day?"
"It was rather ower plain and simple for me. I like thae sermons best
that jumbles the joodgment and confoonds the sense. Od, sir, I
never saw ane that could come up to yoursel' at that."
Pulpit Eloquence
An old clerical friend upon Speyside, a confirmed old bachelor, on
going up to the pulpit one Sunday to preach, found, after giving out
the psalm, that he had forgotten his sermon. I do not know what his
objections were to his leaving the pulpit and going to the manse for
his sermon, but he preferred sending his old confidential
housekeeper for it. He accordingly stood up in the pulpit, stopped
the singing, when it had commenced, and thus accosted his faithful
domestic: "Annie, I say, Annie, we've committed a mistake the day.
Ye maun jist gang your waa's hame, and ye'll get my sermon out o'
my breek pouch, an' we'll sing to the praise o' the Lord till ye come
back again." [7]
Maunderings, by a Scotchman
The following is said by Chambers' Journal to have been written by a
Scotchman. If so, the humorous way in which he is taking off a
certain tendency of the Scotch mind, is delicious; if by an
Englishman, the humor will be less keen, though not less fair.
I am far frae being clear that Nature hersel', though a kindly auld
carline, has been a'thegither just to Scotland seeing that she has sae
contrived that some o' our greatest men, that ought by richt to hae
been Scotchmen, were born in England and other countries, and sae
have been kenned as Englishers, or else something not quite sae
guid.
There's glorious old Ben Jonson, the dramatic poet and scholar, that
everybody tak's for a regular Londoner, merely because he happened
to be born there. Ben's father, it's weel ken't, was a Johnston o'
Annandale in Dumfriesshire, a bauld guid family there to this day. He
is alloo't to hae been a gentleman, even by the English biographers
o' his son; and, dootless, sae he was, sin' he was an Annandale
Johnston. He had gane up to London, about the time o' Queen Mary,
and was amang them that suffered under that sour uphalder o'
popery. Ben, puir chiel', had the misfortune first to see the light
somewhere aboot Charing Cross, instead o' the bonnie leas o'
Ecclefechan, where his poetic soul wad hae been on far better
feedin' grund, I reckon. But nae doot, he cam' to sit contented under
the dispensations of Providence. Howsomever, he ought to be now
ranked amang Scotchmen, that's a'.
There was a still greater man in that same century, that's generally
set down as a Lincolnshire-man, but ought to be looked on as next
thing till a Scotchman, if no' a Scotchman out and out; and that's Sir
Isaac Newton. They speak o' his forebears as come frae Newton in
Lancashire; but the honest man himsel's the best authority aboot his
ancestry, I should think; and didna he say to his friend Gregory ae
day: "Gregory, ye warna aware that I'm o' the same country wi'
yoursel'—I'm a Scotchman." It wad appear that Sir Isaac had an idea
in his head, that he had come somehow o' the Scotch baronet o' the
name o' Newton; and nothing can be better attested than that there
was a Scotchman o' that name wha became a baronet by favor o'
King James the Sixt (What for aye ca' him James the First?) having
served that wise-headed king as preceptor to his eldest son, Prince
Henry. Sae, ye see, there having been a Scotch Newton who was a
baronet, and Sir Isaac thinking he cam' o' sic a man, the thing looks
unco' like as if it were a fact. It's the mair likely, too, frae Sir Adam
Newton having been a grand scholar and a man o' great natural
ingenuity o' mind; for, as we a' ken right weel, bright abilities gang in
families. There's a chiel' o' my acquentance that disna think the
dates answer sae weel as they ought to do; but he ance lived a
twalmonth in England, and I'm feared he's grown a wee thing
prejudiced. Sae we'll say nae mair aboot him.
Then, there was Willie Cowper, the author o' the Task, John Gilpin,
and mony other poems. If ye were to gie implicit credence to his
English biographers, ye wad believe that he cam' o' an auld Sussex
family. But Cowper himsel' aye insisted that he had come o' a Fife
gentleman o' lang syne, that had been fain to flit southwards, having
mair guid blude in his veins than siller in his purse belike, as has
been the case wi' mony a guid fellow before noo. It's certain that the
town o' Cupar, whilk may hae gi'en the family its name, is the head
town o' that county to this day. There was ane Willie Cowper, Bishop
o' Galloway in the time o' King Jamie—a real good exerceesed
Christian, although a bishop—and the poet jaloosed that this worthy
man had been ane o' his relations. I dinna pretend to ken how the
matter really stood; but it doesna look very likely that Cowper could
hae taken up the notion o' a Scotch ancestry, if there hadna been
some tradition to that effeck. I'm particularly vext that our country
was cheated out o' haeing Cowper for ane o' her sons, for I trow he
was weel worthy o' that honor; and if Providence had willed that he
should hae been born and brought up in Scotland, I haena the least
doot that he wad hae been a minister, and ane too, that wad hae
pleased the folk just extrornar.
There was a German philosopher in the last century, that made a
great noise wi' a book of his that explored and explained a' the in-
thoughts and out-thoughts o' the human mind. His name was
Immanuel Kant; and the Kantian philosophy is weel kent as
something originating wi' him. Weel, this Kant ought to hae been a
Scotchman; or rather he was a Scotchman; but only, owing to some
grandfather or great-grandfather having come to live in Königsberg,
in Prussia, ye'll no' hinder Immanuel frae being born there—whilk of
coorse was a pity for a' parties except Prussia, that gets credit by
the circumstance. The father of the philosopher was an honest
saddler o' the name o' Cant, his ancestor having been ane o' the
Cants o' Aberdeenshire, and maybe a relation of Andrew Cant, for
onything I ken. It was the philosopher that changed the C for the K,
to avoid the foreign look of the word, our letter C not belonging to
the German alphabet. I'm rale sorry that Kant did not spring up in
Scotland, where his metaphysical studies wad hae been on friendly
grund. But I'm quite sure, an' he had visited Scotland and come to
Aberdeenshire, he wad hae fund a guid number o' his relations, that
wad hae been very glad to see him, and never thought the less o'
him for being merely a philosopher.
Weel, we've got down a guid way noo, and the next man I find that
ought by richts to hae been a Scotchman is that deil's bucky o' a
poet, Lord Byron. I'm no' saying that Lord Byron was a'thegither a
respectable character, ye see; but there can be nae manner o' doot
that he wrote grand poetry, and got a great name by it. Noo, Lord
Byron was born in London—I'm no' denyin' what Tammy Muir says
on that score—but his mother was a Scotch leddy, and she and her
husband settled in Scotland after their marriage, and of coorse their
son wad hae been born there in due time, had it no' been that the
husband's debts obliged them to gang, first to France and after that
to London, where the leddy cam' to hae her down-lying, as has
already been said. This, it plainly appears to me, was a great
injustice to Scotland.
My greatest grudge o' a' is regarding that bright genius for historical
composition, Thomas Babbington Macaulay, M.P. for Edinburgh.
About the year 1790, the minister o' the parish o' Cardross in
Dumbartonshire, was a Mr. M'Aulay, a north-country man, it's said,
and a man o' uncommon abilities. It was in his parish that that other
bright genius, Tobias Smollett, was born, and if a' bowls had rowed
richt, sae should T. B. M. But it was otherwise ordeened. A son o'
this minister, having become preceptor to a Mr. Barbinton, a young
man o' fortune in England, it sae cam' aboot that this youth and his
preceptor's sister, wha was an extrornan' bonny lass, drew up
thegither, and were married. That led to ane o' the minister's sons
going to England—namely, Mr. Zachary, the father o' oor member;
and thus it was that we were cheated out o' the honor o' having T.
B. as an out-and-out Scotsman, whilk it's no' natural to England to
bring forth sic geniuses, weary fa' it, that I should say sae. I'm sure I
wiss that the bonny lass had been far eneuch, afore she brought
about this strange cantrip o' fortune, or that she had contented
hersel' wi' an honest Greenock gentleman that wanted her, and wha,
I've been tould, de'ed no' aboon three year syne.
Naebody that kens me will ever suppose that I'm vain either aboot
mysel' or my country. I wot weel, when we consider what frail
miserable creatures we are, we hae little need for being proud o'
onything. Yet, somehow, I aye like to hear the name o' puir auld
Scotland brought aboon board, so that it is na for things even-down
disrespectable. Some years ago, we used to hear a great deal about
a light-headed jillet they ca' Lola Montes, that had become quite an
important political character at the coort o' the king o' Bavaria. Noo,
although I believe it's a fact that Lola's father was a Scotch officer o'
the army, I set nae store by her ava—I turn the back o' my hand on
a' sic cutties as her. Only, it is a fact that she comes o' huz—o' that
there can be nae doot, be it creditable or no'.
Well, ye see, there's another distinguished leddy o' modern times,
that's no' to be spoken o' in the same breath wi' that Lady
Lighthead. This is the new Empress o' France. A fine-looking queen
she is, I'm tauld. Weel, it's quite positive aboot her that her mother
was a Kirkpatrick, come of the house o' Closeburn, in the same
county that Ben Jonson's father cam' frae. The Kirkpatricks have had
land in Dumfriesshire since the days o' Bruce, whose friend ane o'
them was, at the time when he killed Red Cummin; but Closeburn
has long passed away frae them, and now belangs to Mr. Baird, the
great iron master o' the west o' Scotland. Howsomever, the folks
thereaboots hae a queer story aboot a servant-lass that was in the
house in the days o' the empress' great-grandfather like. She
married a man o' the name o' Paterson and gaed to America, and
her son came to be a great merchant, and his daughter became
Prince Jerome Bonaparte's wife; and sae it happens that a lady come
frae the parlor o' Closeburn sits on the throne o' France, while a
prince come frae the kitchen o' the same place is its heir
presumptive! I'm no' sure that the hale o' this story is quite the
thing; but I tell it as it was tauld to me.
I'm no' ane that tak's up my head muckle wi' public singers,
playgoers, composers o' music, and folk o' that kind; but yet we a'
ken that some o' them atteen to a great deal o' distinction, and are
muckle ta'en out by the nobility and gentry. Weel, I'm tauld (for I
ken naething about him mysel') that there was ane Donizetti, a great
composer o' operas, no' very lang syne. Now, Donizetti, as we've
been tauld i' the public papers, was the son o' a Scotchman. His
father was a Highlandman, called Donald Izett, wha left his native
Perthshire as a soldier—maist likely the Duke o' Atholl pressed him
into the service as ane o' his volunteers—and Donald having quitted
the army somewhere abroad, set up in business wi' Don Izett over
his door, whilk the senseless folk thereabouts soon transformed into
Donizetti, and thus it came about that his son, wha turned out a
braw musician, bore this name frae first to last, and dootless left it
to his posterity. I ken weel that Izett is a Perthshire name, and there
was ane o' the clan some years sin' in business in the North Brig o'
Edinburgh, and a rale guid honest man he was, I can tell ye, and a
very sensible man, too. Ye'll see his head-stane ony day i' the
Grayfriars. And this is guid evidence to me that Donizetti was,
properly speaking, a Scotchman. It's a sair pity for himsel' that he
wasna born, as he should hae been, on the braes o' Atholl, for then
he wad nae doot hae learned the richt music, that is played there
sae finely on the fiddle—namely, reels and strath-speys; and I dinna
ken but, wi' proper instruction, he might hae rivalled Neil Gow
himsel'.
Ye've a' heard o' Jenny Lind, the Swedish nightingale, as the fulishly
ca' her, as if there ever were ony nightingales in Sweden. She's a
vera fine creature, this Jenny Lind, no greedy o' siller, as sae mony
are, but aye willing to exerceese her gift for the guid o' the sick and
the puir. She's, in fack, just sick a young woman as we micht expeck
Scotland to produce, if it ever produced public singers. Weel, Jenny,
I'm tauld, is another of the great band o' distinguished persons that
ought to hae been born in Scotland, for it's said her
greatgrandfather (I'm no' preceese as to the generation) was a
Scotchman that gaed lang syne to spouse his fortune abroad, and
chanced to settle in Sweden, where he had sons and daughters born
to him. There's a gey wheen Linds about Mid-Calder, honest farmer-
folk, to this day; sae I'm thinkin' there's no' muckle room for doot as
to the fack.
Noo, having shewn sic a lang list o' mischances as to the nativity o'
Scotch folk o' eminence, I think ye'll alloo that we puir bodies in the
north hae some occasion for complaint. As we are a' in Providence's
hand, we canna, of coorse, prevent some o' our best countrymen
frae coming into the world in wrang places—sic as Sir Isaac Newton
in Lincolnshire, whilk I think an uncommon pity; but what's to hinder
sic persons frae being reputed and held as Scotchmen
notwithstanding? I'm sure I ken o' nae objection, except it may be
that our friends i' the south, feeling what a sma' proportion o' Great
Britons are Englishmen, may entertain some jealousy on the
subjeck. If that be the case, the sooner that the Association for
Redress o' Scottish Grievances takes up the question the better. [21]
Both Short
"Ye're unco' short the day, Saunders, surely," said an undersized
student to a Glasgow bookseller, one morning, when the latter was
in an irritable mood.
"Od, man," was the retort, "ye may haud your tongue; ye're no' sae
lang yersel'."
An Epitaph to Order
The Rev. Dr. M'Culloch, minister of Bothwell at the end of last
century, was a man of sterling independence and great self-decision.
To a friend—Rev. Mr. Brisbane—he one day said, "You must write my
epitaph if you survive me."
"I will do that," said Mr. Brisbane; "and you shall have it at once,
doctor."
Next morning he received the following:
"Here lies, interred beneath this sod,
That sycophantish man of God,
Who taught an easy way to heaven,
Which to the rich was always given;
If he get in, he'll look and stare
To find some out that he put there."
A Variety Entertainment
There used to be a waggish ostler at one of the chief inns at
Hertford, who delighted to make merry at the expense of any guests
who gave themselves airs. The manner of the ostler was extremely
deferential, and only those who knew him well were aware of the
humor which almost always lurked beneath his civil replies to the
questions put to him. One day a commercial traveler, a complete
prig, who wanted to play the fine gentleman, entered the inn, and
having despatched his dinner, rang the bell of the commercial room
for "boots," who presently made his appearance, when the following
colloquy took place:
Commercial: "Dull town, this. Any amusements, Boots?"
Boots: "Yes, sir, please, sir; Musical Conversazione over the way at
the Shire Hall, sir. Half-a-crown admission, sir. Very nice, sir."
Commercial: "Ah, nice music, I dare say; I don't care for such things.
Is there nothing else, Boots?"
Boots: "Yes, sir, please, sir; Popular Entertainment at Corn Exchange,
admission one penny; gentlemen pay sixpence to front seats, sir, if
they please, sir."
Commercial: "Intensely vulgar! Are there no other amusements in
this confoundedly dull town?"
Boots: "Yes, sir, please sir; railway station at each end of the town—
walk down and see the trains come in."
Welcome to our website – the ideal destination for book lovers and
knowledge seekers. With a mission to inspire endlessly, we offer a
vast collection of books, ranging from classic literary works to
specialized publications, self-development books, and children's
literature. Each book is a new journey of discovery, expanding
knowledge and enriching the soul of the reade
Our website is not just a platform for buying books, but a bridge
connecting readers to the timeless values of culture and wisdom. With
an elegant, user-friendly interface and an intelligent search system,
we are committed to providing a quick and convenient shopping
experience. Additionally, our special promotions and home delivery
services ensure that you save time and fully enjoy the joy of reading.
testbankpack.com