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

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

The document provides links to various test banks and solution manuals for textbooks, particularly focusing on 'Starting Out with Java: From Control Structures through Objects' by Gaddis. It includes multiple-choice and true/false questions related to methods in Java programming, covering topics such as method calls, parameters, and return types. The content is aimed at aiding students in understanding Java programming concepts and preparing for exams.

Uploaded by

zhenycarnes
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 (1 vote)
8 views

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

The document provides links to various test banks and solution manuals for textbooks, particularly focusing on 'Starting Out with Java: From Control Structures through Objects' by Gaddis. It includes multiple-choice and true/false questions related to methods in Java programming, covering topics such as method calls, parameters, and return types. The content is aimed at aiding students in understanding Java programming concepts and preparing for exams.

Uploaded by

zhenycarnes
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/ 39

Starting Out with Java From Control Structures

through Objects 6th Edition Gaddis Test Bank


download pdf

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

Visit testbankdeal.com today to download the complete set of


test banks or solution manuals!
We have selected some products that you may be interested in
Click the link to download now or visit testbankdeal.com
for more options!.

Starting Out With Java From Control Structures Through


Objects 6th Edition Gaddis Solutions Manual

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

Starting Out with Java From Control Structures through


Objects 7th Edition Gaddis Test Bank

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

Starting Out with Java From Control Structures through


Objects 7th Edition Gaddis Solutions Manual

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

Corporate Partnership Estate and Gift Taxation 2013 7th


Edition Pratt Solutions Manual

https://testbankdeal.com/product/corporate-partnership-estate-and-
gift-taxation-2013-7th-edition-pratt-solutions-manual/
Macroeconomics 15th Edition McConnell Test Bank

https://testbankdeal.com/product/macroeconomics-15th-edition-
mcconnell-test-bank/

College Accounting A Contemporary Approach 3rd Edition


Haddock Solutions Manual

https://testbankdeal.com/product/college-accounting-a-contemporary-
approach-3rd-edition-haddock-solutions-manual/

Financial Accounting Canadian 5th Edition Harrison Test


Bank

https://testbankdeal.com/product/financial-accounting-canadian-5th-
edition-harrison-test-bank/

Business Law in Canada Canadian 11th Edition Yates Test


Bank

https://testbankdeal.com/product/business-law-in-canada-canadian-11th-
edition-yates-test-bank/

Personal Finance Canadian 3rd Edition Madura Test Bank

https://testbankdeal.com/product/personal-finance-canadian-3rd-
edition-madura-test-bank/
CISSP Guide to Security Essentials 2nd Edition Gregory
Solutions Manual

https://testbankdeal.com/product/cissp-guide-to-security-
essentials-2nd-edition-gregory-solutions-manual/
Starting Out with Java: From Control Structures through Objects, 6e (Gaddis)
Chapter 5 Methods

5.1 Multiple Choice Questions

1) Methods are commonly used to:


A) speed up the compilation of a program
B) break a problem down into small manageable pieces
C) emphasize certain parts of the logic
D) document the program
Answer: B

2) Which of the following is NOT a benefit derived from using methods in programming?
A) Pproblems are more easily solved.
B) simplifies programs
C) code reuse
D) All of the above are benefits.
Answer: D

3) This type of method performs a task and sends a value back to the code that called it.
A) value-returning
B) void
C) complex
D) local
Answer: A

4) In the following code, System.out.println(num) is an example of:

double num = 5.4;


System.out.println(num);
num = 0.0;
A) a value-returning method
B) a void method
C) a complex method
D) a local variable
Answer: B

5) To create a method you must write its:


A) header
B) return type
C) body
D) definition
Answer: D

1
Copyright © 2016 Pearson Education, Inc.
6) In the header, the method name is always followed by this:
A) parentheses
B) return type
C) data type
D) braces
Answer: A

7) This part of a method is a collection of statements that are performed when the method is executed.
A) method header
B) return type
C) method body
D) method modifier
Answer: C

8) Which of the following is NOT part of a method call?


A) method name
B) return type
C) parentheses
D) all of the above are part of a method call
Answer: B

9) If method A calls method B, and method B calls method C, and method C calls method D, when
method D finishes, what happens?
A) Control is returned to method A.
B) Control is returned to method B.
C) Control is returned to method C.
D) The program terminates.
Answer: C

10) Values that are sent into a method are called:


A) variables
B) arguments
C) literals
D) types
Answer: B

11) When an argument is passed to a method:


A) its value is copied into the method's parameter variable
B) its value may be changed within the called method
C) values may not be passed to methods
D) the method must not assign another value to the parameter that receives the argument
Answer: A

2
Copyright © 2016 Pearson Education, Inc.
12) What is wrong with the following method call?

displayValue (double x);


A) There is nothing wrong with the statement.
B) displayValue will not accept a parameter.
C) Do not include the data type in the method call.
D) x should be a String.
Answer: C

13) Given the following method header, which of the method calls would be an error?

public void displayValues(int x, int y)


A) displayValue(a,b); // where a is a short and b is a byte
B) displayValue(a,b); // where a is an int and b is a byte
C) displayValue(a,b); // where a is a short and b is a long
D) They would all give an error.
Answer: C

14) Which of the following would be a valid method call for the following method?

public static void showProduct (int num1, double num2)


{
int product;
product = num1 * (int)num2;
System.out.println("The product is " + product);
}
A) showProduct(5.5, 4.0);
B) showProduct(10.0, 4);
C) showProduct(10, 4.5);
D) showProduct(33.0, 55.0);
Answer: C

15) When an object, such as a String, is passed as an argument, it is:


A) actually a reference to the object that is passed
B) passed by value like any other parameter value
C) encrypted
D) necessary to know exactly how long the string is when writing the program
Answer: A

16) All @param tags in a method's documentation comment must:


A) end with a */
B) appear after the general description of the method
C) appear before the method header
D) span several lines
Answer: B

3
Copyright © 2016 Pearson Education, Inc.
17) A special variable that holds a value being passed into a method is called what?
A) Modifier
B) Parameter
C) Alias
D) Argument
Answer: B

18) When you pass an argument to a method, be sure that the argument's data type is compatible with:
A) the parameter variable's data type
B) the method's return type
C) the version of Java currently being used
D) IEEE standards
Answer: A

19) A parameter variable's scope is:


A) the method in which the parameter is declared
B) the class to which the method belongs
C) the main method
D) All of the above
Answer: A

20) The lifetime of a method's local variable is:


A) the duration of the program
B) the duration of the class to which the method belongs
C) the duration of the method that called the local variable's method
D) only while the method is executing
Answer: D

21) Local variables:


A) are hidden from other methods
B) may have the same name as local variables in other methods
C) lose the values stored in them between calls to the method in which the variable is declared
D) All of the above
Answer: D

22) Which of the following values can be passed to a method that has an int parameter variable?
A) float
B) double
C) long
D) All of the above
E) None of the above
Answer: E

4
Copyright © 2016 Pearson Education, Inc.
23) The header of a value-returning method must specify this.
A) The method's local variable names
B) The name of the variable in the calling program that will receive the returned value
C) The data type of the return value
D) All of the above
Answer: C

24) What will be returned from the following method?

public static double methodA()


{
double a = 8.5 + 9.5;
return a;
}
A) 18.0
B) 18 (as an integer)
C) 8
D) This is an error.
Answer: A

25) In a @return tag statement the description:


A) cannot be longer than one line
B) describes the return value
C) must be longer than one line
D) describes the parameter values
Answer: B

26) When a method tests an argument and returns a true or false value, it should return:
A) a zero for true and a one for false
B) a boolean value
C) a zero for false and a non-zero for true
D) a method should not be used for this type test
Answer: B

27) The phrase divide and conquer is sometimes used to describe:


A) the backbone of the scientific method
B) the process of dividing functions
C) the process of breaking a problem down into smaller pieces
D) the process of using division to solve a mathematical problem
Answer: C

28) In a general sense, a method is:


A) a plan
B) a statement inside a loop
C) a comment
D) a collection of statements that performs a specific task
Answer: D

5
Copyright © 2016 Pearson Education, Inc.
29) Breaking a program down into small manageable methods:
A) makes problems more easily solved
B) allows for code reuse
C) simplifies programs
D) all of the above
Answer: D

30) This type of method performs a task and then terminates.


A) value-returning
B) void
C) local
D) simple
Answer: B

31) In the following code, Integer.parseInt(str), is an example of:

int num;
string str = "555";
num = Integer.parseInt(str) + 5;
A) a value-returning method
B) a void method
C) a local variable
D) a complex method
Answer: A

32) Which of the following is NOT a part of the method header?


A) return type
B) method name
C) parentheses
D) semicolon
Answer: D

33) Which of the following is included in a method call?


A) return type
B) method modifiers
C) parentheses
D) return variable
Answer: C

34) You should always document a method by writing comments that appear:
A) just before the method's definition
B) just after the method's definition
C) at the end of the file
D) only if the method is more than five lines long
Answer: A

6
Copyright © 2016 Pearson Education, Inc.
35) When an argument value is passed to a method, the receiving parameter variable is:
A) declared within the body of the method
B) declared in the method header inside the parentheses
C) declared in the calling method
D) uses the declaration of the argument
Answer: B

36) If you attempt to use a local variable before it has been given a value:
A) a compiler error will occur
B) the local variable will always contain the value 0
C) the results will be unpredictable
D) the local variable will be ignored
Answer: A

37) What will be the result of the following code?

int num;
string str = "555";
num = Integer.parseInt(string str) + 5;
A) num will be set to 560.
B) str will have a value of "560".
C) The last line of code will cause an error.
D) Neither num or str will be changed.
Answer: C

38) Given the following method header, which of the method calls would be an error?

public void displayValues(double x, int y)


A) displayValue(a,b); // where a is a long and b is a byte
B) displayValue(a,b); // where a is an int and b is a byte
C) displayValue(a,b); // where a is a short and b is a long
D) They would all give an error.
Answer: C

39) Which of the following would be a valid method call for the following method?

public static void showProduct(double num1, int num2)


{
double product;
product = num1 * num2;
System.out.println("The product is " +
product);
}
A) showProduct("5", "40");
B) showProduct(10.0, 4.6);
C) showProduct(10, 4.5);
D) showProduct(3.3, 55);
Answer: D

7
Copyright © 2016 Pearson Education, Inc.
40) When writing the documentation comments for a method, you can provide a description of each
parameter by using a:
A) @comment tag
B) @doc tag
C) @param tag
D) @return tag
Answer: C

41) Values stored in local variables:


A) are lost between calls to the method in which they are declared
B) retain their values from the last call to the method in which they are declared
C) may be referenced by the calling method
D) may be referenced by any other method, if the method in which they are declared is a public method
Answer: A

42) Local variables can be initialized with:


A) constants
B) parameter values
C) the results of an arithmetic operation
D) any of the above
Answer: D

43) A value-returning method must specify this as its return type in the method header.
A) an int
B) a double
C) a boolean
D) any valid data type
Answer: D

44) What will be returned from the following method?

public static int methodA()


{
double a = 8.5 + 9.5;
return a;
}
A) 18.0
B) 18 (as an integer)
C) 8.0
D) This is an error.
Answer: D

45) To document the return value of a method, use this in a documentation comment.
A) The @param tag
B) The @comment tag
C) The @return tag
D) The @returnValue tag
Answer: C

8
Copyright © 2016 Pearson Education, Inc.
46) The process of breaking a problem down into smaller pieces is sometimes called:
A) divide and conquer
B) scientific method
C) top-down programming
D) whole-into-part
Answer: A

47) Any method that calls a method with a throws clause in its header must:
A) handle the potential exception
B) have the same throws clause
C) both of the above
D) do nothing, the called program will take care of the throws clause
Answer: C

48) Assume that the following method header is for a method in class A.

public void displayValue(int value)

Assume that the following code segments appear in another method, also in class A. Which contains a
legal call to the displayValue method?
A) int x = 7;
void displayValue(x);
B) int x = 7;
displayValue(x);
C) int x = 7;
displayValue(int x);
D) int x = 7;
displayValue(x)
Answer: B

5.2 True/False Questions

1) Methods are commonly used to break a problem into small manageable pieces.
Answer: TRUE

2) Two general categories of methods are void methods and value returning methods.
Answer: TRUE

3) In the method header, the method modifier public means that the method belongs to the class, not a
specific object.
Answer: FALSE

4) Constants, variables, and the values of expressions may be passed as arguments to a method.
Answer: TRUE

5) A parameter variable's scope is the method in which the parameter is declared.


Answer: TRUE

9
Copyright © 2016 Pearson Education, Inc.
6) You must have a return statement in a value-returning method.
Answer: TRUE

7) Any method that calls a method with a throws clause in its header must either handle the potential
exception or have the same throws clause.
Answer: TRUE

8) In the method header the static method modifier means the method is available to code outside the
class.
Answer: FALSE

9) Only constants and variables may be passed as arguments to methods.


Answer: FALSE

10) No statement outside the method in which a parameter variable is declared can access the parameter
by its name.
Answer: TRUE

11) The expression in a return statement can be any expression that has a value.
Answer: TRUE

12) A value-returning method can return a reference to a non-primitive type.


Answer: TRUE

10
Copyright © 2016 Pearson Education, Inc.
Random documents with unrelated
content Scribd suggests to you:
The Project Gutenberg eBook of Mrs.
Essington: The Romance of a House-party
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.

Title: Mrs. Essington: The Romance of a House-party

Author: Esther Chamberlain


Lucia Chamberlain

Illustrator: Henry Hutt

Release date: March 8, 2018 [eBook #56705]

Language: English

Credits: Produced by Barry Abrahamsen and The Online


Distributed
Proofreading Team at http://www.pgdp.net (This file
was
produced from images generously made available by
The
Internet Archive)

*** START OF THE PROJECT GUTENBERG EBOOK MRS.


ESSINGTON: THE ROMANCE OF A HOUSE-PARTY ***
MRS. ESSINGTON
MRS. ESSINGTON
The Romance of a House-party

BY

ESTHER AND LUCIA


CHAMBERLAIN

WITH ILLUSTRATIONS BY HENRY HUTT

NEW YORK
THE CENTURY CO.
1905
Copyright, 1905, by
The Century Co.

Published May, 1905

THE DE VINNE PRESS


CONTENTS

CHAPTER Page
I The House-Party Explains Itself, and Gets into a Fog 3
II Julia Steps Out of It, and Answers a Question 24
III Mrs. Essington Runs Away from Herself 44
IV Longacre Runs After 54
V The Pursuer is Captured 77
VI Thair Puts in his Finger; Cissy her Foot 101
VII The House-Party in the Storm 118
VIII Longacre Traps Himself 139
IX Mrs. Essington Says “No” 162
X The Mad Riding 171
XI The White Darkness 190
XII Mrs. Essington Says “Yes” 205
XIII Thair Congratulates 229
XIV The Queen’s Courtesy 236
LIST OF ILLUSTRATIONS

Mrs. Essington Frontispiece


Page
“‘Oh, it’s been wretched!’” 92

“Her skirts held high above her pretty, preposterous 116


shoes”

“‘For God’s sake—don’t cry!’” 154

“‘Are you ready?’” 174

“Such a strange Julia!” 232


MRS. ESSINGTON
CHAPTER I

THE HOUSE-PARTY EXPLAINS ITSELF, AND GETS INTO A FOG

S
TILL, I don’t reconcile you with that lot,” the young man broke
out, after a silence that had lasted long enough to be intimate.
He leaned toward her across the space between the two chairs,
lifting his voice a little to be heard above the racket of the car-
wheels.
The woman did not directly reply, unless there was an answer in
the small profile smile she gave him. She had sat for the past ten
minutes admirably still, her face turned from him, her eyes on the flat
blue-green of onion-fields interminably wheeling past the window.
“I mean,” he presently went on in his easy fashion, “they’re hardly
your sort. Oh, good people, but—dullish, you know; the kind you
never put up with unless you have to.”
She gave him again the flitting, profile smile, with an added
twinkle, from which his face seemed to catch illumination; and, for a
moment, they smiled together with the hint of some common
reminiscence.
“At all events,” he came back again, “I can’t see why you, of all
people, would be going to the Budds!”
She moved at last, turning a full look upon him. The supple bend
of her long throat, and the cool gray light of her eyes in the warm
shadow of their lashes, touched him like a harmony in music. The
beauty and eloquence of her movements had always appealed to him
as her special charm. His eyes followed the flowing lines of her
attitude more attentively than his ears followed the first part of her
reply.
“No, they’re not our sort,”—she spoke with slight emphasis on the
pronoun,—“and”—the subtle modelings around her mouth shadowed
a smile—“we’ll probably bore them horribly. But I’m going—for the
same reason that you are. You know I have never met Julia Budd.”
“But I have,” said Fox Longacre, flushing a little, his blue eyes
steadily meeting her bright gaze.
“Which comes, doesn’t it, to the same thing? Aren’t we both going
to ‘Miramar’ to see Miss Budd?”
“She’s lovely—to look at,” he admitted.
“And not in other ways?”
He seemed to ponder this, his clever young face puckered with an
exaggeration of gravity. He gave it up with a puzzled laugh.
“’Pon my word, I don’t know! That’s what I’m going for.”
“To find out—?”
“Oh, whether she is perfectly charming, or—just the other thing.”
It struck her that his manner was more offhand than the occasion
required—that the alternative he had just so gaily admitted troubled
him more than he wished her to know.
But Florence Essington knew, in spite of him, more than she
looked, and much more than she said. She felt that she at least
foresaw so much that to spare herself the train of thought she
answered him in quite another vein.
“You know, Tony,” she said, with that little, settling movement
women use to begin a gossip, “what really amuses me is that we
haven’t—at least I haven’t—the slightest idea, not a glimmer, what
people Mrs. Budd will be asking down. She hardly knows me, hasn’t
seen me since I left school for Paris—don’t you dare to mention how
long ago! And yet she fairly threatened me into it, eyes popping and
every hair a-quiver. I quite got the feeling that she wants something
of me.”
“Of course,” he grinned cheerfully, “they always do.”
“But something special.”
“Letters of introduction?” he hazarded. “It’s quite on the cards.
They’ll be going to London next season, if she doesn’t—but, of
course, you know what she’s after.”
“Not, at any rate, you,” she quizzed.
At this he laughed out, “Oh, Lord, no!”
Their common amusement was made up of their common
knowledge of his shabby income, his opera still on probation, and his
purely potential career.
The speed of the train was notably slackening. The porter had
made the round with his whisk-broom, and was carrying bags and
golf-kits to the outer platform. The greater number of travelers had
risen, and were rushing or rustling into their coats. Most of these
people seemed to know one another, were all bound for a common
goal—the little city of country houses. In the next three days they
would all meet half a dozen times. They exhaled the heady
atmosphere of their small, smart community.
The stucco front of the San Mateo station slid slowly past the
window. When the train finally came to a stop the chair-car was at
the far end of the long platform, its windows commanding the full
curve of the drive where it swept out of the encroaching trees.
The two, who remained seated in the midst of the general
departure, now realized that the exodus would leave them solitary.
“Good!” said Longacre, contentedly, settling more comfortably into
his chair.
His companion leaned forward to look down the long wooden
platform where, already, the newly alighted travelers were
segregating themselves and their parties, one from another, and
were being driven away in a light whirl of dust. The travel seemed all
arrival. One or two callow, negligent college boys swung aboard the
smoker. The porter took up the stool.
“I really believe—” Mrs. Essington began. The sight of a victoria
lurching around the turn of the drive stopped her sentence.
The vehicle, so indisseverably connected with state and dignity of
progression, bounded at the heels of galloping horses, its occupant
leaning forward with the air of one who would accelerate top speed.
The rigs, driving away from the station, parted for its onward rush.
Heads craned toward it. There was a chorus of laughing recognitions.
A man swung his hat. The train gave a preliminary pulse and quiver
as the victoria came to a violent halt, and the lady sprang out in a
puff of light silk, and ran fluttering and flapping along the platform.
The conductor and porter, all agrin, with an arm under each of her
elbows hoisted her to the step of the now moving train. The footman
threw up the last of half a dozen bags.
Mrs. Essington leaned back and laughed silently across to her
companion.
“A victoria! Wouldn’t you know she would!” he observed half
quizzically, half ruefully.
“She’s so, pretty!”
“Oh, pretty,” he conceded generously enough, as the lady’s full-
throated laugh preceded her into the car.
She fairly burst upon them, laughing, blooming, glittering.
“Of all people! You dear things!” She squeezed a hand of each
affectionately. “Don’t tell me there is nothing in premonition! I had
one when I told James the horses must gallop. ‘James,’ I said, ‘it is
absolutely necessary that I catch that train, if I get out and run for it.’
James adores me, though of course he knew we looked ridiculous.
But it doesn’t matter, now that I have you—and just as I was
expecting to be alone all the way to Monterey!”
She sighed, and sank into the seat Longacre had swung round for
her; rose again to be helped out of her coat; removed her hat;
caressed her coiffure; resettled in her chair and shifted the fluttering
folds of her skirts, with a regret or two for her own helplessness and
a hope that the forbearance of her friends was not merely
forbearance. Her almond eyes, blue shot with green, implored
Longacre’s to refute the self-accusation. But he chose to do so in a
neat sentence.
Watching her, he had a sense that by her vivacity she staved off
the reproach of superabundant flesh. It was marvelous, the way the
avoirdupois seemed to lessen under her animation. The wide cheeks
flaring away from the dwindling chin; the tight, rosy little mouth
drawn up at the corners in a faint, perpetual smile; the tortoise-shell
combs that pressed her glossy hair close above her pointed ears, all
reminded Longacre irresistibly of a tortoise-shell—but he stopped the
simile to answer Cissy Fitz Hugh’s appeal concerning the fate of his
opera.
He answered automatically this question, that had of late begun to
weary him, acceding good-naturedly to Mrs. Fitz Hugh’s sweeping
declaration of her passion for music in general; but he was unhappily
aware that Florence Essington had teasingly assumed the remote but
interested air of a spectator at what threatened to be a tête-à-tête.
Nay, more: her eyes laughed at his attempts to draw her back. He
had the aggrieved feeling of a child whose game has been spoiled.
Well, if Florence wouldn’t play, neither would he. But he was pleasant
about it. He slid easily from good-humored flattery to genial silence,
from genial silence to the smoking-car.
Cissy watched his departure with a pettish mouth. But when the
sharp snapping of the vestibule door had shut the two women in
together she extended her small, plump feet with a luxurious stretch,
and turned to Mrs. Essington with a “Well, my dear!” that implied, “At
last!” She created the impression that she had lived only for this
moment. Florence seemed to see herself exhibited as Cissy’s sole
confidante.
“You know,” Cissy began, “it was so sweet of Emma Budd to ask
me for the week’s end, though of course I don’t hunt—but with poor
Freddy on his back since the pony-races, and all the horrid fuss with
the plumbing—and the lawsuit, I’ve been really too anxious for
pleasure.” She passed a plump hand over an unlined brow.
“But when Emma rang up yesterday to beg, and happened to let
drop your name, I said, ‘If Mrs. Essington is going I really will make
one effort.’” She beamed with candor.
Florence’s smile surmised that the name for which the effort had
been made was more probably Fox Longacre’s. But Cissy’s
complacence was impervious.
“It was a delightful surprise to hear you were going! You come to
us so little!” she lamented.
“Who could resist the country in September?” Florence felt unable
to add amenities to the already overcharged atmosphere.
“Oh, of course! I just crave the country!” Cissy agreed.
“Then the hunting—” Florence continued, aware that quite
different reasons were expected of her—“Mrs. Budd makes her
parties interesting with their variety.”
“Oh, yes—variety,” Cissy cut in. “Emma just craves it! Did you know
she’s asked D. O. Holden—and he’s going?”
At Cissy’s round-eyed pause, Florence felt an inclination to laugh.
Variety seemed to her the last word reminiscent of Holden. Looking
back over the past six months, he appeared to her the one strong,
unvarying, dominant, reiterated note in her resumed American
experiences.
“Really!” she managed with gravity.
“Really!” Cissy echoed impressively. “But why such a man, who
doesn’t care for anything but railroads, should be going to Emma,
who doesn’t care for anything but marrying Julia—Of course”—her
shallow eyes endeavored to plumb Mrs. Essington’s—“he’s going for
something in particular.” She topped it off with her laugh, that
seemed to fill her thick throat.
“Perhaps,” Florence helped her out, “he’s going for the same
reason that you are?”
Cissy looked both blank and disconcerted.
“Poor man, he’s usually too anxious for pleasure!” Florence
explained.
Cissy took it in seriously. “Really the fact is, a woman is never free
from her cares! But a man, when he rests, rests so completely!”
She sighed, with her eyes on the door through which Fox Longacre
had departed.
She added inconsequently, “You know Emma has asked my cousin
Charlie Thair. Of course it’s perfectly plain why Emma asked him. The
wonder is that he dares to go!” Florence could only guess at the
situation, but she thought the wonder would have been if Thair had
dodged it. “Though it’s perfectly indecent of him, I’m sure, with his
money, not to marry,” Cissy ran on; “and of course Julia is a
magnificent creature. But the idea of expecting to really ‘land’
Charlie! It’s too funny! So like dear Emma.”
Upon this point Florence was, silently, in accord with Mrs. Fitz
Hugh. She could see—from Mrs. Budd’s point of view that every
eligible man not only should, but sooner or later would, marry some
suitable girl—how the proposition was a reasonable one. But she felt
there was as slight a possibility of Charlie Thair’s being unseated
from his bachelor state as from his hunting-saddle.
“Was there”—it was the following thought—“such a scant
possibility of Fox Longacre?”
She turned from her vis-à-vis to the window, as the train, with a
roar and a swing, rushed into the cañon, and fixed her eyes on the
dizzy fascination of the whirling river below.
The stream of events of the last five years was more rapid and
intricate to the vision of her mind. The first light ripple on this stream
Welcome to our website – the perfect destination for book lovers and
knowledge seekers. We believe that every book holds a new world,
offering opportunities for learning, discovery, and personal growth.
That’s why we are dedicated to bringing you a diverse collection of
books, ranging from classic literature and specialized publications to
self-development guides and children's books.

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


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

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


personal growth every day!

testbankdeal.com

You might also like