Test Bank for Python for Everyone, 2nd Edition instant download
Test Bank for Python for Everyone, 2nd Edition instant download
download pdf
https://testbankmall.com/product/test-bank-for-python-for-everyone-2nd-
edition/
https://testbankmall.com/product/solution-manual-for-python-for-
everyone-2nd-edition/
https://testbankmall.com/product/solution-manual-for-python-for-
everyone-2nd-edition-horstmann/
https://testbankmall.com/product/test-bank-for-fundamentals-of-python-
data-structures-2nd-edition-kenneth-lambert/
https://testbankmall.com/product/test-bank-for-maders-understanding-
human-anatomy-physiology-10th-edition-susannah-longenbaker/
Financial Management Theory and Practice Brigham 14th
Edition Solutions Manual
https://testbankmall.com/product/financial-management-theory-and-
practice-brigham-14th-edition-solutions-manual/
https://testbankmall.com/product/test-bank-for-principles-of-
genetics-6th-edition-d-peter-snustad/
https://testbankmall.com/product/solution-manual-for-positive-child-
guidance-7th-edition/
https://testbankmall.com/product/test-bank-for-chemistry-principles-
and-reactions-7th-edition-william-l-masterton-download/
https://testbankmall.com/product/test-bank-for-legal-and-ethical-
issues-for-health-professions-3rd-edition/
Test Bank for Listen, Eighth Edition
https://testbankmall.com/product/test-bank-for-listen-eighth-edition/
1.1 Computer Programs
id
testbank-py-2-ch01-03
from
testbank-py-1-ch01-03
Title
Which parts of the computer store program code?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-1-ch01-04
Title
What is considered hardware
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-1-ch01-05
Title
What is a CPU?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-1-ch01-06
7. Computers store both data and programs not currently running in:
1. Primary storage.
2. Central processing unit.
3. Secondary storage.
4. Transistors.
Title
Where are programs and data stored?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-1-ch01-07
Title
What is considered input hardware?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-1-ch01-08
Title
What is considered output hardware?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-1-ch01-09
Title
What happens when a program begins to run?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-2-ch01-10
from
testbank-py-1-ch01-10
11. What part of the computer carries out arithmetic operations, such as addition, subtraction,
multiplication and division?
1. CPU
2. Network
3. Primary storage
4. Secondary storage
Title
What part of the computer performs arithmetic?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-2-ch01-11
from
testbank-py-1-ch01-11
13. What are two of the most important benefits of the Python language?
1. Advanced mathematical equations and fast programs
2. Ease of use and fast programs
3. Ease of use and portability
4. Fast programs and smaller programs
Title
What are the benefits of Python?
type
mc
Section
1.3 The Python Programming Language
id
testbank-py-2-ch01-13
from
testbank-py-1-ch01-13
1. Nothing, the variable total will be the sum of the three numbers
2. Python is case sensitive so Num1, Num2, and Num3 are undefined
3. total must be initialized to zero first
4. The numbers should be 10.0, 20.0 and 30.0
Title
What is wrong with the following code snippet?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-14
18. An integrated development environment bundles tools for programming into a unified
application. What kinds of tools are usually included?
1. A web browser
2. An editor and an interpreter
3. Presentation tools
4. Source files and bytecode files
Title
What kind of tools can be found in an integrated development environment?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-2-ch01-15
from
testbank-py-1-ch01-15
Title
What is the difference between an editor and a compiler?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-16
20. What reads Python programs and executes the program instructions?
1. editor
2. CPU
3. compiler
4. interpreter
Title
What is used to execute a Python program?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-17
Title
What extension is used for Python source files?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-18
22. By entering the command python3, the program runs in which mode?
1. interactive mode
2. print mode
3. command mode
4. backup mode
Title
What mode is invoked when the user enters "python" at the command prompt?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-19
23. The Python compiler reads the file containing your source code and converts it to:
1. machine code
2. assembly code
3. byte code
4. virtual machine code
Title
What type of code is created by the Python compiler?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-20
24. What is the correct sequence of steps invoked by the Python Interpreter:
1. source code -> virtual machine -> byte code ->compiler
2. source code -> compiler -> byte code -> virtual machine
3. compiler -> source code -> virtual machine -> byte code
4. byte code -> virtual machine -> source code ->compiler
Title
What is the role of the Interpreter?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-21
Title
What is the syntax for a comment line?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-2-ch01-22
from
testbank-py-1-ch01-22
31. A collection of programming instructions that carry out a particular task is called a:
1. program
2. compiler
3. function
4. comment
Title
What is a collection of programming instructions called?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-24
Title
How do you call a function?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-25
Title
What is a string in Python?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-27
Title
What is wrong with the code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-28
print(25 + 84)
1. 2584
2. 109
3. 25 + 84
4. Nothing, this code snipped causes a compile time error
Title
What is printed by a given code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-29
Title
What is printed by a given code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-30
Title
What is printed by a given code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-31
print("25 + 84")
1. 2584
2. 109
3. 25 + 84
4. Nothing, this code snipped causes a compile time error
Title
What is printed by a given code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-32
print(Hello)
Title
What is printed by a given code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-33
1. GoodMorningClass!
2. Good Morning Class!
3. Good Morning Class !
4. nothing, this code produces a syntax error
Title
What is printed by a given code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-34
Title
What is another name for a compile-time error?
type
mc
Section
1.6 Errors
id
testbank-py-1-ch01-35
44. Although the following code statement is valid, print(10/0), what will happen when
this code is executed?
1. The program prints 0
2. The error message ZeroDivisionError: int division or modulo by zero
is displayed
3. The program runs, but nothing is printed
4. The error message SyntaxError: EOL while scanning string literal
Title
What is another name for a compile-time error?
type
mc
Section
1.6 Errors
id
testbank-py-1-ch01-36
45. The programmer, not the compiler, is responsible for testing a program to identify what?
1. Undefined symbols
2. Syntax errors
3. Logic errors
4. Out-of-memory errors
Title
The programmer, not the compiler, is responsible for testing a program to identify?
type
mc
Section
1.6 Errors
id
testbank-py-1-ch01-37
46. What is it called when you describe the steps that are necessary for finding a solution to a
problem in programming?
1. algorithm
2. compile
3. interpret
4. code
Title
What is it called when you describe the steps that are necessary for finding a solution to a
problem in programming?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-1-ch01-38
47. The following pseudocode calculates the total purchase price for an item including sales
tax, what is the missing last line?
48. Start by setting the total cost to zero.
49. Ask the user for the item cost.
50. Ask the user for the tax rate.
51. Set the item tax to item cost times tax rate.
_________________________________
1. Set the total cost to the item cost plus the tax rate.
2. Set the total cost to the item cost times the tax.
3. Set the total cost to the item cost plus the tax.
4. Set the total cost to the item tax.
Title
What is the missing pseudocode?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-1-ch01-39
52. What is the purpose of the following algorithm, written in pseudocode?
53. num = 0
54. Repeat the following steps 15 times
55. Ask user for next number
56. If userNum > num
57. num = userNum
58. Print num
1. To print out the 15 numbers
2. To find the smallest among 15 numbers
3. To search for a particular number among 15 numbers
4. To find the highest among 15 numbers
Title
What is the purpose of this algorithm?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-1-ch01-40
Title
Which of the following is NOT an example of an algorithm?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-1-ch01-41
Title
Which of the following pseudocode statements represents a decision statement?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-1-ch01-42
Title
Which of the following pseudocode statements represents a repetition statement?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-2-ch01-43
from
testbank-py-1-ch01-43
Title
Which of the following is NOT important when writing pseudocode?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-2-ch01-44
from
testbank-py-1-ch01-44
63. Imagine that you are planning to buy a new cell phone. After doing some research, you
have determined that there are two different cell phones that will meet your needs. These
cell phones have different purchase prices and each mobile service provider charges a
different rate for each minute that the cell phone is used. In order to determine which cell
phone is the better buy, you need to develop an algorithm to calculate the total cost of
purchasing and using each cell phone. Which of the following options lists all the inputs
needed for this algorithm?
1. The cost of each cell phone and the rate per minute for each cell phone
2. The cost of each cell phone and the number of minutes provided with each cell
phone
3. The cost of each cell phone, the rate per minute for each cell phone, and the
number of minutes provided with each cell phone
4. The cost of each cell phone, the rate per minute for each cell phone, and the
number of minutes you would use the cell phone
Title
Which inputs do you need to calculate cost of purchasing/using cell phone?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-2-ch01-45
from
testbank-py-1-ch01-45
64. In order to run Python programs, the computer needs to have software called a(n)?
1. debugger
2. interpreter
3. windows
4. assembler
Title
Software needed to run Python on a computer?
type
mc
Section
1.3 The Python Programming Language
id
testbank-py-1-ch01-46
Title
What is a Python virtual machine?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-2-ch01-47
from
testbank-py-1-ch01-47
Title
Software needed to run Python on a computer?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-2-ch01-48
from
testbank-py-1-ch01-48
Title
What does this algorithm produce?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-2-ch01-49
from
testbank-py-1-ch01-49
Title
What is a list of steps that are unambiguous, executable, and terminating called?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-1-ch01-50
Title
What are computer programs comprised of?
type
mc
Section
1.1 Computer Programs
id
testbank-py-1-ch01-51
89. Which of the following is not a benefit of the Python programming language compared
to other popular programming languages like Java, C and C++?
1. Python encourages experimentation and rapid turn around
2. Python has a cleaner syntax
3. Python is easier to use
4. Python programs run more quickly
Title
What are the benefits of Python compared to other programming languages?
type
mc
Section
1.3 The Python Programming Language
id
testbank-py-1-ch01-52
90. Which of the following code segments will display Hello World! when it is run?
1. print(Hello "," World"!")
2. print("Hello", "World!")
3. print("Hello", "World", "!")
4. print("Hello", ",", "World", "!")
Title
Which code segment displays the desired result?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-53
91. When a function is called, the values placed in parentheses are referred to as:
1. arguments
2. keywords
3. operators
4. statements
Title
What are the parts of a function call?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-54
92. Which type of error is usually the most difficult to locate in your program?
1. Indentation Error
2. Logic Error
3. Syntax Error
4. Zero Division Error
Title
Which type of error is most difficult to locate?
type
mc
Section
1.6 Errors
id
testbank-py-1-ch01-55
Random documents with unrelated
content Scribd suggests to you:
ant bed, over which we crawl and scramble, and run this way and
that, apparently without purpose or design.
That light streak across the sky, which we call the Milky Way, is
nothing more nor less than the foam spilt from tankards of nectar as
the gods quaff and laugh at our strange antics. But it is Christmas
eve, and what do we care for their laughter? Turn up the lights; let
the curtain rise, and the Christmas crowd is on!
Did you ever watch a young lady buy a Christmas present for her
father?
If not, you have missed a good thing.
They all go about it the same way. In fact, young ladies who buy
Christmas presents for their fathers are just as sure to perform the
operation in exactly the same way, as they are to sit on one foot
while reading a novel. She always has just two dollars for this
purpose, which is handed her by her mother, who suggests the idea.
She goes out late in the afternoon on the day before Christmas. She
first goes to a jeweler’s and looks at several trays of diamond
studded watches, and wonders which one her father would like.
Then, after examining about one hundred diamond rings, she
suddenly remembers the amount of money she has, sighs and goes
off to a clothing store, where she closely scrutinizes an $18 smoking
jacket, and a $40 overcoat. She says she believes she will think over
the matter before buying, and leaves. Next she visits a book store,
three dry goods stores, two more jewelers, and a candy shop. When
Christmas morning comes, her father finds himself the proud
possessor of a new red pen wiper with the fifteen cent cost mark
carefully erased, and there are to be observed in a certain young
lady’s dressing case a new pair of gloves and a box of nice chocolate
bonbons.
The fat man who is taking home a red wagon is abroad in the land.
He is generally a pompous man who prides himself on being self-
made, and glories in showing his democracy by carrying home his
own bundles. He holds the wagon in front of him and pushes his
way through the crowd with a sterling-citizen-risen-from-the-ranks
air that is quite wonderful to observe.
How the girls in their cloaks with high turned-up collars laugh and
chatter and gaze in the show windows with “Oh’s” and “Ah’s” at
everything they see! If you happen to be standing near a group of
them you will hear something like this:
“Oh, Mabel, look at that lovely ring—squeezed my hand and said—
sealskin, indeed! I guess I know plush when—and five from Papa, so
I guess I’ll buy that—going to hang them up, of course; I bet they’ll
hold more than yours, you old slim—good gracious! Belle let me pin
your—papa asked him how he wanted his eggs for breakfast, and
Charlie got mad and left, and the clock hadn’t struck—No, I wear
these kind that—sixteen inches around the—Oh! look at that lovely-
forgot to shave, and it scratched all along—I’ll trade with you, Lil;
Tom said—with lace all round the—come on, girls, let’s—”
The noise of a passing street car drowned the rest.
The children are out in full force.
Did you ever reflect that children are the wisest philosophers in
the world? They see the wonderful things in the windows for sale;
and they listen gravely to the tales told them of Santa Claus; and,
without endeavoring to analyze the situation, they rejoice with
exceeding joy. They never measure the chimney or calculate the size
of Santa’s sleigh; they never puzzle themselves by wondering how
the old fellow gets his goods out of the stores, or question his
stupendous feat of climbing down every chimney in the land on the
same night. If grown folks would dissect and analyze less things that
are mysteries to them, they would be far happier.
Two men meet on Main Street and one of them says:
“I want you to help me think. I want to get even with my wife this
Christmas, and I don’t exactly know how to do it. For the last five
years she has been making me ostensible Christmas presents that
are not of the slightest possible use to me, but are very convenient
for herself. Under the pretense of buying me a present, she simply
buys something she wants for herself and uses Christmas for a cloak
for her nefarious schemes. Once she gave me a nice wardrobe, in
which she hangs her new dresses. Again she gave me a china tea
set; at another time a piano; and last Christmas she made me a
present of a side-saddle, and I had to buy her a horse. Now I want
to get something for her Christmas present this year that I can use,
and that will be of no possible service to her.”
“H’m,” said the other man thoughtfully, “it’s going to be a hard
thing to do. Let’s see. You want something she can’t make use of. I
have it! Have yourself a new pair of trousers made, and present
them to her.”
“Won’t do,” says the first man, shaking his head. “She’d have ’em
on in ten minutes and be clamoring for a bicycle.”
“Buy her a razor, then; she can’t use that.”
“Can’t she? She has three corns.”
“Say! There ain’t anything you can get that you can use and she
can’t.”
“Don’t believe there is. Well, let’s go take something anyhow.”
The lights are beginning to burn in the show windows, and people
are gathering in front of them.
To many of the lookers-on this gazing in the windows is all the
Christmas pleasure they will have. Many of them are from the
country and little towns along the fourteen lines of railroad that run
into Houston. A country youth presses through the crowd with open
mouth and wondering eyes. Holding fast to his hand, follows
Araminta, bedecked in gorgeous colors, beholding with scarce-
believing optics the fairy-like splendors of Main Street. When they
return to Galveston they will long remember the glories of the great
city they visited at Christmas.
A solemn man in a high silk hat, attired in decorous black, edges his
way along the sidewalk. One would think him some city magnate
making his way home, or a clergyman out studying the
idiosyncrasies of human nature. He opens his mouth and yells in a
high, singsong voice: “What will mamma say when Willie comes
home with a mustache just like papa’s—buy one right now, boys;
you can curl ’em, twist ’em, pull ’em, and comb ’em just like real
ones—come on boys!” He fixes below his nose a black mustache
with a wonderful curl to the ends and goes his way, occasionally
selling one to some smooth-faced boy, who shyly makes his
purchase. On the edge of the sidewalk a little man is offering “the
most wonderful mechanical toy of the century, causing more
comment and excitement than any other article exhibited at the
great World’s Fair.” The public crowds about him and buys with
avidity. Not twenty steps away in a Houston toy shop the same kind
of toy has been sold for years.
On a corner stand a group of—well, say young men. They wear new
style high turn-down collars and chrysanthemums. Their hats tilt
backward and their front hair is brushed down low. They are gazing
at the ladies as they pass. How Charles Darwin would have loved to
meet these young men! But, alas! he died without completing the
chain. Listen at the scraps of alleged conversation that can be
distinguished above their simultaneous jabber:
“Deuced fine girl, but a little too—cigarette? I’ll owe you one—
she’s a nice girl, but—the loveliest necktie you ever—would have
paid my board, but saw that elegant suit at—kicked me clear out of
the parlor without—that girl has certainly got a—haven’t a cent, old
man, or I would—old man said I had to go to work, but—look at that
blonde with the smiled right at me, and—the little one with the blue
—he struck me in the eye, and I won’t speak to him now—no, the
brunette in the white—I was real mad, and said, confound it—link
buttons, of course.”
Gazing with far off, longing eyes into a show window that glistens
with diamonds and jewelry, stands a woman.
Her black dress and veil proclaim that she is a widow. One year
ago the strong arm upon which she leaned with such love and
security was her pride and joy. Tonight, beneath the sod of the
churchyard, it is turning back to dust. And yet, she is not altogether
desolate. She has sweet memories of her loved one to sustain her;
and besides that, she is holding to the arm of the man she is
engaged to marry when her time of mourning is up, and she is out
selecting an engagement ring.
We that would properly welcome the new year should view it with
the eye of an optimist, and sing its praises with the coated tongue of
a penitent.
We should dismiss from our hearts the cold precept that history
repeats itself, and strive to believe that the deficiencies of the day
will be supplied by the morrow. Since fancy whispers to us that at
the stroke of midnight the old order will change, yielding to the new,
let us put aside, if possible, all knowledge to the contrary and revel
in the fairy tale told by the merry bells.
Man’s arbitrary part of the time into hours, days and years causes
no perceptible jolt beneath the noiseless pneumatic tire of the cycle
of years. No mortal tack can puncture that wheel. Old Father Time is
a “scorcher,” and he rides without lamp or warning bell. The years
that are as mile-stones to us are as gravel spurned beneath him. But
to us, of few days and an occasional night off, they serve as
warnings to note the hour upon the face of a mighty clock upon
which the hands move silently and are never turned back.
The New Year is feminine. There is no question but that the world
has become badly mixed as to the gender of time. And again, the
New Year is no cherubic debutante with eyes full of prophetic joys,
but a grim and ancient spinster who flutters coyly into our presence
with a giddy giggle, rejuvenated for the occasion. We have made
obeisance to those same charms time out of mind; we have
whispered soft nothings into those same ears many moons ago; we
have lightly brushed those painted and powdered cheeks in time
gone by when they glowed with the damask bloom of youth. But let
us hug once more the dear delusion. Let us say that she is fair and
fresh as the rising morn, and make unto ourselves a season of mirth
and heedless joy.
The fiddles strike up and the hautboys sigh. Your hand, sweet, coy
New Year—take care of that rheumatic knee—come, let us foot it as
the gladsome bells proclaim your debut—number 1896.
The last day of the year is generally spent in laying in as big a stock
as possible of things suitable for use the next day for swearing-off
purposes.
It is so much easier to resolve to do without anything when we
have just had too much of it. How easy it is on New Year’s day, just
after dinner, when we are full of good resolutions and turkey, to
kneel down and solemnly affirm that we will never touch food again.
The man who on the morning of the glad New Year stands trembling
with fear on the center table, while snakes and lizards merrily play
hide and seek on the floor, finds no difficulty in forswearing the
sparkling bowl. The dark brown, copper-riveted taste which
accompanies what is known to the medical profession as the New
Year tongue, is a great incentive to reform.
The beautiful siren-like, Christmas-present cigar that is so fair to
gaze upon, when lit turns like a viper and stings us into abjuring my
Lady Nicotine forever.
When we attempt to sit upon the early scarlet runner, hand-
embroidered rocking-chair cushion presented to us by our maiden
aunt and slide out upon the floor upon our spinal vertebrae, we feel
inclined to kneel in our own blood with a dagger between our teeth
and swear by heaven never to sit down again.
When we go upon the streets wearing the neckties presented to
us by our wife, and the loiterer upon the corner sayeth, “Ha, Ha,”
and the newsboy inquireth, “What is it?” is it any wonder that we
curse the necktie habit as an enemy of man, and on New Year’s
morning swear to abjure it forever?
When we say farewell, and with clenched teeth wend our way into
the shirt made for us by the fair hands of our partner in sorrow, and
find the collar tighter than the last one worn by the late lamented
Harry Hayward, and the tail thereof more biased than a populist
editorial, and the bosom in billowy waves that heave upon our manly
chest like a polonaise on a colored cook on Emancipation Day, and
the sleeves dragging the floor as we walk about, saying, “It’s so
nice, my dear—just what I wanted,” what wonder that we register
an oath with the Lord of Abraham and Jacob as the glad New Year
bells peal out, nevermore to wear again a garment made by that
portion of the earth’s inhabitants that sits on the floor to put on its
shoes, and regards the male torso as a waste basket for remnant AA
sheeting and misfit Butterick patterns?
There are so many things we take a delight in forswearing on New
Year’s Day.
Midnight draws on apace, and while some welcome with revelry the
advent of the New Year, others stray in the land of dreams, and
allow it to approach unheralded.
Ladies over 30 years of age take on a grim look about the jaw,
and bend with a deadly glitter in their eyes over the article in the
Sunday paper that treats of “How to avoid wrinkles,” and sadly shake
their heads when they read that Madame Bonjour, the famous
French beauty, kept young and lovely until after 110 years of age by
using Bunker’s Bunco Balm.
The New Year brings to them sad prospects of another gray hair,
or a crow’s foot around the eye.
About the time that Alonzo bids his Melissa the fourteenth farewell
at the garden gate, and pater familias calls angrily from his noisily
raised window, there sets forth into the city a straggling army of
toilers whose duties lead them into laborious ways while the great
world slumbers more or less sweetly upon its pillow.
Time was when all honest burghers were night-capped and
somnolent at an early hour, and the silent streets knew naught but
the echoing tread of the watchman who swung his lantern down the
lonesome ways and started at his own loud cry of “All’s Well.” But
modern ideas have almost turned the night into day. While we
slumber at home, hundreds are toiling that we may have our
comforts in the morning. The baker is at work upon our morning
rolls; the milkman is at his pump; the butcher is busy choosing his
oldest cow to kill; the poor watchman is slumbering in a cold
doorway; the fireman is on the alert; the drug clerk sits heavy-eyed,
prepared to furnish our paregoric or court plaster; the telephone girl
chews gum and reads her novels while the clock chimes wearily on;
the printer clicks away at his machine; the reporter prowls through
the streets hunting down items to go with our coffee and toast; the
policeman lurks at a corner, ready to smash our best hat with his
deadly locust.
These night workers form a little world to themselves. They grow
to know each other, and there seems to be a sympathy among them
on account of their peculiar life. The night policemen, and morning
newspaper men, the cab drivers, the street cleaners (not referring to
Houston now), the late street car drivers, the all-night restaurant
men, the “rounders,” the wiernerwurst men and the houseless
“bums” come to know and greet one another each night on their
several regular or aimless rounds. Only those who are called by
business or curiosity to walk into this night world know of the
strange sights it presents.
At 12 o’clock the night in the city may be said to begin. By that
time the day toilers are at home, and the night shift is on. The street
cars have ceased to run, and the last belated citizen, hurrying home
from “the lodge” or the political caucus is, or should be, at home.
Even the slow-moving couples who have been to the theater and
partaken of oysters at the “café for ladies and gents,” have bowed to
the inevitable and reluctantly turned homeward.
And now come forth things that flourish only in the shade; white-
faced things with owl-like eyes who prowl in the night and greet the
dawn with sullen faces and the sunlight with barred doors and
darkened windows.
Here and there down the streets are arc lights, and swinging
doors, and about are grouped a pale and calm-faced gentry with
immaculate clothes and white flexible hands. They are soft-voiced
and courteous, but their eyes are shifty and their tread light and
cruel as a tiger’s. They are gamblers, and they will “rob” you as
politely and honestly as any stock broker or railroad manipulator in
Christendom. Byron says:
“The devil’s in the moon for mischief; not the longest day;
The twenty-first of June sees half the mischief in a wicked way
As does three hours on which the moonshine falls.”
The tramp sits out the weary hours of the night or else wanders in
dreary aimlessness about the streets, or crawls into some vestibule
or doorway for a few brief hours of unquiet slumber.
His is a pitiful solution of life at its best, for, though he has
acquired a numbness in place of what was once a keen pain, it is
directly contrary to the plan of the human mind to await in hopeless
stolidity the “certain alms” of death.
Mr. Hale realizes the transient nature of such verse as the journalist
must needs write to fill space, although he has written in this way
some gems that study could scarcely improve upon.
It is doubtful if Mr. Frank Stanton, who has struck some high and
abiding chords upon his lyre, could be, or would care to be,
remembered by the jingles he turns out daily for his newspaper. Yet,
if the popular impression is correct, Mr. Stanton aspires to poetic
proficiency and fame.
One poem on which he would spend days of labor would do much
more toward gaining him reputation than the wonderful number of
rhymes that he turns out within that space of time.
A short time ago he dashed off two or three verses on a Midway
dancer, called something like “Papinta,” that had a rhythm and a lilt
and swinging grace to it that were fascinating and truly admirable.
The poem was delicate, airy and sprite-like, and one could almost
see the form of the dancer and hear the castanets and guitars while
reading the musical lines.
But the amount of verse he writes daily will not permit of such a
high average, and the moral of it all is that, while he is succeeding
as a journalist and an interesting writer upon the day’s topics, his
future as a poet is not being benefited by his overproduction of
poetry at present.
testbankmall.com