Java Programming 9th Edition Joyce Farrell Test Bank instant download
Java Programming 9th Edition Joyce Farrell Test Bank instant download
https://testbankfan.com/product/java-programming-9th-edition-
joyce-farrell-test-bank/
https://testbankfan.com/product/java-programming-9th-edition-
joyce-farrell-solutions-manual/
https://testbankfan.com/product/java-programming-7th-edition-
joyce-farrell-test-bank/
https://testbankfan.com/product/java-programming-8th-edition-
joyce-farrell-test-bank/
https://testbankfan.com/product/java-programming-8th-edition-
joyce-farrell-solutions-manual/
Java Programming 7th Edition Joyce Farrell Solutions
Manual
https://testbankfan.com/product/java-programming-7th-edition-
joyce-farrell-solutions-manual/
https://testbankfan.com/product/java-programming-9th-edition-
farrell-solutions-manual/
https://testbankfan.com/product/programming-logic-and-design-
comprehensive-7th-edition-joyce-farrell-test-bank/
https://testbankfan.com/product/programming-logic-and-design-
comprehensive-7th-edition-joyce-farrell-solutions-manual/
https://testbankfan.com/product/object-oriented-approach-to-
programming-logic-and-design-4th-edition-joyce-farrell-test-bank/
Name: Class: Date:
2. The terms “literal string” and “string literal” have different meanings in Java programming.
a. True
b. False
ANSWER: False
3. When you compare Strings with the == operator, you are comparing their values, not their memory addresses.
a. True
b. False
ANSWER: False
4. When you must determine whether a String is empty, it is more efficient to compare its length to 0 than it is to use
the equals () method.
a. True
b. False
ANSWER: True
5. If you try to use an index that is greater than 0 or less than the index of the last position in the StringBuilder
object, you cause an error known as an exception and your program terminates.
a. True
b. False
ANSWER: False
7. In a compareTo() method, programmers often do not need specific return values but want to determine if a value is
positive or negative.
a. True
b. False
ANSWER: True
10. The StringBuffer class is more efficient than the StringBuilder class because it can execute multiple threads
during program execution.
a. True
b. False
ANSWER: False
Multiple Choice
12. A ____ is a class for storing and manipulating changeable data that is composed of multiple characters.
a. Character b. String
c. StringVariable d. StringBuilder
ANSWER: d
13. The methods of the Character class that begin with ____ return a character that has been converted to the stated
format.
a. is b. to
c. for d. in
ANSWER: b
16. Strings and other objects that can’t be changed are known as ____.
a. string constants b. accessor methods
c. immutable d. garbage
ANSWER: c
17. When you declare a variable of a basic, primitive type, such as int x = 10;, the memory address where x is
Copyright Cengage Learning. Powered by Cognero. Page 2
Name: Class: Date:
18. The String class ____ method evaluates the contents of two String objects to determine if they are equivalent.
a. equals() b. toString()
c. charAt() d. replace()
ANSWER: a
19. A(n) ____ comparison is based on the integer Unicode values of the characters.
a. integer b. symbol
c. lexicographical d. character
ANSWER: c
20. The method header of the equals() method within the String class is ____.
a. public boolean equals(Strings)
b. private boolean equals(String s)
c. public boolean equals(String s)
d. public boolean equals(Character s)
ANSWER: c
21. When the String class ____ method is used to compare two Strings, it provides additional information to the user
in the form of an integer value.
a. toString() b. compareTo()
c. equals() d. equalsIgnoreCase()
ANSWER: b
23. The ____ method allows you to replace all occurrences of some character within a String.
a. substring() b. toString()
c. replaceCharacter() d. replace()
ANSWER: d
25. To convert a String to an integer, you use the ____ class, which is part of java.lang and is automatically imported
26. The ____ method takes a String argument and returns its double value.
a. parseString() b. parseInt()
c. parseDouble() d. returnDouble()
ANSWER: c
You can tell that parseInt() is a(n) ____ method because you use it with the class name and not with an object.
a. programmer-defined b. instance
c. static d. immutable
ANSWER: c
28. A StringBuilder object contains a memory block called a _____, which might or might not contain a string.
a. capacity b. buffer
c. reference d. thread
ANSWER: b
29. The creators of Java chose ____ characters as the “extra” length for a StringBuilder object.
a. 12 b. 16
c. 36 d. 48
ANSWER: b
30. The ____ method lets you add characters at a specific location within a StringBuilder object.
a. charAt() b. insert()
c. append() d. setCharAt()
ANSWER: b
31. To alter just one character in a StringBuilder, you can use the ____ method, which allows you to change a
character at a specified position within a StringBuilder object.
a. charAt() b. insert()
c. append() d. setCharAt()
ANSWER: d
Given the lines of code above, which of the following regionMatches() expressions will result in a value of true?
a. oneStr.regionMatches(8, twoStr, 8, b. oneStr.regionMatches(0, twoStr, 0,
3) 7)
c. oneStr.regionMatches(8, twoStr, 0, d. oneStr.regionMatches(0, twoStr, 8,
Copyright Cengage Learning. Powered by Cognero. Page 4
Name: Class: Date:
34. Which of the following correctly declares and initializes a String object?
a. new String = Hello b. String greeting == "Hello";
c. String greeting = "Hello"; d. String new = "Hello"
ANSWER: c
36. The ____ class contains standard methods for testing the values of characters.
a. char b. character
c. StringChar d. Character
ANSWER: d
37. The ____ method and the startsWith() method each take a String argument and return true or false if
a String object does or does not end or start with the specified argument, respectively.
a. beginsWith() b. strEnd()
c. endsWith() d. length()
ANSWER: b
38. The String class ____ method is similar to the equals() method. As its name implies, this method does not
consider case when determining if two Strings are equivalent.
a. equalsCase() b. equalsOmitCase()
c. equalsAllCase() d. equalsIgnoreCase()
ANSWER: a
40. The ____ method requires an integer argument that indicates the position of the character at that position, starting at 0.
a. charAt() b. setCharAt()
Copyright Cengage Learning. Powered by Cognero. Page 5
Name: Class: Date:
Matching
55. Takes two integer arguments: a start position and an end position
ANSWER: c
56. Describe how a string is a reference and how a string comparison is done.
ANSWER: As an object, a String variable name is not a simple data type—it is a reference; that is, a variable that holds
a memory address. Therefore, when you compare two Strings using the == operator, you are not comparing
their values, but their computer memory locations.
57.
In the above code, two strings are evaluated using the equivalency operator. Why can this be a problem, and what other
methods are offered by Java for working with characters and strings?
ANSWER: The problem stems from the fact that in Java, String is a class, and each created String is an object. As an
object, a String variable name is not a simple data type. It is a reference; that is, a variable that holds a
StringBuilder and StringBuffer - Classes for storing and manipulating changeable data composed
of multiple characters
58. Describe how a programmer would use the two types of Character class methods (those that begin with “is” and
those that begin with “to”) for testing the values of characters.
ANSWER: The methods that begin with “is”, such as isUpperCase(), return a Boolean value that can be used in
comparison statements; the methods that begin with “to”, such as toUpperCase(), return a character that
has been converted to the stated format.
59. Explain what is needed to declare a String variable and provide an example.
ANSWER: When you declare a String object, the String itself—that is, the series of characters contained in the
String—is distinct from the identifier you use to refer to it. You can create a String object by using the
keyword new and the String constructor, just as you would create an object of any other type. For example,
the following statement defines an object named aGreeting, declares it to be of type String, and assigns
an initial value of “Hello” to the String:
String aGreeting = new String("Hello");.
60. How is the String class equalsIgnoreCase() method like the equals() method and how would you use it?
Give an example.
ANSWER: The String class equalsIgnoreCase() method is similar to the equals() method. As its name
implies, this method ignores case when determining if two Strings are equivalent. Thus, if you declare a
String as String aName = "Carmen";, then aName.equals("caRMen") is false, but
aName.equalsIgnoreCase("caRMen") is true since the equalsIgnoreCase() method allows
you to test entered data without regard to capitalization. This method is useful when users type responses to
prompts in your programs. You cannot predict when a user might use the Shift key or the Caps Lock key
during data entry.
Using the above statements, what value will be returned by the equals() method? What will be the value of the
equalsIgnoreCase() method? Explain how the equalsIgnoreCase() method can be useful when users type
responses to prompts in programs.
ANSWER: The String class equalsIgnoreCase() method is similar to the equals() method. As its name
implies, this method ignores case when determining if two Strings are equivalent. Thus, if you declare a
String as String yourCounty = "perry", then yourCounty.equals("Perry")is false,
Copyright Cengage Learning. Powered by Cognero. Page 8
Name: Class: Date:
There is an important difference between empty Strings and null Strings. Explain the differences and why it is
important when making String comparisons.
ANSWER: The empty String example1 references a memory address where no characters are stored. The null
String example2 uses the Java keyword null so that example2 does not yet hold a memory address.
The unassigned String example3 is also a null String by default. A significant difference between
these declarations is that example1 can be used with the String methods, but example2 and example3
cannot. For example, assuming a String named anotherExample has been assigned a value, then the
comparison string1.equals(anotherExample) is valid, but
example2.equals(anotherExample) causes an error.
63. How can you use String methods to change the case of a string? Provide an example.
ANSWER:
The methods toUpperCase() and toLowerCase() convert any String to its uppercase or
lowercase equivalent. For example, if you declare a String as String aWord = "something";, then
the string “something” is created in memory and its address is assigned to aWord. The statement aWord =
aWord.toUpperCase(); creates “SOMETHING” in memory and assigns its address to aWord. Because
aWord now refers to “SOMETHING,” aWord = aWord.toLowerCase(); alters aWord to refer to
“something”.
Using the above statement, write the length() method that will return the length of the greeting String. Store
the length in an integer named greetingLength.
ANSWER: int greetingLength = greeting.length();
Using the above String, create the String method to convert the greeting String to all uppercase. Likewise,
create the String method to convert the greeting String to all lowercase.
ANSWER: To convert to uppercase:
greeting = greeting.toUpperCase();
To convert to lowercase:
greeting = greeting.toLowerCase();
Using the above statement, write the length() method that will return the length of the aName String. What value
will the length() method return when executed?
ANSWER: int len = aName.length();
Using the above code, what will be the value of the charAt() method once the code executes? Explain how the
charAt() method operates.
ANSWER: The charAt() method requires an integer argument that indicates the position of the character that the
method returns, starting with 0. In the above example, myCounty is a String that is examined by the
charAt() method. The value of myCounty.charAt(6) is “J”.
What value will be returned by the startsWith() method? Explain how the startsWith() method deals with case
sensitivity.
ANSWER: The startsWith() method takes a String argument and returns true or false if the String object
does or does not end or start with the specified argument. In this example, String yourCounty =
"Clark" and yourCounty.startsWith("Cla") is true. These methods are case sensitive, so if
String yourCounty had been "clark", the value returned would have been false.
70. What is the purpose of the substring() method and how do you use it?
ANSWER: You can extract part of a String with the substring() method, and use it alone or concatenate it with
another String. The substring() method takes two integer arguments—a start position and an end
position—that are both based on the fact that a String’s first position is position zero. The length of the
extracted substring is the difference between the second integer and the first integer; if you write the method
without a second integer, the substring extends to the end of the original string.
}
}
Accepting a String from a user is common practice. Using the above code, write the statements to accept a String
response from a user. Prompt the user with “Enter your name”. Then use the charAt() method to extract the first
character of the String.
Copyright Cengage Learning. Powered by Cognero. Page 10
Name: Class: Date:
Using the above code, what will be the Boolean value after execution of the regionMatches statement? Explain
how the Strings are compared using the regionMatches() method.
ANSWER: The regionMatches() method can be used to test whether two String regions are the same. One
version of the regionMatches() method takes four arguments—the position at which to start in the
calling String, the other String being compared, the position to start in the other String, and the length of the
comparison.
The regionMatches() expression is true. The substring of firstString that starts at position 5 and
continues for five characters is “Maple”; the substring of secondString that starts at position 7 and
continues for five characters is also “Maple”.
74. How can you change the length of a String in a StringBuilder object?
ANSWER: You can change the length of a string in a StringBuilder object with the setLength() method. The
length of a StringBuilder object equals the number of characters in the String contained in the
StringBuilder. When you increase a StringBuilder object’s length to be longer than the String it
holds, the extra characters contain ‘\u0000’. If you use the setLength() method to specify a length shorter
than its String, the string is truncated.
75. Why would you use the append() method? Provide an example.
ANSWER: The append() method lets you add characters to the end of a StringBuilder object. For example, the
following two statements together declare phrase to hold “Happy” and alter the phrase to hold “Happy
birthday”:
StringBuilder phrase = new StringBuilder("Happy");
phrase.append(" birthday");
76. Strings and other objects that can't be changed are said to be immutable. What does this mean and how does it
relate to values held in memory addresses?
ANSWER: In Java, the value of a String is fixed after the String is created; Strings are immutable, or unchangeable. When
you write someString = "Hello"; and follow it with someString = "Goodbye";, you have neither changed the
contents of computer memory at the address represented by someString nor eliminated the characters
“Hello”. Instead, you have stored “Goodbye” at a new computer memory location and stored
the new address in the someString variable.
Using the above code and the charAt() method, what value will be assigned to the variable initial?
Copyright Cengage Learning. Powered by Cognero. Page 11
Name: Class: Date:
Using the above code and insert() method, describe how the phrase will appear after the code executes. How does the
insert() method work?
ANSWER: The String will appear as “Welcome home Joe”. The insert() method lets you add characters at a
specific location within a StringBuilder object. The first character in the StringBuilder object
occupies position zero.
Use the append() method to add the characters “home” to the end of the StringBuilder object created above.
ANSWER: greeting.append(" home");
(Be sure that the String in double quotes has a blank space at the start. Otherwise, the Strings
"Welcome" and "home" will be appended without a blank space.)
Using the above StringBuilder, create a setCharAt() method that will change the “1” to a “2” in the String
"Day 1". Explain how the setCharAt() method operates.
ANSWER: greeting.setCharAt(4, '2');
To alter just one character in a StringBuilder, you can use the setCharAt() method, which allows
you to change a character at a specified position within a StringBuilder object. This method requires two
arguments: an integer position and a character. In the phrase “Day 1”, the greeting.setCharAt(4,
'2'); changes the value 1 to 2.
81. Give a code example of using the equivalence operator ("==") to compare the addresses of two strings where the
comparison will result in the value true. The example should produce output indicating the strings have the same value.
ANSWER: string stringA="Hello";
string StringB="Hello";
if(stringA==stringB)
System.out.println("stringA has the same address value as stringB");
82. What happens when you increase a StringBuilder object's length to be longer than the string it holds? What
happens if you set the length of a string to be shorter than the string it contains?
ANSWER: When you increase a StringBuilder object’s length to be longer than the String it holds, the extra
characters contain ‘\u0000’. If you use the
setLength() method to specify a length shorter than its String, the string is truncated.
Ingraham, Prentiss. Buffalo Bill’s body guard; or, The still hunt of the
hills. The story of the “robber of the ranges.” New York: Beadle &
Adams, 1892. 29 p. illus. fo. (no. 727.)
Aiken, Albert W. Dick Talbot’s clean cut. New York: Beadle & Adams,
1892. 29 p. illus. fo. (no. 729.)
Dunbar, Noel. Duke Despard, the gambler duellist. New York: Beadle
& Adams, 1892. 30 p. illus. fo. (no. 730.)
Knox, Jackson. The hurricane detective; or, Through thick and thin. A
romance of the toils and meshes of the great city. By Jackson Knox,
“Old Hawk.” New York: Beadle & Adams, 1892. 32 p. illus. fo. (no.
732.)
Aiken, Albert W. Dick Talbot, the ranch king. New York: Beadle &
Adams, 1892. 28 p. illus. fo. (no. 733.)
---- Talbot in Apache land; or, Dick Buckskin, the man of mettle. New
York: Beadle & Adams, 1892. 30 p. illus. fo. (no. 737.)
Aiken, Albert W. Dick Talbot’s close call; or, The cowboy dead-shot.
Ranch king Talbot in arms. New York: Beadle & Adams, 1893. 28 p.
illus. fo. (no. 741.)
Ingraham, Prentiss. Buffalo Bill’s flush hand; or, Texas Jack’s bravos. A
romance of the pard rivals on the Texas border. New York: Beadle &
Adams, 1893. 30 p. illus. fo. (no. 743.)
Badger, Joseph E. Sweep-stakes Sam, the silver sport; or, Major
Hold-up shows his hand. A romance of the twin lodes of Silverado.
New York: Beadle & Adams, 1893. 32 p. illus. fo. (no. 744.)
Aiken, Albert W. Gideon’s grip at Babylon Bar; or, The man with the
iron dagger. New York: Beadle & Adams, 1893. 29 p. illus. fo. (no.
753.)
Osbon, John W. The sport from St. Louis; or, The three sharks of Big
Ledge. New York: Beadle & Adams, 1893. 31 p. illus. fo. (no. 759.)
Eyster, William R. The sport of Silver Bend; or, The man with the
black mask. New York: Beadle & Adams, 1893. 30 p. illus. fo. (no.
767.)
Badger, Joseph E. Prince John, detective special. New York: Beadle &
Adams, 1893. 31 p. illus. fo. (no. 771.)
Aiken, Albert W. King Dandy, the silver sport. New York: Beadle &
Adams, 1893. 27 p. illus. fo. (no. 775.)
---- Pistol Tommy, the miner sharp; or, The Bobtail bonanza. New
York: Beadle & Adams, 1894. 31 p. illus. fo. (no. 797.)
Sims, A. K. The king-pin of the Leadville lions; or, Hepburn, the dude
detective from London. New York: Beadle & Adams, 1894. 32 p.
illus. fo. (no. 804.)
Patten, William G. Fire-eye, the thugs’ terror; or, Cockney Bob’s big
bluff. New York: Beadle & Adams, 1894. 32 p. illus. fo. (no. 810.)
Eyster, William R. Gentleman Dave, the dead game sport. New York:
Beadle & Adams, 1894. 31 p. illus. fo. (no. 818.)
Sims, A. K. Gid Gale’s block game; or, Old Silvertip’s tie-up at Tangled
Pine. New York: Beadle & Adams, 1894. 31 p. illus. fo. (no. 832.)
Ingraham, Prentiss. The wild steer riders; or, Texas Jack’s terrors. New
York: Beadle & Adams, 1894. 28 p. illus. fo. (no. 834.)
---- Buffalo Bill’s redskin ruse; or, Texas Jack’s death-shot. New York:
Beadle & Adams, 1895. 31 p. illus. fo. (no. 845.)
Eyster, William R. The stranger sport’s shake-up, or, Red-hot Rube’s
racket at Red Bend. New York: Beadle & Adams, 1895. 31 p. illus. fo.
(no. 852.)
Badger, Joseph E. High-water Mark, the sport; or, Silver-tip Sid, the
dead-center shot. New York: Beadle & Adams, 1895. 29 p. illus. fo.
(no. 870.)
---- The man of muscle; or, The spotter sport’s neck-tie party. New
York: Beadle & Adams, 1895. 32 p. illus. fo. (no. 884.)
Sims, A. K. The six-shot spotter; or, Babylon Bill, the high-roller from
Brimstone Bar. New York: Beadle & Adams, 1895. 32 p. illus. fo. (no.
897.)
Badger, Joseph E. Silky Steele, the stay-in sport. New York: Beadle &
Adams, 1896. 31 p. illus. fo. (no. 898.)
---- Old Sobersides, the detective of St. Louis; or, The crook-league.
New York: Beadle & Adams, 1896. 30 p. illus. fo. (no. 928.)
Manning, William H. Frisco Frank at Glory Gulch; or, Wiping out the
gold-dusters’ gang. New York: Beadle & Adams, 1896. 32 p. illus. fo.
(no. 931.)
Badger, Joseph E. The sport from Hard-Luck; or, Bummer Billy’s bluff.
A story of the Touchstone mine at Breakneck. New York: Beadle &
Adams, 1896. 32 p. illus. fo. (no. 945.)
Lewis, Leon. Wind River Clark, the gold hermit. New York: Beadle &
Adams, 1897. 29 p. illus. fo. (no. 967.)
Cody, William Frederick. The dread shot four; or, My pards of the
plains, by Buffalo Bill [pseud.]. New York: Beadle & Adams, 1897. 31
p. illus. fo. (no. 973.)
Aiken, Albert W. Overland Kit; or, The idyl of White Pine. New York:
Beadle and Adams, 1897. 23 p. illus. fo. (no. 976.)
---- Injun Dick; or, The death shot of Shasta. New York: Beadle and
Adams, 1897. 24 p. illus. fo. (no. 996.)
Beadle’s dime novels. no. 1-2, 5-11, 15-19, 22-23, 25, 27-31, 33-
37, 39-42, 44-47, 50, 53-54, 56, 61-62, 64-65, 67-68, 71, 73, 83, 85,
87-88, 90-91, 98, 101, 104, 107-108, 113, 116, 121, 134, 142, 172,
174, 176, 180, 217, 233, 236, 257, 261, 266, 274, 279, 290, 294,
299, 302.
Other ed. of no. 8, 15, 39, 45.
Barker, Colin. The golden belt; or, The Carib’s pledge. New York:
Beadle and Co. [cop. 1860.] 125 p. front. 16o. (no. 5.)
Denison, Mary Andrews. Chip, the cave-child. New York: Beadle and
Co. [cop. 1860.] 128 p. front. 16o. (no. 6.)
Cavendish, Harry. The reefer of ’76; or, The cruise of the Fire-fly. New
York: Beadle and Co. [cop. 1860.] 128 p. front. 16o. (no. 7.)
Ellis, Edward Sylvester. Seth Jones; or, The captives of the frontier.
New York: I. P. Beadle and Co. [cop. 1860.] 123 p. front. 16o. (no.
8.)
---- —— New York: Beadle and Co. [cop. 1860.] 123 p. front. 16o.
(no. 8.)
Hall, William Jared. The slave sculptor; a tale of the Aztecs. London:
Beadle and Co. [1860.] 128 p. front. 16o. (no. 9.)
---- —— London: Beadle and Co. [1861.] 128 p., 1 pl. 16o. (no. 15.)
Victor, Metta Victoria Fuller. Uncle Ezekiel and his exploits on two
continents. New York: Beadle and Co. [cop. 1861.] 123 p., 1 pl. 16o.
(no. 16.)
Fleming, May Agnes Early. Madge Wylde, the young man’s ward; or,
Lights and shadows of orphan life. By the author of “Clifton,” “Pride
and passion,” etc. New York: Beadle and Co. [cop. 1861.] 99 p., 1 pl.
16o. (no. 17.)
Ellis, Edward Sylvester. Nathan Todd; or, The fate of the Sioux’
captive. London: Beadle and Co. [cop. 1861.] 122 p., 1 pl. 16o. (no.
18.)
Iron, N. C. The maid of Esopus; or, The trials and triumphs of the
revolution. New York: Beadle and Co. [cop. 1861.] 100 p., 1 pl. 16o.
(no. 22.)
Trask, Kate Nichols. Winifred Winthrop; or, The lady of Atherton Hall.
By Clara Augusta [pseud.]. New York: Beadle and Co. [cop. 1861.]
91 p., 1 pl. 16o. (no. 23.)
Duganne, Augustine Joseph Hickey. The peon prince; or, The Yankee
knight-errant. A tale of modern Mexico. New York: Beadle and Co.
[cop. 1861.] 100 p., 1 pl. 16o. (no. 25.)
Ellis, Edward Sylvester. The forest spy; a tale of the War of 1812.
London: Beadle and Co. [1861.] 110 p. 16o. (no. 29.)
Iron, N. C. The double hero. A tale of sea and land, during the War
of 1812. New York: Beadle and Co. [cop. 1861.] 98 p. 16o. (no. 31.)
Victor, Metta Victoria Fuller. Maum Guinea, and her plantation
“children”; or, Holiday-week on a Louisiana estate. A slave romance.
New York: Beadle and Co. [cop. 1861.] 215 p. illus. 16o. (no. 33.)
Barritt, Frances Fuller. East and west; or, The beauty of Willard’s
Mill. New York: Beadle and Co. [cop. 1862.] 109 p. 16o. (no. 35.)
Ellis, Edward Sylvester. The riflemen of the Miami. New York: Beadle
and Co. [cop. 1862.] 98 p., 1 pl. 16o. (no. 36.)
Barritt, Frances Fuller. The land claim. A tale of the upper Missouri.
New York: Beadle and Co. [cop. 1862.] 99 p., 1 pl. 16o. (no. 39.)
Also published with title Alicia Newcome.
---- Alicia Newcome; or, The land claim; a tale of the upper Missouri.
London: Beadle and Co. [1862.] 123 p. 16o. (no. 39.)
Also published with title The land claim.
---- —— New York: Beadle and Co. [cop. 1863.] 128 p., 1 pl. 16o.
(no. 45.)
Warner, John S. The wreck of the Albion. A tale of the sea. New
York: Beadle and Co. [cop. 1862.] 96 p., 1 pl. 16o. (no. 46.)
Denison, Mary Andrews. Tim Bumble’s charge; or, Mrs. Lattison’s one
great sorrow. New York: Beadle and Co. [cop. 1862.] 103 p., 1 pl.
16o. (no. 47.)
Warner, John S. The black ship. New York: Beadle and Co. [cop.
1863.] 102 p., 1 pl. 16o. (no. 50.)
Fleming, May Agnes Early. Hates and loves; or, The lesson of four
lives. By the author of “Madge Wylde.” New York: Beadle and Co.
[cop. 1863.] 112 p., 1 pl. 16o. (no. 53.)
Victor, Metta Victoria Fuller. Myrtle, the child of the prairie. New
York: Beadle and Co. [cop. 1863.] 96 p., 1 pl. 16o. (no. 54.)
Iron, N. C. The unknown: a tale of 1777. New York: Beadle and Co.
[cop. 1863.] 111 p., 1 pl. 16o. (no. 62.)
Ellis, Edward Sylvester. The rangers of the Mohawk: a tale of Cherry
valley. New York: Beadle and Co. [cop. 1863.] 96 p., 1 pl. 16o. (no.
64.)
Thomas, Henry J. The wrecker’s prize. New York: Beadle and Co.
[cop. 1864.] 110 p., 1 pl. 16o. (no. 65.)
Paulding, Decatur. The brigantine; or, Admiral Lowe’s last cruise. New
York: Beadle and Co. [cop. 1864.] 100 p., 1 pl. 16o. (no. 68.)
At head of title: A tale of 1673.
Ellis, Edward Sylvester. The lost trail: a legend of the far west. New
York: Beadle and Co. [cop. 1864.] 100 p., 1 pl. 16o. (no. 71.)
Hazleton, Harry. The Silver Bugle; or, The Indian maiden of St. Croix.
London: Beadle and Co., 1865. 100 p., 1 pl. 16o. (no. 73.)
Starbuck, Roger. The golden harpoon; or, Lost among the floes. A
story of the whaling grounds. New York: Beadle and Co. [cop. 1865.]
95 p., 1 pl. 16o. (no. 83.)
Starbuck, Roger. Cast away; or, The island bride. A romance of the
“enchanted isles.” New York: Beadle and Co. [cop. 1866.] 100 p., 1
pl. 16o. (no. 90.)
Bowen, James L. The maid of Wyoming; or, The contest of the clans.
New York: Beadle and Co. [cop. 1866.] 100 p., 1 pl. 16o. (no. 101.)
Porter, Ann Emerson. Guilty or not guilty; or, The ordeal of fire. A
tale of thirty years ago. New York: Beadle and Co.) [cop. 1866.] 100
p., 1 pl. 16o. (no. 104.)
Clark, Charles Dunning. The peddler spy; or, Dutchmen and Yankees.
A tale of the capture of Good Hope. By W. J. Hamilton [pseud.]....
New York: Beadle and Co. [cop. 1866.] 100 p., 1 pl. 16o. (no. 107.)
Starbuck, Roger. The lost ship; or, The cruise for a shadow. New
York: Beadle and Co. [cop. 1866.] 100 p., 1 pl. 16o. (no. 108.)
Starbuck, Roger. Port at last; or, A cruise for honor. New York: Beadle
and Co. [cop. 1867.] 99 p., 1 pl. 16o. (no. 116.)
Starbuck, Roger. Foul-weather Jack; or, The double wreck. New York:
Beadle and Co. [cop. 1867.] 100 p., 1 pl. 16o. (no. 134.)
Clark, Charles Dunning. Despard, the spy; or, The fall of Montreal. By
W. J. Hamilton [pseud.].... New York: Beadle and Co. [cop. 1869.] 97
p., 1 pl. 16o. (no. 172.)
St. John, Percy Bolingbroke. Queen of the woods; or, The Shawnee
captives. A romance of the Ohio. New York: Beadle and Co. [cop.
1868.] 129 p. 16o. (no. 174.)
Henderson, J. Stanley. The trader spy; or, The victim of the fire-raft.
New York: Beadle and Co. [cop. 1869.] 100 p., 1 pl. 16o. (no. 176.)
Clark, Charles Dunning. Giant Pete, the patriot; or, The champion of
the swamps. A romance of old ’76. By W. J. Hamilton [pseud.]....
New York: Beadle and Co. [cop. 1869.] 100 p., 1 pl. 16o. (no. 180.)
---- Mountain Gid, the free ranger; or, The bandit’s daughter. By W.
J. Hamilton [pseud.].... New York: Beadle and Co. [cop. 1870.] 98 p.,
1 pl. 16o. (no. 217.)
Caldwell, J. R. The privateer’s bride; or, The Channel scud. New York:
Beadle and Co. [cop. 1871.] 98 p., 1 pl. 16o. (no. 233.)
Starbuck, Roger. The ice-fiend; or, The hunted whalemen. New York:
Beadle and Co. [cop. 1871.] 98 p., 1 pl. 16o. (no. 236.)
Clark, Charles Dunning. Old Avoirdupois; or, Steel Coat, the Apache
terror. By W. J. Hamilton [pseud.].... New York: Beadle and Co. [cop.
1872.] 100 p. 16o. (no. 257.)
Badger, Joseph E. Red Dan, the ranger; or, The league of three. A
tale of colonial times. New York: Beadle and Adams [cop. 1872]. 102
p. 16o. (no. 261.)
Clark, Charles Dunning. Wild Rube, the young trail-hunter; or, The
scouts of Bradstreet. A romance of the Onondaga. By W. J. Hamilton
[pseud.].... New York: Beadle and Adams [cop. 1872]. 99 p. 16o.
(no. 266.)
Whittaker, Frederick. The sea king; or, The two corvettes. New York:
Beadle and Adams [cop. 1873]. 102 p. 16o. (no. 274.)
Badger, Joseph E. The girl captain; or, The reprisal of blood. A tale of
feud, vengeance and blood. New York: Beadle and Adams [cop.
1873]. 102 p. 16o. (no. 279.)
Starbuck, Roger. The rival rovers; or, The Flying Wake. New York:
Beadle and Adams [cop. 1873]. 92 p. 16o. (no. 294.)
Clark, Charles Dunning. Mossfoot, the brave; or, The fat scout of
Oneida lake. By W. J. Hamilton [pseud.].... New York: Beadle and
Adams [cop. 1873]. 94 p. 16o. (no. 299.)
Beadle’s dime pocket joke book. no. 1-2. New York: Beadle and
Adams [cop. 1875]. illus. 16o.
no. 1 has title: The dime pocket joke book. no. 2: Jim Crow joke book.
Beadle’s dime song book.... A collection of new and popular
comic and sentimental songs. no. 3, 10, 12, 14, 17, 22-28. New
York: Beadle and Adams [cop. 1859-71]. 16o.
no. 10, 12, 24-25 have imprint: New York: Beadle & Co.
Words only.
no. 22 has title: The Fifth avenue songster; no. 23: The velocipede belle songster; no.
24: Mistress Jinks burlesque songster; no. 25: The nobby fellow’s songster; no. 26: The
gay young clerk songster; no. 27: The heathen Chinee songster; no. 28: Girls, don’t
fool with Cupid, songster.
Beadle’s dime speaker. no. 1-5, 7-13, 16-20, 24. New York:
Beadle and Adams [cop. 1861-88]. 16o.
no. 1, 10, 13 have imprint: New York: Beadle and Co.; no. 12, 17, 24 have imprint:
New York: M. J. Ivers & Co.
Another ed. of no. 1 with imprint: New York: I. P. Beadle & Co.
no. 1 has title: Beadle’s dime American speaker; no. 2: Beadle’s dime national speaker;
no. 3: Beadle’s dime patriotic speaker; no. 4: Beadle’s dime comic speaker; no. 5:
Beadle’s dime elocutionist; no. 7: Beadle’s dime standard speaker; no. 8: Beadle’s dime
stump speaker; no. 9: The dime juvenile speaker; no. 10: Beadle’s dime spread-eagle
speaker; no. 11: The dime debater, and chairman’s guide; no. 12: The dime exhibition
speaker; no. 13: The dime school speaker; no. 16: The dime youth’s speaker and
reform orator; no. 17: The dime eloquent speaker; no. 18: The dime Hail Columbia
speaker; no. 19: Beadle’s dime serio-comic speaker; no. 20: The dime select speaker;
no. 24: Dime book of recitations and readings.
Beadle’s dime year book and almanac ... 1866. New York:
Beadle and Co. [1866.] 16o.
Beadle’s 15 ct. novels. no. 21-22.
Iron, N. C. The maid of Esopus; or, The trials and triumphs of the
revolution. New York: Beadle and Co. [cop. 1861.] 126 p., 1 pl. 16o.
(no. 22.)
Beadle’s half dime library. no. 8, 21-22, 29, 32-33, 37, 43, 45,
50, 53-54, 56-59, 61-62, 65, 67, 70, 72-73, 76, 78-82, 85-86, 93,
96-97, 99, 105, 107-108, 112-115, 118-120, 123-124, 131-132, 135-
137, 139-141, 151, 153, 155, 158, 160, 162-164, 166-175, 177-178,
181-182, 184-186, 188, 190-195, 198, 202-204, 207, 210-211, 214-
216, 218, 222, 224, 227-228, 230-231, 233-234, 236-244, 246-248,
251, 253-258, 260-261, 265-267, 271, 275, 278-279, 283, 288, 292-
295, 297, 300, 302, 304, 306-308, 310-311, 313-314, 316-319, 326-
327, 329, 331-337, 340, 343-345, 348-350, 354-355, 357-358, 360-
361, 366, 368-369, 373, 375-376, 378, 380-381, 385-386, 388, 390-
392, 395-396, 398-399, 401, 406, 409, 411, 416-418, 420, 422-425,
431, 435, 440, 445, 455, 467, 469-470, 473, 475, 478, 484, 489,
495, 497-499, 502, 512-514, 517-519, 521, 527-528, 531-532, 537-
539, 542-543, 546-547, 553, 558, 562, 574, 576, 594, 599, 601-602,
607, 617, 623, 645, 653, 658, 676, 682, 687, 700, 705, 714, 718,
721, 723, 729, 737, 739, 748-751, 768, 773-775, 786, 789, 791,
796, 800-801, 804-806, 820, 827, 832, 836-837, 843, 848, 851, 857,
866-867, 892, 901, 923, 929, 931, 937, 942, 948, 955, 961, 989,
1002, 1015, 1025, 1029, 1033, 1035, 1038, 1043, 1056-1057, 1065,
1067.
Beginning with no. 1038 the series is called The half dime library.
Ellis, Edward Sylvester. Seth Jones; or, The captives of the frontier.
New York: Beadle and Adams, cop. 1877. 16 p. illus. 6. ed. 4o. (no.
8.)
---- —— New York: Beadle and Adams, cop. 1877. 16 p. illus. 7. ed.
4o. (no. 8.)
Lewis, Juan. The sea serpent; or, The boy Robinson Crusoe. New
York: Beadle and Adams, cop. 1877. 12 p. illus. 4. ed. 4o. (no. 22.)
Whittaker, Frederick. The dumb page; or, The doge’s daughter. New
York: Beadle and Adams, cop. 1878. 15 p. illus. 7. ed. 4o. (no. 29.)
Wheeler, Edward L. Bob Woolf, the border ruffian; or, The girl dead-
shot. New York: Beadle and Adams, cop. 1878. 20 p. illus. 12. ed.
4o. (no. 32.)
Pearce, Samuel W. The ocean bloodhound; or, The red pirates of the
Caribbees. New York: Beadle and Adams, cop. 1878. 16 p. illus. 6.
ed. 4o. (no. 33.)
Harbaugh, Thomas Chalmers. The hidden lodge; or, The little hunter
of the Adirondacks. New York: Beadle and Adams, cop. 1878. 15 p.
illus. 4o. (no. 37.)
Whittaker, Frederick. Dick Darling, the pony express rider. New York:
Beadle and Adams, cop. 1878. 15 p. illus. 4o. (no. 43.)
Adams, James Fenimore Cooper. Ned Hazel, the boy trapper; or, The
phantom princess. New York: Beadle and Adams, cop. 1878. 15 p.
illus. 5. ed. 4o. (no. 54.)
---- Nick Whiffles’s pet; or, In the valley of death. New York: Beadle
and Adams, cop. 1878. 14 p. illus. 4o. (no. 56.)
Coomes, Oll. The border king; or, The secret foe. New York: Beadle
and Adams, cop. 1878. 13 p. illus. 7. ed. 4o. (no. 58.)
Rathborne, St. George. Old Hickory; or, Pandy Ellis’s scalp. By Harry
St. George [pseud.].... New York: Beadle and Adams, cop. 1878. 14
p. illus. 5. ed. 4o. (no. 59.)
Wheeler, Edward L. Buckhorn Bill; or, The red rifle team. A tale of the
Dakota moonshiners. New York: Beadle and Adams, cop. 1878. 15 p.
illus. 10. ed. 4o. (no. 61.)
Ingraham, Prentiss. The shadow ship; or, The rival lieutenants; a tale
of the second war with Great Britain. New York: Beadle and Adams,
cop. 1878. 16 p. illus. 8. ed. 4o. (no. 62.)
Badger, Joseph E. Hurricane Bill; or, Mustang Sam and his “pard.” A
romance of the “evil land.” New York: Beadle and Adams, cop. 1878.
15 p. illus. 7. ed. 4o. (no. 65.)
Clark, Charles Dunning. Mad Tom Western, the Texan ranger; or, The
queen of the prairie. By W. J. Hamilton [pseud.].... New York: Beadle
and Adams, cop. 1878. 15 p. illus. 6. ed. 4o. (no. 72.)
Aiken, Albert W. Abe Colt, the crowkiller; or, The great fighting man
of the west. New York: Beadle and Adams, cop. 1878. 15 p. illus. 6.
ed. 4o. (no. 76.)
Reid, Mayne. Blue Dick; or, The yellow chief’s vengeance. A romance
of the Rocky Mountains. New York: Beadle and Adams, cop. 1879.
15 p. illus. 6. ed. 4o. (no. 78.)
Aiken, Albert W. Sol Ginger, the giant trapper; or, The flower of the
Blackfeet. New York: Beadle and Adams, cop. 1879. 16 p. illus. 9.
ed. 4o. (no. 79.)
Wheeler, Edward L. Rosebud Rob; or, Nugget Ned, the knight of the
gulch. New York: Beadle and Adams, cop. 1879. 15 p. illus. 13. ed.
4o. (no. 80.)
Adams, James Fenimore Cooper. Buck Buckram; or, Bess, the female
trapper. A tale of the far south-west. New York: Beadle and Adams,
cop. 1878. 12 p. illus. 4. ed. 4o. (no. 85.)
Browne, George Waldo. Dandy Rock, the man from Texas. A wild
romance of the land of gold. New York: Beadle and Adams, cop.
1879. 15 p. illus. 6. ed. 4o. (no. 86.)
Ellis, Edward Sylvester. The boy miners; or, The enchanted island. A
tale of the Yellowstone country. New York: Beadle and Adams, 1879.
15 p. illus. 6. ed. 4o. (no. 93.)
Marshall, John J. The outlaw brothers; or, The captive of the Harpes.
A tale of early Kentucky. New York: Beadle and Adams, 1879. 11 p.
illus. 7. ed. 4o. (no. 97.)
Browne, George Waldo. The Tiger of Taos; or, Wild Kate, Dandy
Rock’s angel. New York: Beadle and Adams, 1879. 14 p. illus. 5. ed.
4o. (no. 99.)
Harbaugh, Thomas Chalmers. Old Rube, the hunter; or, The Crow
captive. A tale of the great plains. By Captain Hamilton Holmes
[pseud.]. New York: Beadle and Adams, 1879. 21 p. illus. 6. ed. 4o.
(no. 105.)
Rathborne, St. George. Daring Davy, the young bear killer; or, The
trail of the border wolf. By Harry St. George [pseud.].... New York:
Beadle and Adams, 1879. 13 p. illus. 6. ed. 4o. (no. 108.)
Saxe, Burton. The mad hunter; or, The cave of death. New York:
Beadle and Adams, 1879. 19 p. illus. 5. ed. 4o. (no. 112.)
Wheeler, Edward L. Jack Hoyle, the young speculator; or, The road to
fortune. New York: Beadle and Adams, 1879. 14 p. illus. 10. ed. 4o.
(no. 113.)
Starbuck, Roger. The black schooner; or, Jib Junk, the old tar. New
York: Beadle and Adams, 1879. 14 p. illus. 5. ed. 4o. (no. 114.)
Browne, George Waldo. The mad miner; or, Dandy Rock’s doom. New
York: Beadle and Adams, 1879. 16 p. illus. 5. ed. 4o. (no. 115.)
Morris, Charles. Will Somers, the boy detective. New York: Beadle
and Adams, 1879. 19 p. illus. 10. ed. 4o. (no. 118.)
Badger, Joseph E. Mustang Sam, the king of the plains. New York:
Beadle and Adams, 1879. 16 p. illus. 8. ed. 4o. (no. 119.)
Dumont, Frank. The branded hand; or, The man of mystery. New
York: Beadle and Adams, 1879. 15 p. illus. 5. ed. 4o. (no. 120.)
Gleason, George. Tippy, the Texan; or, The young champion. New
York: Beadle and Adams, 1879. 16 p. illus. 5. ed. 4o. (no. 124.)
Browne, George Waldo. The Golden Hand; or, Dandy Rock to the
rescue. New York: Beadle and Adams, 1880. 15 p. illus. 7. ed. 4o.
(no. 131.)
Ellis, Edward Sylvester. The hunted hunter; or, The strange
horseman of the prairie. A romance of the south-west border. New
York: Beadle and Adams, 1880. 16 p. illus. 4o. (no. 132.)
Harbaugh, Thomas Chalmers. Judge Lynch, jr.; or, The boy vigilante.
New York: Beadle and Adams, 1880. 15 p. illus. 7. ed. 4o. (no. 139.)
Dumont, Frank. Blue Blazes; or, The break o’ day boys of Rocky Bar.
New York: Beadle and Adams, 1880. 13 p. illus. 6. ed. 4o. (no. 140.)
Wheeler, Edward L. Solid Sam, the boy road-agent; or, The branded
brows. New York: Beadle and Adams, 1880. 15 p. illus. 12. ed. 4o.
(no. 141.)
Badger, Joseph E. Panther Paul, the prairie pirate; or, Dainty Lance to
the rescue. New York: Beadle and Adams, 1880. 16 p. illus. 6. ed.
4o. (no. 151.)
Coomes, Oll. Eagle Kit, the boy demon; or, The outlaws of the gold
hills. New York: Beadle and Adams, 1880. 15 p. illus. 10. ed. 4o. (no.
153.)
Harbaugh, Thomas Chalmers. Gold Trigger, the sport; or, The girl
avenger. New York: Beadle and Adams, 1880. 15 p. illus. 8. ed. 4o.
(no. 155.)
Cody, William Frederick. Fancy Frank, of Colorado. By Hon. William F.
Cody—“Buffalo Bill.” New York: Beadle and Adams, 1880. 19 p. illus.
17. ed. 4o. (no. 158.)
Badger, Joseph E. The black giant; or, Dainty Lance in jeopardy. New
York: Beadle and Adams, 1880. 15 p. illus. 7. ed. 4o. (no. 160.)
Morris, Charles. Will Wildfire in the woods: or, Camp life in the
Alleghanies. New York: Beadle and Adams, 1880. 15 p. illus. 7. ed.
4o. (no. 162.)
Coomes, Oll. Little Texas, the young mustanger. New York: Beadle and
Adams, 1880. 22 p. illus. 10. ed. 4o. (no. 163.)
Willett, Edward. Asa Scott, the steamboat boy; or, The land pirates
of the Mississippi. A romance of a rich boy and a poor boy. New
York: Beadle and Adams, 1880. 18 p. illus. 5. ed. 4o. (no. 167.)
Badger, Joseph E. Deadly Dash; or, Fighting fire with fire. New York:
Beadle and Adams, 1880. 15 p. illus. 9. ed. 4o. (no. 168.)
Harbaugh, Thomas Chalmers. Tornado Tom; or, Injun Jack from Red
Core. New York: Beadle and Adams, 1880. 15 p. illus. 9. ed. 4o. (no.
169.)
Morris, Charles. “A trump card”; or, Will Wildfire wins and loses. New
York: Beadle and Adams, 1880. 14 p. illus. 8. ed. 4o. (no. 170.)
Dumont, Frank. Ebony Dan; or, The rival leagues of Silver Circle. New
York: Beadle and Adams, 1880. 12 p. illus. 6. ed. 4o. (no. 171.)
Browne, George Waldo. Dandy Rock’s rival; or, The hunted maid of
Taos. New York: Beadle and Adams, 1880. 12 p. illus. 5. ed. 4o. (no.
173.)
Morris, Charles. Bob Rockett, the boy dodger; or, Mysteries of New
York. New York: Beadle and Adams, 1880. 15 p. illus. 7. ed. 4o. (no.
174.)
Coomes, Oll. Old Solitary, the hermit trapper; or, The dragon of Silver
Lake. New York: Beadle and Adams, 1880. 15 p. illus. 11. ed. 4o.
(no. 178.)
Wheeler, Edward L. Wild Frank, the buckskin bravo; or, Lady Lily’s
love. New York: Beadle and Adams, 1881. 14 p. illus. 13. ed. 4o. (no.
181.)
Coomes, Oll. Little Hurricane, the boy captain; or, The oath of the
young avengers. New York: Beadle and Adams, 1881. 16 p. illus. 8.
ed. 4o. (no. 182.)
Badger, Joseph E. The boy trailers; or, Dainty Lance on the war-path.
New York: Beadle and Adams, 1881. 15 p. illus. 8. ed. 4o. (no. 184.)
Dumont, Frank. Evil Eye, king of cattle thieves; or, The vultures of the
Rio Grande. New York: Beadle and Adams, 1881. 12 p. illus. 6. ed.
4o. (no. 185.)
Harbaugh, Thomas Chalmers. Ned Temple, the border boy; or, The
mad hunter of Powder river. New York: Beadle and Adams, 1881. 15
p. illus. 7. ed. 4o. (no. 188.)
Eyster, William R. Dandy Darke; or, The tigers of High Pine. New
York: Beadle and Adams, 1881. 15 p. illus. 7. ed. 4o. (no. 190.)
Taylor, Alfred B. Buffalo Billy, the boy bullwhacker; or, The doomed
thirteen. A strange story of the silver trail. New York: Beadle and
Adams, 1881. 15 p. illus. 13. ed. 4o. (no. 191.)
At head of title: A romance of Buffalo Bill’s boyhood.
Taylor, Alfred B. Buffalo Bill’s bet; or, The gambler guide. New York:
Beadle and Adams, 1881. 14 p. illus. 9. ed. 4o. (no. 194.)
Wheeler, Edward L. Deadwood Dick’s dream; or, The rivals of the
road. New York: Beadle and Adams, 1881. 14 p. illus. 4o. (no. 195.)
Harbaugh, Thomas Chalmers. Arkansaw, the man with the knife; or,
The queen of fate’s revenge. New York: Beadle and Adams, 1881. 15
p. illus. 5. ed. 4o. (no. 198.)
Coomes, Oll. Prospect Pete, of the boy brigade; or, The young outlaw
hunters. New York: Beadle and Adams, 1881. 14 p. illus. 7. ed. 4o.
(no. 202.)
Badger, Joseph E. The boy pards; or, Dainty Lance unmasks. New
York: Beadle and Adams, 1881. 15 p. illus. 5. ed. 4o. (no. 203.)
Ingraham, Prentiss. Gold Plume, the boy bandit; or, The Kid-Glove
Sport. New York: Beadle and Adams, 1881. 15 p. illus. 12. ed. 4o.
(no. 204.)
At head of title: A romance of Buffalo Bill’s early life.
Harbaugh, Thomas Chalmers. Navajo Nick, the boy gold hunter; or,
The three pards of the basaltic buttes. New York: Beadle and Adams,
1881. 15 p. illus. 7. ed. 4o. (no. 207.)
Eyster, William R. Faro Frank of High Pine; or, Dandy Darke’s go-
down pards. New York: Beadle and Adams, 1881. 15 p. illus. 7. ed.
4o. (no. 210.)
Ingraham, Prentiss. Bison Bill, the prince of reins; or, Buffalo Bill’s
pluck. New York: Beadle and Adams, 1881. 14 p. illus. 12. ed. 4o.
(no. 216.)
Coomes, Oll. Tiger Tom, the Texan terror. New York: Beadle and
Adams, 1881. 14 p. illus. 9. ed. 4o. (no. 218.)
Ingraham, Prentiss. Grit, the bravo sport; or, The woman trailer.... A
romance of the wild west. New York: Beadle and Adams, 1881. 14 p.
illus. 10. ed. 4o. (no. 222.)
Sequel to his Bison Bill, the prince of the reins.
Coomes, Oll. Dashing Dick: or, Trapper Tom’s castle. A Clear Lake
mystery. New York: Beadle and Adams, 1881. 14 p. illus. 8. ed. 4o.
(no. 224.)
Emerson, Edwin. Dusky Darrell, trapper; or, The green ranger of the
Yellowstone. New York: Beadle and Adams, 1881. 15 p. illus. 8. ed.
4o. (no. 227.)
Coomes, Oll. Little Wildfire, the young prairie nomad; or, The idyl of
Echo Canyon. New York: Beadle and Adams, 1881. 14 p. illus. 6. ed.
4o. (no. 228.)
Clark, Charles Dunning. The Yankee rajah; or, The fate of the Black
Shereef. New York: Beadle and Adams, 1881. 15 p. illus. 4o. (no.
230.)
Hall, Samuel S. Old Rocky’s “boyees”; or, Benito, the young horse-
breaker. A romance of adventure in the “Lone Star state.” By Major
Sam S. Hall—“Buckskin Sam.” New York: Beadle and Adams, 1882.
16 p. illus. 3. ed. 4o. (no. 234.)
Wheeler, Edward L. Apollo Bill, the trail tornado; or, Rowdy Kate from
Right Bower. New York: Beadle and Adams, 1882. 14 p. illus. 7. ed.
4o. (no. 236.)
Ingraham, Prentiss. Lone Star, the cowboy captain. New York: Beadle
and Adams, 1882. 15 p. illus. 14. ed. 4o. (no. 237.)
Coomes, Oll. The parson detective; or, Little Shocky, the ranger of
Raven-Roost. New York: Beadle and Adams, 1882. 14 p. illus. 9. ed.
4o. (no. 238.)
Reid, Mayne. The gold-seeker guide; or, The lost mountain. New
York: Beadle and Adams, 1882. 18 p. illus. 3. ed. 4o. (no. 239.)
Wheeler, Edward L. Cyclone Kit, the young gladiator; or, The locked
valley. A strange mountain tale, of a stranger place and people. New
York: Beadle and Adams, 1882. 15 p. illus. 9. ed. 4o. (no. 240.)
Harbaugh, Thomas Chalmers. Bill Bravo, and his bear pards; or, The
roughs of the Rockies. New York: Beadle and Adams, 1882. 15 p.
illus. 8. ed. 4o. (no. 241.)
Morris, Charles. The two ‘bloods’; or, Shenandoah Bill and his gang.
A mountain romance. New York: Beadle and Adams, 1882. 15 p.
illus. 7. ed. 4o. (no. 242.)
Coomes, Oll. The disguised guide; or, Wild Raven, the ranger of the
north. New York: Beadle and Adams, 1882. 15 p. illus. 5. ed. 4o. (no.
243.)
Adams, James Fenimore Cooper. Old Grizzly and his pets; or, The wild
huntress of the hills. By Captain “Bruin” Adams [pseud.]. New York:
Beadle and Adams, 1882. 15 p. illus. 6. ed. 4o. (no. 247.)
Wheeler, Edward L. Sierra Sam’s pard; or, The angel of Big Vista.
New York: Beadle and Adams, 1882. 15 p. illus. 12. ed. 4o. (no.
253.)
Ellis, Edward Sylvester. The half-blood; or, The panther of the plains.
By Edward S. Ellis.... New York: Beadle and Adams, 1882. 15 p. illus.
6. ed. 4o. (no. 254.)
Wheeler, Edward L. Sierra Sam’s seven; or, The stolen bride. New
York: Beadle and Adams, 1882. 14 p. illus. 12. ed. 4o. (no. 258.)
Coomes, Oll. Dare-Devil Dan, the young prairie ranger; or, Old
Rosebud’s boy brigade. New York: Beadle and Adams, 1882. 15 p.
illus. 4o. (no. 260.)
Whittaker, Frederick. The tiger tamer; or, The league of the jungle.
New York: Beadle and Adams, 1882. 24 p. illus. 4o. (no. 265.)
Ellis, Edward Sylvester. The huge hunter; or, The steam man of the
prairies. New York: Beadle and Adams, 1882. 14 p. illus. 10. ed. 4o.
(no. 271.)
Harbaugh, Thomas Chalmers. Old Winch, the rifle king; or, The
buckskin desperadoes. New York: Beadle and Adams, 1882. 15 p.
illus. 7. ed. 4o. (no. 279.)
Carson, Lewis W. Indian Joe; or, The white spirit of the hills.... New
York: Beadle and Adams, 1882. 15 p. illus. 7. ed. 4o. (no. 283.)
Sequel to his The three trappers.
Adams, James Fenimore Cooper. The Scalp King; or, The human
thunderbolt. New York: Beadle and Adams, 1883. 15 p. illus. 6. ed.
4o. (no. 288.)
St. Vrain, E. L. Sancho Pedro, the boy bandit; or, The fighting pards
of Sierra Flat. New York: Beadle and Adams, 1883. 14 p. illus. 4o.
(no. 292.)
Comstock, captain. Red Claw, the one-eyed trapper; or, The maid of
the cliff. New York: Beadle and Adams, 1883. 15 p. illus. 5. ed. 4o.
(no. 293.)
Willett, Edward. Fearless Phil; or, The king of Quartzville. New York:
Beadle and Adams, 1883. 14 p. illus. 4o. (no. 295.)
Coomes, Oll. The sky demon; or, Rainbolt, the ranger. New York:
Beadle and Adams, 1883. 15 p. illus. 5. ed. 4o. (no. 300.)
Ingraham, Prentiss. The Dead Shot Dandy; or, Benito, the boy bugler.
New York: Beadle and Adams, 1883. 13 p. illus. 10. ed. 4o. (no.
304.)
Hall, Samuel S. The strange pard; or, Little Ben’s death hunt. By
“Buckskin Sam”—Major Sam S. Hall.... New York: Beadle and Adams,
1883. 15 p. illus. 5. ed. 4o. (no. 307.)
Ingraham, Prentiss. Keno Kit, the boy bugler’s pard; or, Dead Shot
Dandy’s double.... A story of wild life upon the Texas border. New
York: Beadle and Adams, 1883. 14 p. illus. 4o. (no. 308.)
Companion romance to his The Dead Shot Dandy.
Badger, Joseph E. The Barranca Wolf; or, The beautiful decoy. New
York: Beadle and Adams, 1883. 15 p. illus. 4. ed. 4o. (no. 310.)
Willett, Edward. The roving sport; or, The pride of Chuckaluck camp.
New York: Beadle and Adams, 1883. 14 p. illus. 4. ed. 4o. (no. 311.)
Dewey, Frederick H. Cimarron Jack, the king pin of rifle-shots; or, The
phantom tracker. A tale of the land of silence. New York: Beadle and
Adams, 1883. 15 p. illus. 5. ed. 4o. (no. 313.)
Ingraham, Prentiss. The mysterious marauder; or, The boy bugler’s
long trail.... New York: Beadle and Adams, 1883. 14 p. illus. 4o. (no.
314.)
Companion story to his The Dead Shot Dandy, and Keno Kit, the boy bugler’s pard.