100% found this document useful (4 votes)
141 views46 pages

Introduction To Java Programming Comprehensive Version 10th Edition Liang Test Bank - Latest Version With All Chapters Is Now Ready

The document provides links to download various test banks and solution manuals for Java programming and other subjects. It includes specific questions and answers related to Java programming concepts from the 10th edition of Liang's textbook. Additionally, it offers recommendations for other educational resources available on the website.

Uploaded by

egrroij
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 (4 votes)
141 views46 pages

Introduction To Java Programming Comprehensive Version 10th Edition Liang Test Bank - Latest Version With All Chapters Is Now Ready

The document provides links to download various test banks and solution manuals for Java programming and other subjects. It includes specific questions and answers related to Java programming concepts from the 10th edition of Liang's textbook. Additionally, it offers recommendations for other educational resources available on the website.

Uploaded by

egrroij
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/ 46

Visit https://testbankbell.

com to download the full version and


explore more testbank or solutions manual

Introduction to Java Programming Comprehensive


Version 10th Edition Liang Test Bank

_____ Click the link below to download _____


http://testbankbell.com/product/introduction-to-java-
programming-comprehensive-version-10th-edition-liang-test-
bank/

Explore and download more testbank or solutions manual at testbankbell.com


Here are some recommended products that we believe you will be
interested in. You can click the link to download.

Test Bank for Introduction to Java Programming and Data


Structures Comprehensive Version, 12th Edition, Y. Daniel
Liang
http://testbankbell.com/product/test-bank-for-introduction-to-java-
programming-and-data-structures-comprehensive-version-12th-edition-y-
daniel-liang/

Solution Manual for Introduction to Java Programming and


Data Structures Comprehensive Version, 12th Edition Y.
Daniel Liang
http://testbankbell.com/product/solution-manual-for-introduction-to-
java-programming-and-data-structures-comprehensive-version-12th-
edition-y-daniel-liang/

Solution Manual for Introduction to Java Programming,


Brief Version, 11th Edition, Y. Daniel Liang

http://testbankbell.com/product/solution-manual-for-introduction-to-
java-programming-brief-version-11th-edition-y-daniel-liang/

Solution Manual for Todays Technician Automotive Heating


& Air Conditioning Classroom Manual and Shop Manual,
5th Edition
http://testbankbell.com/product/solution-manual-for-todays-technician-
automotive-heating-air-conditioning-classroom-manual-and-shop-
manual-5th-edition/
Test Bank for Essentials of Human Diseases and Conditions
6th Edition by Frazier

http://testbankbell.com/product/test-bank-for-essentials-of-human-
diseases-and-conditions-6th-edition-by-frazier/

Signals Systems and Inference 1st Edition Oppenheim


Solutions Manual

http://testbankbell.com/product/signals-systems-and-inference-1st-
edition-oppenheim-solutions-manual/

Janeways Immunobiology 9th Edition Murphy Test Bank

http://testbankbell.com/product/janeways-immunobiology-9th-edition-
murphy-test-bank/

DSM5 Diagnostic and Statistical Manual of Mental Disorders


5th Edition Test Bank

http://testbankbell.com/product/dsm5-diagnostic-and-statistical-
manual-of-mental-disorders-5th-edition-test-bank/

Test Bank for Modern Dental Assisting 12th Edition by Bird

http://testbankbell.com/product/test-bank-for-modern-dental-
assisting-12th-edition-by-bird/
Test Bank for Essentials of Accounting for Governmental
and Not-for-Profit Organizations 13th Edition by Copley

http://testbankbell.com/product/test-bank-for-essentials-of-
accounting-for-governmental-and-not-for-profit-organizations-13th-
edition-by-copley/
chapter2.txt
Introduction to Java Programming Comprehensive
Version 10th Edition Liang Test Bank
full chapter at: https://testbankbell.com/product/introduction-to-java-
programming-comprehensive-version-10th-edition-liang-test-bank/
Chapter 2 Elementary Programming

Section 2.3 Reading Input from the Console


1. Suppose a Scanner object is created as follows:

Scanner input = new Scanner(System.in);

What method do you use to read an int value?

a. input.nextInt();
b. input.nextInteger();
c. input.int();
d. input.integer();
Key:a

#
2. The following code fragment reads in two numbers:

Scanner input = new Scanner(System.in);


int i = input.nextInt();
double d = input.nextDouble();

What are the correct ways to enter these two numbers?

a. Enter an integer, a space, a double value, and then the Enter key.
b. Enter an integer, two spaces, a double value, and then the Enter key.
c. Enter an integer, an Enter key, a double value, and then the Enter key.
d. Enter a numeric value with a decimal point, a space, an integer, and then the
Enter key.
Key:abc
#
6. is the code with natural language mixed with Java code.

a. Java program
b. A Java statement
c. Pseudocode
d. A flowchart diagram
key:c

#
3. If you enter 1 2 3, when you run this program, what will be the output?

Page 1
import java.util.Scanner; chapter2.txt

public class Test1 {


public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter three numbers: ");

Page 2
chapter2.txt
double number1 = input.nextDouble();
double number2 = input.nextDouble();
double number3 = input.nextDouble();

// Compute average
double average = (number1 + number2 + number3) / 3;

// Display result
System.out.println(average);
}
}

a. 1.0
b. 2.0
c. 3.0
d. 4.0
Key:b

#
4. What is the exact output of the following code?

double area = 3.5;


System.out.print("area");
System.out.print(area);

a. 3.53.5
b. 3.5 3.5
c. area3.5
d. area 3.5
Key:c

#
Section 2.4 Identifiers
4. Every letter in a Java keyword is in lowercase?
a. true
b. false
Key:a

#
5. Which of the following is a valid identifier?
a. $343
b. class
c. 9X
d. 8+9
e. radius
Key:ae

Page 3
chapter2.txt
Section 2.5 Variables
6. Which of the following are correct names for variables according to Java
naming conventions?
a. radius
b. Radius
c. RADIUS
d. findArea
e. FindArea
Key:ad

#
7. Which of the following are correct ways to declare variables?
a. int length; int width;
b. int length, width;
c. int length; width;
d. int length, int width;
Key:ab

#
Section 2.6 Assignment Statements and Assignment Expressions
8. is the Java assignment operator.
a. ==
b. :=
c. =
d. =:
Key:c

#
9. To assign a value 1 to variable x, you write
a. 1 = x;
b. x = 1;
c. x := 1;
d. 1 := x;
e. x == 1;
Key:b

#
10. Which of the following assignment statements is incorrect?
a. i = j = k = 1;
b. i = 1; j = 1; k = 1;
c. i = 1 = j = 1 = k = 1;
d. i == j == k == 1;
Key:cd

#
Section 2.7 Named Constants
11. To declare a constant MAX_LENGTH inside a method with value 99.98, you write
a. final MAX_LENGTH = 99.98;
Page 4
chapter2.txt
b. final float MAX_LENGTH = 99.98;
c. double MAX_LENGTH = 99.98;
d. final double MAX_LENGTH = 99.98;
Key:d

#
12. Which of the following is a constant, according to Java naming conventions?
a. MAX_VALUE
b. Test
c. read
d. ReadInt
e. COUNT
Key:ae

#
13. To improve readability and maintainability, you should declare
instead of using literal values such as 3.14159.
a. variables
b. methods
c. constants
d. classes
Key:c

#
Section 2.8 Naming Conventions
60. According to Java naming convention, which of the following names can be
variables?
a. FindArea
b. findArea
c. totalLength
d. TOTAL_LENGTH
e. class
Key:bc

#
Section 2.9 Numeric Data Types and Operations
14. Which of these data types requires the most amount of memory?
a. long
b. int
c. short
d. byte
Key:a

#
34. If a number is too large to be stored in a variable of the float type, it
.
a. causes overflow
b. causes underflow

Page 5
chapter2.txt
c. causes no error
d. cannot happen in Java
Key:a

#
15. Analyze the following code:

public class Test {


public static void main(String[] args) {
int n = 10000 * 10000 * 10000;
System.out.println("n is " + n);
}
}
a. The program displays n is 1000000000000
b. The result of 10000 * 10000 * 10000 is too large to be stored in an int
variable n. This causes an overflow and the program is aborted.
c. The result of 10000 * 10000 * 10000 is too large to be stored in an int
variable n. This causes an overflow and the program continues to execute because
Java does not report errors on overflow.
d. The result of 10000 * 10000 * 10000 is too large to be stored in an int
variable n. This causes an underflow and the program is aborted.
e. The result of 10000 * 10000 * 10000 is too large to be stored in an int variable
n. This causes an underflow and the program continues to execute because Java does
not report errors on underflow.
Key:c

#
16. What is the result of 45 / 4?
a. 10
b. 11
c. 11.25
d. 12
Key:b 45 / 4 is an integer division, which results in 11

#
18. Which of the following expression results in a value 1?
a. 2 % 1
b. 15 % 4
c. 25 % 5
d. 37 % 6
Key:d 2 % 1 is 0, 15 % 4 is 3, 25 % 5 is 0, and 37 % 6 is 1

#
19. 25 % 1 is
a. 1
b. 2
c. 3
d. 4

Page 6
chapter2.txt
e. 0
Key:e

#
20. -25 % 5 is
a. 1
b. 2
c. 3
d. 4
e. 0
Key:e

#
21. 24 % 5 is
a. 1
b. 2
c. 3
d. 4
e. 0
Key:d

#
22. -24 % 5 is
a. -1
b. -2
c. -3
d. -4
e. 0
Key:d

#
23. -24 % -5 is
a. 3
b. -3
c. 4
d. -4
e. 0
Key:d

#
30. Math.pow(2, 3) returns .
a. 9
b. 8
c. 9.0
d. 8.0
Key:d It returns a double value 8.0.

Page 7
chapter2.txt
30. Math.pow(4, 1 / 2) returns .
a. 2
b. 2.0
c. 0
d. 1.0
e. 1
Key:d Note that 1 / 2 is 0.

#
30. Math.pow(4, 1.0 / 2) returns .
a. 2
b. 2.0
c. 0
d. 1.0
e. 1
Key:b Note that the pow method returns a double value, not an integer.
#
31. The method returns a raised to the power of b.

a. Math.power(a, b)
b. Math.exponent(a, b)
c. Math.pow(a, b)
d. Math.pow(b, a)
Key:c

#
Section 2.10 Numeric Literals
15. To declare an int variable number with initial value 2, you write
a. int number = 2L;
b. int number = 2l;
c. int number = 2;
d. int number = 2.0;
Key:c

#
32. Analyze the following code.

public class Test {


public static void main(String[] args) {
int month = 09;
System.out.println("month is " + month);
}
}
a. The program displays month is 09
b. The program displays month is 9
c. The program displays month is 9.0
d. The program has a syntax error, because 09 is an incorrect literal value.
Key:d Any numeric literal with the prefix 0 is an octal value. But 9 is not an octal

Page 8
chapter2.txt
digit. An octal digit is 0, 1, 2, 3, 4, 5, 6, or 7.

#
15. Which of the following are the same as 1545.534?
a. 1.545534e+3
b. 0.1545534e+4
c. 1545534.0e-3
d. 154553.4e-2
Key:abcd

#
Section 2.11 Evaluating Expressions and Operator Precedence
24. The expression 4 + 20 / (3 - 1) * 2 is evaluated to
a. 4
b. 20
c. 24
d. 9
e. 25
Key:c

#
Section 2.12 Case Study: Displaying the Current Time
58. The System.currentTimeMillis() returns .
a. the current time.
b. the current time in milliseconds.
c. the current time in milliseconds since midnight.
d. the current time in milliseconds since midnight, January 1, 1970.
e. the current time in milliseconds since midnight, January 1, 1970 GMT (the
Unix time).
Key:e

#
24. To obtain the current second, use .
a. System.currentTimeMillis() % 3600
b. System.currentTimeMillis() % 60
c. System.currentTimeMillis() / 1000 % 60
d. System.currentTimeMillis() / 1000 / 60 % 60
e. System.currentTimeMillis() / 1000 / 60 / 60 % 24
Key:c

#
24. To obtain the current minute, use .
a. System.currentTimeMillis() % 3600
b. System.currentTimeMillis() % 60
c. System.currentTimeMillis() / 1000 % 60
d. System.currentTimeMillis() / 1000 / 60 % 60
e. System.currentTimeMillis() / 1000 / 60 / 60 % 24
Key:d

Page 9
chapter2.txt

#
24. To obtain the current hour in UTC, use _.
a. System.currentTimeMillis() % 3600
b. System.currentTimeMillis() % 60
c. System.currentTimeMillis() / 1000 % 60
d. System.currentTimeMillis() / 1000 / 60 % 60
e. System.currentTimeMillis() / 1000 / 60 / 60 % 24
Key:e

#
Section 2.13 Augmented Assignment Operators
24. To add a value 1 to variable x, you write
a. 1 + x = x;
b. x += 1;
c. x := 1;
d. x = x + 1;
e. x = 1 + x;
Key:bde

#
25. To add number to sum, you write (Note: Java is case-sensitive)
a. number += sum;
b. number = sum + number;
c. sum = Number + sum;
d. sum += number;
e. sum = sum + number;
Key:de

#
26. Suppose x is 1. What is x after x += 2?
a. 0
b. 1
c. 2
d. 3
e. 4
Key:d

#
27. Suppose x is 1. What is x after x -= 1?
a. 0
b. 1
c. 2
d. -1
e. -2
Key:a

Page 10
chapter2.txt
28. What is x after the following statements?

int x = 2;
int y = 1;
x *= y + 1;

a. x is 1.
b. x is 2.
c. x is 3.
d. x is 4.
Key:d

#
29. What is x after the following statements?

int x = 1;
x *= x + 1;

a. x is 1.
b. x is 2.
c. x is 3.
d. x is 4.
Key:b

#
29. Which of the following statements are the same?

(A) x -= x + 4
(B) x = x + 4 - x
(C) x = x - (x + 4)

a. (A) and (B) are the same


b. (A) and (C) are the same
c. (B) and (C) are the same
d. (A), (B), and (C) are the same
Key:a

#
Section 2.14 Increment and Decrement Operators
21. Are the following four statements equivalent?
number += 1;
number = number + 1;
number++;
++number;
a. Yes
b. No
Key:a

Page 11
chapter2.txt
#
34. What is i printed?
public class Test {
public static void main(String[] args) {
int j = 0;
int i = ++j + j * 5;

System.out.println("What is i? " + i);


}
}
a. 0
b. 1
c. 5
d. 6
Key:d Operands are evaluated from left to right in Java. The left-hand operand of a
binary operator is evaluated before any part of the right-hand operand is evaluated.
This rule takes precedence over any other rules that govern expressions. Therefore,
++j is evaluated first, and returns 1. Then j*5 is evaluated, returns 5.

#
35. What is i printed in the following code?

public class Test {


public static void main(String[] args) {
int j = 0;
int i = j++ + j * 5;

System.out.println("What is i? " + i);


}
}
a. 0
b. 1
c. 5
d. 6
Key:c Same as before, except that j++ evaluates to 0.

#
36. What is y displayed in the following code?

public class Test {


public static void main(String[] args) {
int x = 1;
int y = x++ + x;
System.out.println("y is " + y);
}
}
a. y is 1.
b. y is 2.

Page 12
chapter2.txt
c. y is 3.
d. y is 4.
Key:c When evaluating x++ + x, x++ is evaluated first, which does two things: 1.
returns 1 since it is post-increment. x becomes 2. Therefore y is 1 + 2.

#
37. What is y displayed?

public class Test {


public static void main(String[] args) {
int x = 1;
int y = x + x++;
System.out.println("y is " + y);
}
}
a. y is 1.
b. y is 2.
c. y is 3.
d. y is 4.
Key:b When evaluating x + x++, x is evaluated first, which is 1. X++ returns 1 since
it is post-increment and 2. Therefore y is 1 + 1.

#
Section 2.15 Numeric Type Conversions
38. To assign a double variable d to a float variable x, you write
a. x = (long)d
b. x = (int)d;
c. x = d;
d. x = (float)d;
Key:d

#
17. Which of the following expressions will yield 0.5?
a. 1 / 2
b. 1.0 / 2
c. (double) (1 / 2)
d. (double) 1 / 2
e. 1 / 2.0
Key:bde 1 / 2 is an integer division, which results in 0.

#
39. What is the printout of the following code:

double x = 5.5;
int y = (int)x;
System.out.println("x is " + x + " and y is " + y);
a. x is 5 and y is 6
b. x is 6.0 and y is 6.0

Page 13
chapter2.txt
c. x is 6 and y is 6
d. x is 5.5 and y is 5
e. x is 5.5 and y is 5.0
Key:d The value is x is not changed after the casting.

#
40. Which of the following assignment statements is illegal?
a. float f = -34;
b. int t = 23;
c. short s = 10;
d. int t = (int)false;
e. int t = 4.5;
Key:de

#
41. What is the value of (double)5/2?
a. 2
b. 2.5
c. 3
d. 2.0
e. 3.0
Key:b

#
42. What is the value of (double)(5/2)?
a. 2
b. 2.5
c. 3
d. 2.0
e. 3.0
Key:d

#
43. Which of the following expression results in 45.37?
a. (int)(45.378 * 100) / 100
b. (int)(45.378 * 100) / 100.0
c. (int)(45.378 * 100 / 100)
d. (int)(45.378) * 100 / 100.0
Key:b

#
43. The expression (int)(76.0252175 * 100) / 100 evaluates to .
a. 76.02
b. 76
c. 76.0252175
d. 76.03
Key:b In order to obtain 76.02, you have divide 100.0.

Page 14
chapter2.txt
#
44. If you attempt to add an int, a byte, a long, and a double, the result will
be a value.
a. byte
b. int
c. long
d. double
Key:d

#
Section 2.16 Software Life Cycle
1. is a formal process that seeks to understand the problem and

document in detail what the software system needs to do.


a. Requirements specification
b. Analysis
c. Design
d. Implementation
e. Testing
Key:a
#
1. System analysis seeks to analyze the data flow and to identify the

system’s input and output. When you do analysis, it helps to identify what the
output is first, and then figure out what input data you need in order to produce
the output.
a. Requirements specification
b. Analysis
c. Design
d. Implementation
e. Testing
Key:b

#
0. Any assignment statement can be used as an assignment expression.
a. true
b. false
Key:a

#
1. You can define a constant twice in a block.
a. true
b. false
Key:b
#
44. are valid Java identifiers.
a. $Java
b. _RE4
Page 15
chapter2.txt
c. 3ere
d. 4+4
e. int
Key:ab

#
2. You can define a variable twice in a block.
a. true
b. false
Key:b

#
3. The value of a variable can be changed.
a. true
b. false
Key:a

#
4. The result of an integer division is the integer part of the division; the
fraction part is truncated.
a. true
b. false
Key:a

#
5. You can always assign a value of int type to a variable of long type without
loss of information.
a. true
b. false
Key:a

#
6. You can always assign a value of long type to a variable of int type without
loss of precision.
a. true
b. false
Key:b

#
13. A variable may be assigned a value only once in the program.
a. true
b. false
Key:b

#
14. You can change the value of a constant.
a. true
b. false

Page 16
chapter2.txt
Key:b

#
2. To declare a constant PI, you write
a. final static PI = 3.14159;
b. final float PI = 3.14159;
c. static double PI = 3.14159;
d. final double PI = 3.14159;
Key:d

#
3. To declare an int variable x with initial value 200, you write
a. int x = 200L;
b. int x = 200l;
c. int x = 200;
d. int x = 200.0;
Key:c

#
4. To assign a double variable d to an int variable x, you write
a. x = (long)d
b. x = (int)d;
c. x = d;
d. x = (float)d;
Key:b

#
8. Which of the following is a constant, according to Java naming conventions?
a. MAX_VALUE
b. Test
c. read
d. ReadInt
Key:a

#
9. Which of the following assignment statements is illegal?
a. float f = -34;
b. int t = 23;
c. short s = 10;
d. float f = 34.0;
Key:d

#
10. A Java statement ends with a .
a. comma (,)
b. semicolon (;)
c. period (.)
d. closing brace

Page 17
chapter2.txt
Key:b

#
11. The assignment operator in Java is .
a. :=
b. =
c. = =
d. <-
Key:b

#
12. Which of these data types requires the least amount of memory?
a. float
b. double
c. short
d. byte
Key:d

#
13. Which of the following operators has the highest precedence?
a. casting
b. +
c. *
d. /
Key:a

#
17. If you attempt to add an int, a byte, a long, and a float, the result will
be a value.
a. float
b. int
c. long
d. double
Key:a

#
18. If a program compiles fine, but it terminates abnormally at runtime, then
the program suffers .
a. a syntax error
b. a runtime error
c. a logic error
Key:b

#
24. What is 1 % 2?
a. 0
b. 1
c. 2
Page 18
chapter2.txt
Key:b

#
26. What is the printout of the following code:

double x = 10.1;
int y = (int)x;
System.out.println("x is " + x + " and y is " + y);

a. x is 10 and y is 10
b. x is 10.0 and y is 10.0
c. x is 11 and y is 11
d. x is 10.1 and y is 10
e. x is 10.1 and y is 10.0
Key:d

#
32. The compiler checks .
a. syntax errors
b. logical errors
c. runtime errors
Key:a

#
33. You can cast a double value to _.
a. byte
b. short
c. int
d. long
e. float
Key:abcde
#
34. The keyword must be used to declare a constant.
a. const
b. final
c. static
d. double
e. int
Key:b

#
37. pow is a method in the class.
a. Integer
b. Double
c. Math
d. System
Key:c

Page 19
chapter2.txt
#
38. currentTimeMills is a method in the class.
a. Integer
b. Double
c. Math
d. System
Key:d

#
39. 5 % 1 is
a. 1
b. 2
c. 3
d. 4
e. 0
Key:e

#
40. 5 % 2 is
a. 1
b. 2
c. 3
d. 4
e. 0
Key:a

#
41. 5 % 3 is
a. 1
b. 2
c. 3
d. 4
e. 0
Key:b

#
42. 5 % 4 is
a. 1
b. 2
c. 3
d. 4
e. 0
Key:a

#
43. 5 % 5 is
a. 1

Page 20
Another Random Scribd Document
with Unrelated Content
“The soldier who had brought the message from Tenedos was to find
out a dozen of those who had been rescued with us, and to enlist
them in the business. The bimbashi undertook the work of seizing
the officer bearing the order. He could not very well take the
command of the soldiers. Their faces would not be noticed by the
sailors in the dockyard boat, nor by those on board the ship; but
Hassan’s would be fully seen by both. My son, therefore, volunteered
to undertake this part of the affair, dressed in Hassan’s uniform. He
was to meet the twelve men at some spot agreed upon, near the
dockyard gate; to march in with them, produce the order, and go out
in one of the dockyard boats to the vessel; bring you ashore, and
lead you here. My part of the business was to conceal you as long as
necessary, and to arrange for your escape from Constantinople.
Thus, you see, the risk was slight in each case. Fazli would be
suspected, because he had urged your case at the Porte; but
nothing could be proved against him. His servants might be
examined, and his house searched. He would be able to prove that
he spent the evening with several of his friends, to whom he gave
an entertainment; and this morning, at the time the boat came for
you, he was to be at the ministry again, trying what could be done
on your behalf.
“None of the soldiers would know that the bimbashi was mixed up in
the affair at all. Their one-armed comrade was to be furnished with
money in case their gratitude required stimulating. My son ran no
risk, because it is among the officers of the garrison that the search
will be made for the man who commanded the party. As for myself,
there is nothing to connect me in any way with it. Ahmed will take
you off this evening to a small kiosk of mine ten miles away on the
coast. The bimbashi’s share was the most dangerous. He was to
take three men of his regiment on whom he could thoroughly rely.
They would be three of those he had commanded at Athens and
who had wives and children who had been rescued by you. He was
much loved by his soldiers, for he lived and starved as they did, and
did all in his power for their comfort.
“It is always dangerous to trust anyone, but in this case there was
the men’s loyalty to him and their gratitude to you to bind them. He
would learn from Fazli the hour when the Sultan’s decision would be
given, and he and the three soldiers were to be upon the spot and
to watch for the coming out of an officer followed by the man Fazli
was to appoint. The officer was sure to go to one or other of the
barracks for some soldiers to accompany him to the vessel. It would
depend upon the hour and the orders he received whether to go
direct on board or to do it in the morning. It was certain the hour
would be late, for the conferences with the Sultan are invariably in
the evening. Whether he went to one of the barracks or to his own
lodging, he was to be followed until he got to some quiet spot, then
seized, bound, and gagged, put into a large basket two of the
soldiers were to carry, and taken to some quiet spot outside the
walls. To-night, after it is dark, Hassan will go up and loose his
bonds sufficiently to enable him to work himself free after a time.
“That was the arrangement at which we arrived after talking it over
for hours. It was the work of the bimbashi and Ahmed. I am sure
that Fazli and I would never have thought of it at all by ourselves.
Ever since then we have kept a sharp look-out for the vessel.
Everything had been got ready. The one-armed soldier had got the
twelve men ready to go off. Hassan said he had made his
arrangements, and had found a ruined hut half a mile out of the
town beyond the walls, where there was little chance of anyone
looking in in the course of the day, and, indeed, if anyone did so
after eight o’clock, it would make little matter, as you would be
ashore by that hour. After the brig arrived I had messages from Fazli
every hour. He told us of the strong letters that had been sent by Ali
Pasha and the governor of Tenedos, and he brought all his influence
to bear to aid the representations made by them and by the officer
who brought you down.
“The ministers and the grand vizier were all agreed that the kindness
shown by those on board the English ship should suffice to save
your lives, but the Sultan decides for himself, and he was known to
be so enraged at foreigners joining the Greeks in their rebellion
against him that they feared nothing would move him. Everything,
therefore, was prepared for the attempt. The twelve soldiers were
directed to be at a spot near the dockyard at seven in the morning;
and the bimbashi, with his three men, took up his post near the
entrance to the ministry. I had nothing to do. At twelve o’clock last
night Hassan came here, bringing the official letter and a suit of his
uniform. Everything had gone well. The messenger had been seized
in a lonely street leading to one of the barracks, and was
overpowered and silenced before he had time to utter a sound.
Hassan accompanied the men carrying the basket in case by any
accident they should be questioned, and saw the officer placed,
securely bound, in the hut. As he had been blindfolded the instant
he had been seized he could not have seen that his assailants were
soldiers. Ahmed can tell you the rest.”
“There is nothing to tell,” the young man said. “I found the soldiers
waiting at the spot agreed upon, and gave them the arranged sign.
We went into the dockyard. I showed the order, and demanded a
large boat, which was at once given me. Then I went off to the
vessel, where our friends were handed over to me without a
question; rowed to the wharf; the clothes were changed in the lane;
and here we are.”
“I cannot thank you sufficiently for your kindness, Osman Bey, on
behalf of myself and my friend here, and express our gratitude also
to your son, to Hassan Bimbashi, and to Fazli Bey. You have indeed
nobly repaid the service that my father and all of us were glad to
have been able to render you.”
“Do not talk about gratitude,” the bey said. “You saved not only us,
but our wives and families, and that at the risk of your lives, for I
expected that the Greeks would fall upon you for interfering in their
butchery. What you did for us was done for strangers against whom
you were in arms. What we have done for you has been done for
our benefactors. Therefore let no more be said. My wife and
daughters would have despised me had I not done all in my power
to rescue their preservers. Now let us return to the next room,
where we will have a meal. I think it would be as well, Ahmed, to
send Mourad at once down to the bridge to hire a caique there, and
tell him to take it to the next landing to that at which you
disembarked, and there wait for you. What do you say?”
“I think, father, it would be better to go boldly down to the bridge
and take the boat there. I am sure to see some of the men we
generally employ, and it will seem natural to them that I should be
going with two friends up to our kiosk; whereas the other way would
be unusual, and when inquiries are made, as there are sure to be,
they might speak of it. But I agree with you that it will be as well not
to wait until the evening. Directly the officer gets free there is sure
to be a great stir, and there may be janissaries placed at the various
landings, as it might be supposed the escaped prisoners would try to
get on board a neutral ship.”
“Perhaps that would be better, Ahmed. I think they might boldly go
through the crowd with a little more attention to their dress.”
CHAPTER XXI
THE “MISERICORDIA” AGAIN

B EFORE starting, the disguises of Horace and the doctor were


perfected. They were so bronzed by the sun and air that their
skin was no fairer than that of many Turks of the better class; but it
was thought as well to apply a slight tinge of dye to them, and to
darken the doctor’s eyelashes and eyebrows with henna. The hair
was cut closely off the nape of the neck, below the line to which the
turban, properly adjusted, came down, and the skin was stained to
match that of their faces. The garments they wore formed part of
Ahmed’s wardrobe, and only needed somewhat more careful
adjustment than they had at first received. The ladies came up to
bid them farewell; but, as it had been arranged that in the course of
a few days, when inquiry should have ceased, the bey, with his wife
and daughters, should also proceed to their country residence, they
would meet again ere long. Mourad was to accompany them, and
putting a large box on his shoulders, filled with changes of clothes
and other necessaries, he followed them down the street.
In a short time they were in a busy thoroughfare, the number of
people becoming larger and larger as they went down towards the
water. Janissaries in their showy uniform swaggered along, soldiers
of the line, merchants, and peasants, while hamals staggering along
under enormous burdens swung from bamboo poles, made their
way, keeping up a constant shout to the crowd to clear the road.
State functionaries moved gravely along on their way to the offices
of the Porte. Veiled women, with children in their arms or clinging to
them, stopped to talk to each other in the streets or bargained with
the traders at the little shops. Military officers and Turks of the upper
class rode along on showy horses, prancing and curvetting and
scattering the foot passengers right and left.
Ahmed and his companions kept straight on, paying apparently no
attention to what was going on around them, Ahmed occasionally
making a remark in Turkish, the others keeping silent.
When they reached the water-side a number of boatmen surrounded
Ahmed, who soon found two men whom he had frequently
employed. The caique was brought alongside. Ahmed had already
told Horace to step in without hesitation with his companion, and to
take their seats at the bottom of the boat in the stern, while he and
Mourad would sit between them and the boatmen. The latter took
their places, and each seized a pair of the sculls. These, which were
much lighter than the sculls of an English boat, were round with a
long broad blade. They were not in rollocks, but in a strap of leather
fastened to a single thole-pin; inside this they thickened to a bulk of
three or four inches in diameter, narrowing at the extremity for the
grip of the hand. This thick bulge gave an excellent balance to the
sculls, and was rendered necessary by the fact that the boats were
high out of water, and the length of the sculls outboard
disproportionately large to that inboard.
A few vigorous strokes by the rowers sent the boat out into the open
water. Then the forward oarsman let his sculls hang by their thongs
alongside, took out four long pipes from the bottom of the caique,
filled and lighted them, and passed them aft to the passengers, and
then again betook himself to his sculls. Bearing gradually across they
reached the other side below Scutari, and then kept along the shore
at a distance of a hundred yards from the land. Ahmed chatted to
the oarsman next to him, and to Mourad, occasionally making some
remark to the others in Turkish in reference to the pretty kiosks that
fringed the shore; enforcing what he said by pointing to the objects
of which he was speaking. They assumed an appearance of interest
at what he was saying, and occasionally Horace, who was next to
him, talked to him in low tones in Greek, so that the boatman should
not catch the words, Ahmed each time replying in Turkish in louder
tones.
No class of boatmen in the world row with the vigour and strength
with which those of the Bosphorus—who are for the most part
Albanians—ply their sculls, and both Horace and the doctor were
struck with surprise and admiration at the steady and unflagging
way in which the men rowed, their breath seeming to come no
quicker, though the perspiration stood in beads on their brown faces
and muscular arms, and streamed down their swarthy chests, which
were left bare by the open shirts of almost filmy material of snowy
whiteness. Once only in the two hours’ journey did they cease
rowing and indulge for five minutes in a smoke; after which they
renewed their labours with as much vigour as when they first
started.
“That is the kiosk,” Ahmed said at last, pointing to one standing by
itself near the water’s edge on a projecting point of land, and in a
few minutes the caique swept in to the stairs. Ahmed had quietly
passed a few small silver coins into Horace’s hand, whispering in
Greek:
“Give them these as you land; an extra tip is always welcome.”
Then he paid the men as he got out, saying to them:
“I expect the ladies in a few days. You had better go up each
morning to the house, and then you can secure the job.”
Horace dropped the coins into the boatman’s hand, with a nod, as
he stepped out, and then they walked up to the house. The boatmen
again lighted their pipes for a smoke before starting back on their
long row. The kiosk was shut up. Mourad opened the door with a
key, and threw the shutters open.
“I wonder you leave the place entirely shut up,” Horace said.
“There is nothing to steal,” Ahmed laughed. “A few mats for the
floors and cushions for the divans. The cooking pots and crockery
are locked up in a big chest; there is little else. There are a few
vases for flowers and other ornaments stowed away in a cupboard
somewhere, but altogether there is little to tempt robbers; and,
indeed, there are very few of them about. The houses are always
left so, and it is an almost unknown thing for them to be disturbed.
You see everything is left clean and dusted, so the place is always
ready when we like to run down for a day or two. The house has not
been used much lately, for my parents and sisters have been two
years at Athens, and I have been frequently away at our estates,
which lie some fifteen miles west of Constantinople. Now we will
take a turn round, while Mourad is getting dinner ready.”
The latter had brought with him, in addition to the box, a large
basket containing charcoal, provisions, and several black bottles.
“There is a village half a mile farther along the shore, where he will
do his marketing to-morrow,” Ahmed had explained as he pointed to
the basket.
The garden was a rough triangle, two sides being washed by the
water, while a high wall running across the little promontory formed
the third side. It was some sixty or seventy yards each way; the
house stood nearly in the middle; the ground sloped down on either
side of it to the water, and was here clear of shrubs, which covered
the rest of the garden, interspersed with a few shady trees. There
were seats placed under these, and a small summer-house,
surrounded on three sides by high shrubs but open to the water,
stood at the end of the point.
“It is a little bit of a place, as you see,” Ahmed said; “but my mother
and the girls are very fond of it, and generally stay here during the
hot season. It is quite secluded, and at the same time they have a
good view of everything going up and down the Sea of Marmora;
and if there is any breeze at all, it sweeps right through the house.”
“It is charming,” Horace said. “With a boat here, one could not want
anything better.”
“We always have a boat, with two men, while we are here,” Ahmed
said. “The two men who rowed us have been with us two or three
seasons. My father often wants to go into Constantinople, and I
generally go when he does. We usually sleep at our house there,
and come back the next evening. If the ladies want to go out while
we are away, they can get a caique at the village.”
After they had taken a turn round the garden they went into the
house again. The principal room on the ground-floor was at the end
of the house, and occupied its full width. The windows extended
entirely round three sides of it, a divan, four feet wide, running
below them.
“You see, on a hot day,” Ahmed said, “and with all these windows
open, it is almost like being in the open air; and whichever way the
wind is, we can open or close those on one side, according to its
strength.”
The ceiling and the wall on the fourth side of the room were
coloured pink, with arabesques in white. The windows extended
from the level of the divan up to the ceiling, and were of unpainted
wood varnished, as was the wood-work of the divan. The floor was
very carefully and evenly laid, and the planks planed and varnished.
Beyond two or three little tables of green-painted wood, there was
no furniture whatever in the room. Outside the windows were
jalousies or perforated shutters, which could be closed during the
heat of the day to keep the room dark and cool.
Mourad had already got out the cushions and pillows and spread
them on the divan; had placed a small iron bowl full of lighted
charcoal in a low box full of sand in the centre of the room, and a
brass casket full of tobacco on one of the tables. Half a dozen
chibouks, with amber mouthpieces and cherry or jasmine-wood
stems, leant in a corner.
Three of the pipes were soon filled, and a piece of glowing charcoal,
taken from the fire with a pair of small tongs lying beside it, was
placed on each bowl. A few puffs were taken to get the tobacco
alight, then the pieces of charcoal were dropped into the fire again,
and shaking off their slippers they took their seats on the cushions
of the divan.
“It is very unfortunate that your friend does not speak Greek,”
Ahmed began.
“Yes, it is unfortunate for him,” Horace said as he translated the
remark to Macfarlane.
“If I had known that my lot was going to be cast out here,” the
doctor said, “I would have insisted on learning modern Greek
instead of ancient at school—that is, if I could have got a dominie
who could have taught me. It is a very serious drawback, especially
when you know that people are talking of things that may or may
not mean that you are going to get your throat cut in an hour or so.
For the last two days I seem to have been just drifting in the dark.”
“But I always translate to you as much as I can, doctor.”
“You do all that, Horace, and I will say this that you do your best;
but it is unsatisfactory getting things at second hand. One likes to
know precisely how things are said. However, as matters have gone
there is nothing to grumble at, though where one’s life is concerned
it is a natural weakness that one should like to have some sort of
say in the matter, instead of feeling that one is the helpless sport of
fate.”
Horace laughed, and Ahmed smiled gravely, when he translated the
doctor’s complaint.
“It comes all the harder to me,” the doctor went on, “because I have
always liked to know the why and the wherefore of a matter before I
did it. I must confess that since I have been in the navy that wish
has been very seldom gratified. Captains are not in the habit of
giving their reasons to their surgeons, overlooking the fact
altogether that these are scientific men, and that their opinion on
most subjects is valuable. They have too much of the spirit of the
centurion of old. They say ‘Do this,’ and it has to be done, ‘You will
accompany the boats, Dr. Macfarlane,’ or ‘You will not accompany
the boats.’ I wonder sometimes that, after an action, they don’t
come down into the cockpit and say, ‘You will cut off this leg,’ or
‘This arm is not to be amputated.’ The highness-and-mightiness of a
captain in His Majesty’s navy is something that borders on the
omnipotent. There is a maxim that the king can do no wrong; but a
king is a poor fallible body in comparison with a captain.”
“Well, I don’t think you have anything to complain of with Martyn,”
Horace laughed.
“Martyn is only an acting-captain, Horace, and it is not till they get
the two swabs on their shoulders that the dignity of their position
makes itself felt. A first lieutenant begins, as a rule, to take the
disease badly, but it is not till he gets his step that it takes entire
possession of him. I have even known a first lieutenant listen to
argument. It’s rare, lad, very rare, but I have known such a thing; as
for a captain, argument is as bad as downright open mutiny. Well,
this is a comfortable place that we have got into, at least in hot
weather, but I should say that an ice-house would be preferable in
winter. These windows don’t fit anyhow, and there would be a draft
through them that would be calculated to establish acute
rheumatism in the system in the course of half an hour.”
“The house is not used at all in winter,” Ahmed said, when he
understood the nature of the doctor’s criticisms. “Almost all the
kiosks along here belong to people in the town, and are closed
entirely for four months of the year. We are fond of warmth, and
when the snow is on the ground, and there is a cold wind blowing,
there would be no living here in any comfort.”
Six days passed. Ahmed went once to Constantinople to learn what
was going on. He brought back news that the escape of the two
English prisoners had caused a great sensation at the Porte, that all
the officers in the regiments there had been paraded in order that
the boatmen and the officers of the brig might pick out the one who
had brought off the order, but that naturally no one had been
identified. The soldiers had also been inspected, but as none of
these had been particularly noticed by the boatmen, the search for
those engaged had been equally unsuccessful. Fazli Bey had been
severely interrogated, his servants questioned, and his house
searched, but nothing had been found to connect him in any way
with the escape. A vigilant watch had been set upon every European
ship in port, and directions had been sent that every vessel passing
down the straits was to bring-to off the castles, and to undergo a
strict search.
Ahmed said that his father had heard from Fazli Bey that while the
Sultan was furious at the manner in which the prisoners had been
released, it was against those who had taken part in it that his anger
was principally directed, and that it was thought he was at heart not
altogether sorry that the two men who had befriended the Turks at
Athens had got off, although he would not have wavered in his own
expressed determination to put to death without exception all
foreigners who had aided the Greeks. “My father has not at present
thought of any plan for getting you away,” Ahmed said. “The search
is too rigorous, and no master of a vessel would dare to carry you
off; but in a short time the matter will be forgotten, and the search
in the port and in the Dardanelles will be slackened. It causes a
great deal of trouble and inconvenience, and the officials will soon
begin to relax their efforts. It is one of our national characteristics,
you know, to hate trouble. My father will be here with the others in a
couple of days, and then we will hold a council over it.”
The next day a boat arrived with carpets and hangings for the rooms
upstairs, which were entirely devoted to the females of the
household; and on the following evening Osman Bey, with his wife
and daughters, arrived in the same caique that Ahmed had come in,
two female servants with a quantity of luggage coming in another
boat. The next few days passed very pleasantly. The ladies took their
meals apart upstairs, but at other times sat in the room below,
treating Horace and the doctor as if they were members of the
family. There were many discussions as to the best method of
effecting their escape, and Ahmed went twice to Constantinople to
ascertain whether the search for them was being relaxed.
At last he and his father agreed that it would be the best plan for
them to go to Izmid, and to take a passage from there if some small
craft could be found sailing for Chios, or one of the southern ports or
islands. Ahmed was to accompany them, and was first to go to Izmid
to make the necessary arrangements. He knew many merchants in
the port, and as some of these were intimate friends they would
probably be disposed to assist those who had rendered so great a
service to Osman Bey and his family, but at the same time Ahmed
said: “You must not be impatient. The news of your being carried off
by sham soldiers, as they say, after their having assaulted and
robbed the officer who was bearer of the order for your delivery, has
made a great talk, and I shall have to be very careful as to how I
open the subject.”
“Pray run no risks,” Horace said. “You have all done so already, and
we should be unhappy, indeed, were any ill-fortune to befall you or
your family for what you have done for us. We are very comfortable
here. I would much rather wait for some really favourable
opportunity than hazard your safety, to say nothing of our own, by
impatience. It is but a fortnight since we made our escape.”
“I am going up the Bosphorus to-morrow,” Ahmed said. “I have to
see a bey whose property adjoins ours, and who has a kiosk some
distance above Scutari. It is only a question of business, and I shall
not be many minutes. I shall be glad if you will go with me; you can
remain in the boat. The rowers are so accustomed to see you that
they can have no curiosity about you; besides, now that they are
regularly in our service, and sleep and live here, there is no one for
them to gossip with, and, indeed, as we are good patrons of theirs I
do not think they would say anything about you, whatever they
might suspect.”
“I suppose you can take us both, Ahmed?”
“Certainly I meant that, of course. Your friend would find it dull
indeed alone here.”
Accordingly the next morning they started. When they neared
Scutari they saw on the other side of the water a brig making her
way in from the Dardanelles.
“That is a slovenly-looking craft, doctor, with those dirty ill-fitting
sails; rather a contrast that to our schooner. I wonder where she is
and what she is doing. That brig is about her size too, and the hull is
not unlike hers, looking at it from here.”
The doctor gazed at the craft intently. “Eh, man,” he said in low
tones, grasping his companion’s arm tightly, “I believe that it is our
craft, Horace.”
“What, that dirty looking brig, doctor, with her sides looking as rusty
as if she had not had a coat of paint for the last year!”
“It’s the schooner disguised. It is easy enough, lad, to alter the rig,
and to get hold of dirty sails and to dirty the paint, but you can’t
alter the shape. No Greek, or Turk either, ever turned out the hull of
that brig.”
“It is marvellously like the schooner,” Horace said. “I should almost
have sworn that it was her.”
“It is the schooner, lad. How she got there, and what she is doing, I
don’t know, but it is her.”
“What is it?” Ahmed asked. “What is there curious in that brig that
you are so interested in her?”
“We both think it is our schooner, Ahmed; the one in which we took
your father and mother from Athens in.”
“That!” Ahmed exclaimed incredulously; “why, my sisters were
always saying what a beautiful vessel it was, with snow-white sails.”
“So she had, Ahmed; but if it is the schooner she is disguised
altogether. They have taken down her top-masts and put those
stumpy spars in instead; they have put up yards and turned her into
a brig; they have got sails from somewhere and slackened all her
ropes, and made her look dirty and untidy; still we both think that it
is her. Please tell the boatmen to cross to the vessel and row
alongside.”
Ahmed gave the order, and as the caique shot away from the shore
said: “But how could it be your ship? Do you think that she has been
captured? If not, she could not have ventured up here.”
“She has not been captured,” Horace said confidently, “and if she
had been her captors would not have taken the trouble to spoil her
appearance. If that is the schooner they have come up to make
inquiries about us, and to try to rescue us if possible.”
It was fully two miles across, and as they approached the brig the
doctor and Horace became more and more convinced that they were
not mistaken.
“Please tell the men to pull in behind her,” Horace said, “so that we
can see her better. There can be no mistake about her if we can
catch a sight of her fore and aft.”
When they fell into the brig’s wake they were some three hundred
yards astern of her, and the last vestige of doubt disappeared as
they saw her great breadth and fine run.
“That is my father’s craft, Ahmed, I could swear to her now. Will you
tell the men to row up alongside.”
There were only four or five men visible on deck in the ordinary
dress of Turkish sailors. As the caique came alongside a man put his
head over the rail and asked in Turkish “what they wanted?”
“We want to come on board,” Ahmed said; “we have business with
the captain.”
“I am the captain,” the man said; “are you one of the port officers?”
“Drop astern to the chains,” Ahmed said to the boatmen, who were
hanging on by a boat-hook. They let the caique fall aft her own
length, and then, seizing the shrouds, the doctor and Horace sprang
up on to the chains and then leapt on board, Ahmed following them
more slowly. There was no doubt that it was the schooner, though
her decks were covered with dirt and litter, and the paint of her
bulwarks discoloured as if they had been daubed with mud which
had been allowed to dry. The sailors looked up as if in surprise at the
sudden appearance of the strangers on their deck. Horace glanced
at them. He knew none of their faces.
“Well, sir,” the captain said, coming up, “may I again ask what you
want with us?”
“You talk to him, Ahmed,” Horace said in Greek. “We will run below;”
and at a bound he was at the top of the companion and sprang
down into the cabin. “Father,” he shouted, “are you here?”
The door of the main cabin opened, and a Turk with a flowing white
beard made his appearance.
“My dear father, is it you?”
“Why, Horace, Horace, my dear boy, where do you come from, what
miracle is this?” And in a moment they were clasped in each other’s
arms. A moment later a tall Nubian rushed out and seized Horace’s
hand.
“Why, Martyn, you don’t mean to say it is you in this disguise?”
“It is indeed, Horace. I am delighted to see you, lad; and you too,
doctor. I had never thought to clap eyes on you again;” and he
shook hands heartily with Macfarlane, as also did Mr. Beveridge.
“I seem to be in a dream,” the latter said; “how do you come here,
what has happened?”
“I may say the same, father; but first, where are Miller, Tarleton, and
the crew?”
“They are all down in the hold,” Martyn said; “they are all in hiding.”
“I have a friend on deck, father; he is the son of one of the Turks we
saved at Athens. He and his friends saved our lives, and have been
concealing us since they got us away. I expect he is having some
difficulty with the man who calls himself captain.”
“Come up with me then, Horace, and we will fetch him down; and I
will tell Iskos that it is all right.”
As soon as they reached the deck Mr. Beveridge explained to the
supposed captain that these were the friends he had come to find,
and that all was well.
Martyn had also come up. “What had we better do now, Martyn?”
Martyn looked up at the sails, and at the water, “Fortunately the
wind is dying out fast,” he said. “I don’t think we are making way
against the current now, and we shall certainly not do so long. Hold
on a few minutes longer, Iskos, and then anchor. It will seem as if
we could not get up against the stream to the other shipping. If you
see a boat coming off, let us know. They will probably be sending off
to look at our papers; but perhaps they may not trouble about it till
we get up to the regular anchorage. Now, Mr. Beveridge, we will go
down below and gladden their hearts there.”
The main-deck was filled with casks, bales, and merchandise of all
sorts, and the hatchways of the hold covered with sacks of flour.
Macfarlane joined them, and aided Martyn and Horace in removing
the sacks. Horace saw as he did so that what appeared a solid pile
was really hollow, and that the hatchway was only partially closed so
as to allow a certain amount of air to pass down below. The bags
were but partly removed when there was a rush from below, Miller
and Tarleton with their cutlasses in hand, followed by the sailors with
boarding-pikes dashed through the opening. They paused in
astonishment upon seeing only Martyn, Mr. Beveridge, and three
Turkish gentlemen, but as they recognized Horace and the doctor,
the officers threw down their swords and with a shout of joy seized
them by the hand. The sailors close behind them broke into a cheer
which swelled into a roar as the men below gathered the news that
their two officers had returned.
“The men can come up between decks, Miller,” Martyn said. “Let
them have a stiff ration of grog all round. Boatswain, see that the
sacks are piled again as before, leaving two or three out of their
place to allow the men to go down again if necessary. If the word is
passed that a boat is coming off, let them hurry back again and
replace the sacks carefully after them as they go down.”
The sailors continued pouring up through the hatchway, and behind
them came the two Greeks, whose joy at seeing Horace was
excessive.
“Now,” Mr. Beveridge said, “let us adjourn to the cabin and hear all
about this wonderful story.”
On entering the main cabin Horace found that its appearance, like
that of the rest of the ship, had been completely altered, all the
handsome fittings had been removed, and the whole of the
woodwork painted with what he thought must have been a mixture
of white paint and mud, so dirty and dingy did it appear.
“Now, father, in the first place I must properly introduce my friend
Ahmed to you all. He is the son of Osman Bey, who was one of the
principal Turks of the party we took to Tenedos, as no doubt you
remember; it is to him and his father, aided by Fazli Bey, and the
bimbashi who was in command of the troops, and some of the
soldiers, that we owe our lives.”
THE DOCTOR TELLS THE STORY

This was said in Greek, and while Mr. Beveridge was expressing his
gratitude to Ahmed, Horace repeated the same in English to the
three officers, who warmly shook hands with the young Turk. Marco
and his brother placed refreshments of all kinds on the table.
Ahmed partook of them sparingly, and then said to Horace: “Of
course you will not be returning with me now. I think I had better be
going on, it will be dark before I have done my business and get
back again; and besides, the boatmen will be wondering at my long
stay here.”
“I am afraid your father will think us horribly ungrateful if we go off
without thanking him and your mother for all their kindness to us,”
Horace said; “but of course we must be getting out of this as soon
as we can.”
“My father and mother will be delighted to hear that you have so
suddenly and unexpectedly got out of your difficulties,” Ahmed said,
“and that in a manner from which no suspicion can possibly arise to
us. What we have done has been but a small return for the service
you rendered us.”
Mr. Beveridge added his warmest thanks to those of Horace, and
Ahmed then went up with the others on to the deck and took his
place in the caique; Horace making a present of a small gold piece
to each of the boatmen. Ahmed said good-bye to him and the doctor
in Turkish, expressing the hope that when they got back to Cyprus
they would write to him, a message that Iskos afterwards translated
to Horace. As soon as he had rowed away the rest of them returned
to the cabin.
“And now for the story,” Mr. Beveridge said as they took their places
round the table.
“The doctor shall tell it,” Horace said. “He has had no chance of
talking for the last fortnight, and it is only fair he should have his
turn now.”
The doctor accordingly, in his slow and deliberate way, related the
whole story of their adventures from the time they landed from the
schooner until their return on board, a narration which lasted nearly
two hours.
Welcome to our website – the ideal destination for book lovers and
knowledge seekers. With a mission to inspire endlessly, we offer a
vast collection of books, ranging from classic literary works to
specialized publications, self-development books, and children's
literature. Each book is a new journey of discovery, expanding
knowledge and enriching the soul of the reade

Our website is not just a platform for buying books, but a bridge
connecting readers to the timeless values of culture and wisdom. With
an elegant, user-friendly interface and an intelligent search system,
we are committed to providing a quick and convenient shopping
experience. Additionally, our special promotions and home delivery
services ensure that you save time and fully enjoy the joy of reading.

Let us accompany you on the journey of exploring knowledge and


personal growth!

testbankbell.com

You might also like