100% found this document useful (15 votes)
65 views35 pages

Get Solution Manual for Visual C# How to Program (6th Edition) (Deitel Series) 6th Edition Free All Chapters Available

The document provides information on downloading solution manuals and test banks for various programming and educational materials, including Visual C# and Visual Basic. It also includes an introduction to computer concepts, programming languages, and exercises related to the content. Additionally, it covers topics such as object-oriented programming, cloud computing, and the benefits of using existing software components.

Uploaded by

nadhmiyewei
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 (15 votes)
65 views35 pages

Get Solution Manual for Visual C# How to Program (6th Edition) (Deitel Series) 6th Edition Free All Chapters Available

The document provides information on downloading solution manuals and test banks for various programming and educational materials, including Visual C# and Visual Basic. It also includes an introduction to computer concepts, programming languages, and exercises related to the content. Additionally, it covers topics such as object-oriented programming, cloud computing, and the benefits of using existing software components.

Uploaded by

nadhmiyewei
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/ 35

Visit https://testbankbell.

com to download the full version and


explore more testbank or solution manual

Solution Manual for Visual C# How to Program (6th


Edition) (Deitel Series) 6th Edition

_____ Click the link below to download _____


http://testbankbell.com/product/solution-manual-for-
visual-c-how-to-program-6th-edition-deitel-series-6th-
edition/

Explore and download more testbank at testbankbell


Here are some recommended products that might interest you.
You can download now and explore!

Solution Manual for Visual Basic 2012 How to Program, 6/E


6th Edition : 0133406954

http://testbankbell.com/product/solution-manual-for-visual-
basic-2012-how-to-program-6-e-6th-edition-0133406954/

testbankbell.com

Test Bank for Visual C# 2012 How to Program, 5/E 5th


Edition : 0133379337

http://testbankbell.com/product/test-bank-for-visual-c-2012-how-to-
program-5-e-5th-edition-0133379337/

testbankbell.com

Solution Manual for C++ How to Program 10th by Deitel

http://testbankbell.com/product/solution-manual-for-c-how-to-
program-10th-by-deitel/

testbankbell.com

Test Bank for Measurement and Assessment in Education, 2/E


2nd Edition : 0205579345

http://testbankbell.com/product/test-bank-for-measurement-and-
assessment-in-education-2-e-2nd-edition-0205579345/

testbankbell.com
Fundamentals of General Organic and Biological Chemistry
8th Edition McMurry Test Bank

http://testbankbell.com/product/fundamentals-of-general-organic-and-
biological-chemistry-8th-edition-mcmurry-test-bank/

testbankbell.com

Physics of Continuous Matter Exotic and Everyday Phenomena


in the Macroscopic World 2nd Lautrup Solution Manual

http://testbankbell.com/product/physics-of-continuous-matter-exotic-
and-everyday-phenomena-in-the-macroscopic-world-2nd-lautrup-solution-
manual/
testbankbell.com

Test Bank for Guide to Networking Essentials 6th Edition


by Tomsho

http://testbankbell.com/product/test-bank-for-guide-to-networking-
essentials-6th-edition-by-tomsho/

testbankbell.com

Test Bank for Special Events: Creating and Sustaining a


New World for Celebration, 7th Edition by Goldblatt

http://testbankbell.com/product/test-bank-for-special-events-creating-
and-sustaining-a-new-world-for-celebration-7th-edition-by-goldblatt/

testbankbell.com

Test Bank for Discovering Leadership Designing Your


Success, Anthony Middlebrooks, Scott J. Allen, Mindy S.
McNutt, James L. Morrison,
http://testbankbell.com/product/test-bank-for-discovering-leadership-
designing-your-success-anthony-middlebrooks-scott-j-allen-mindy-s-
mcnutt-james-l-morrison/
testbankbell.com
Test Bank for Government and Not-For-Profit Accounting:
Concepts and Practices, 7th Edition

http://testbankbell.com/product/test-bank-for-government-and-not-for-
profit-accounting-concepts-and-practices-7th-edition/

testbankbell.com
Solution Manual for Visual C# How to
Program (6th Edition) (Deitel Series) 6th
Edition
Full download at: https://testbankbell.com/product/solution-manual-for-visual-c-how-to-
program-6th-edition-deitel-series-6th-edition/

Introduction to Computers,
the Internet and Visual C# 1
Objectives
In this chapter you’ll:
■ Learn basic computer
hardware, software and data
concepts.
■ Be introduced to the different
types of computer
programming languages.
■ Understand the history of the
Visual C# programming
language and the Windows
operating system.
■ Learn what cloud computing
with Microsoft Azure is.
■ Understand the basics of
object technology.
■ Be introduced to the history
of the Internet and the World
Wide Web.
■ Understand the parts that
Windows, .NET, Visual
Studio and C# play in the C#
ecosystem.
■ Test-drive a Visual C#
drawing app.
2 Chapter 1 Introduction to Computers, the Internet and
Self-Review
Visual C#Exercises 2

Self-Review Exercises
1.1 Fill in the blanks in each of the following statements:
a) Computers process data under the control of sequences of instructions called .
ANS: computer programs.
b) A computer consists of various devices referred to as , such as the keyboard,
screen, mouse, hard disks, memory, DVD drives and processing units.
ANS: hardware.
c) Data items processed by computers form a(n) that becomes larger and more
complex in structure as we progress from the simplest data items (called “bits”) to richer
data items, such as characters, fields, and so on.
ANS: data hierarchy.
d) Computers can directly understand only their language, which is composed
only of 1s and 0s.
ANS: machine.
e) The three types of computer programming languages discussed in the chapter are ma-
chine languages, and .
ANS: assembly languages, high-level languages.
f) Programs that translate high-level-language programs into machine language are called
.
ANS: compilers.
g) A(n) processor implements several processors on a single “microchip”—a
dual-core processor has two CPUs and a quad-core processor has four CPUs.
ANS: multicore.
h) Windows 10 introduced the for building Windows apps that run on desktop
computers, notebook computers, tablets, phones, Xbox and even Microsoft’s new
HoloLens augmented reality holographic headset—all using nearly identical code.
ANS: Universal Windows Platform (UWP).
1.2 Fill in the blanks in each of the following statements:
a) Objects, or more precisely the that objects come from, are essentially reusable
software components.
ANS: classes.
b) You send messages to an object. Each message is implemented as a method that
tells a method of the object to perform its task.
ANS: call.
c) A new class of objects can be created quickly and conveniently by ; the new
class absorbs the characteristics of an existing class, possibly customizing them and add-
ing unique characteristics of its own.
ANS: inheritance.
d) To create the best solutions, you should follow a detailed analysis process for determin-
ing your project’s (i.e., defining what the system is supposed to do) and de-
veloping a design that satisfies them (i.e., deciding how the system should do it).
ANS: requirements.
e) Visual C# is driven. You’ll write programs that respond to mouse clicks, key-
strokes, timer expirations and touches and finger swipes.
ANS: event.
f) A key goal of Java is to be able to write programs that will run on a great variety of com-
puter systems and computer-control devices. This is sometimes called .
ANS: write once, run anywhere.
1.3 Fill in the blanks in each of the following statements:
3 Chapter 1 Introduction to Computers, the Internet and
Self-Review
Visual C#Exercises 3

a) The executes .NET programs.


ANS: Common Language Runtime (CLR) of the .NET Framework.
b) The CLR provides various services to code, such as integrating software com-
ponents written in different .NET languages, error handling between such components,
enhanced security and more.
ANS: managed.
c) The ability of a program to run without modification across multiple platforms is
known as platform .
ANS: independence.
d) Visual Studio is a(n) in which C# programs are developed.
ANS: IDE.
e) You can sell your own Windows Phone apps in the .
ANS: Windows Store.
1.4 State whether each of the following is true or false. If false, explain why.
a) Software objects model both abstract and real-world things.
ANS: True.
b) The most popular database model is the relational database in which data is stored in
simple tables. A table includes records and fields.
ANS: True.
c) A database is a collection of data that’s organized for easy access and manipulation.
ANS: True.
d) Secondary storage data takes much longer to access than data in primary memory, but
the cost per unit of secondary storage is much higher than that of primary memory.
ANS: False: The cost per unit of secondary storage is much lower than that of primary
memory.
e) High-level languages allow you to write instructions that look almost like everyday Eng-
lish and contain commonly used mathematical expressions.
ANS: True.
f) An object has attributes that it carries along as it’s used in a program.
ANS: True.
g) The Transmission Control Protocol (TCP) ensures that messages, consisting of sequen-
tially numbered pieces called bytes, were properly routed from sender to receiver, ar-
rived intact and were assembled in the correct order
ANS: False. The pieces are called packets, not bytes.
h) The information-carrying capacity of communications lines on the Internet has in-
creased tremendously, while hardware costs have increased.
ANS: False. Hardware costs have decreased.
i) You can build web-based apps with C# and Microsoft’s ASP.NET technology.
ANS: True.
j) Java has become the key programming language for the Mac OS X desktop operating
system and all iOS-based devices, such as iPods, iPhones and iPads.
ANS: False. The language is Swift, not Java.
k) Microsoft’s ASP.WEB technology is used to create web apps.
ANS: False. It’s ASP.NET technology.
l) Microsoft’s Windows operating system is the most widely used desktop operating sys-
tem worldwide.
ANS: True.
1.5 Arrange these byte measurements in order from smallest to largest: terabyte, megabyte,
petabyte, gigabyte and kilobyte.
ANS: kilobyte, megabyte, gigabyte, terabyte, petabyte.
4 Chapter 1 Introduction to Computers, the Internet and
Self-Review
Visual C#Exercises 4

1.6 Describe the two-step translation process for preparing your C# code to execute on your
particular computer.
ANS: C# code is first compiled into MSIL and placed in an executable file. When the app
executes, another compiler called the JIT (just-in-time) compiler in the CLR trans-
lates the MSIL in the executable file into machine-language code (for a particular
platform).

Exercises
1.7 Fill in the blanks in each of the following statements:
a) The programs that run on a computer are referred to as .
ANS: software
b) Systems such as smartphones, appliances, game controllers, cable set-top boxes and au-
tomobiles that contain small computers are called .
ANS: embedded systems
c) Just as characters are composed of bits, are composed of characters or bytes.
ANS: fields
d) Information on secondary storage devices is ; it’s preserved even when the
computer’s power is turned off.
ANS: persistent
e) Translator programs called convert high-level language code into machine-
language code.
ANS: compilers
f) In object-oriented programming languages, we create a program unit called a(n)
to house the set of methods that perform its tasks.
ANS: class
g) Use a building-block approach to creating your programs. Avoid reinventing the
wheel—use existing pieces wherever possible. Such software is a key benefit
of object-oriented programming.
ANS: reuse
1.8 Fill in the blanks in each of the following statements:
a) Although many different OOAD processes exist, a single graphical language for com-
municating the results of any OOAD process has come into wide use. This language,
known as the , is now the most widely used graphical scheme for modeling ob-
ject-oriented systems.
ANS: UML
b) Tim Berners-Lee developed the for sharing information via “hyperlinked”
text documents on the web.
ANS: HyperText Markup Language (HTML)
c) The CLR is a(n) machine. It is software that manages the execution of pro-
grams and hides from them the underlying operating system and hardware.
ANS: virtual
d) Converting a program to run on a different platform from which it was originally in-
tended is called .
ANS: porting.
e) Microsoft’s Windows is a cloud-computing platform that allows you to de-
velop, manage and distribute your apps in the cloud.
ANS: Azure. (Instructor Note: "Microsoft’s Windows" should be simply "Microsoft" in
this exercise.)
5 Chapter 1 Introduction to Computers, the Internet and Visual C#Exercises 5

f) By using existing controls—which are objects—you can create powerful apps much
faster than if you had to write all the code yourself. This is a key benefit of software
.
ANS: reuse
1.9 State whether each of the following is true or false. If false, explain why.
a) The smallest data item in a computer can assume the value 1 or the value 2. Such a data
item is called a bit (short for “binary digit”—a digit that can assume either of two val-
ues).
ANS: False. Such items have the value 0 or 1.
b) The Unicode character set is a popular subset of ASCII that represents uppercase and
lowercase letters, digits and some common special characters.
ANS: False. ASCII is a subset of Unicode.
c) Each of the following is a form of computer output: data displayed on screens, printed
on paper, played as audio or video on PCs and media players, used to control other de-
vices, such as robots, 3D printers and “intelligent” appliances.
ANS: True.
d) Reuse helps you build more reliable and effective systems, because existing classes and
components often have gone through extensive testing, debugging and performance
tuning.
ANS: True.
e) One of the W3C’s primary goals is to make the web universally accessible to everyone
regardless of disabilities, language or culture.
ANS: True.
f) C# is available only on Microsoft Windows.
ANS: False. There are ports of C# for other platforms, such as Linux.
g) The .NET Framework Class Library has millions of valuable prebuilt classes that have
been tested and tuned to maximize performance.
ANS: False. Thousands, not millions, of prebuilt classes.
h) .NET programs can run on any platform.
ANS: False. .NET prorgrams run on the Common Language Runtime, which is a virtual
machine.
i) The Universal Windows Platform (UWP) is designed to provide a common platform
(the underlying system on which apps run) and user experience across all of your devices
including personal computers, smartphones, tablets and Xbox Live.
ANS: True.
1.10 What is a key advantage of interpreters over compilers? What is a key disadvantage?
ANS: A key advantage is that interpreters can execute high-level language programs directly
(without the need for compilation). A key disadvantage is that interpreted programs
exexute more slowly than compiled programs.
1.11 What is the key advantage of using the new async feature in preference to using old-style
multithreading?
ANS: The new features simplify asynchronous programming, because the compiler hides
much of the associated complexity from the developer.
1.12 What are operating systems?
ANS: Operating systems are software systems that make using computers more convenient
for users, app developers and system administrators. They provide services that allow
each app to execute safely, efficiently and concurrently (i.e., in parallel) with other
apps.
6 Chapter 1 Introduction to Computers, the Internet and Visual C#Exercises 6

1.13 Why is using cloud-computing resources sometimes preferable to purchasing all the hard-
ware you need for your own computer?
ANS: Cloud computing gives you the flexibility to increase or decrease computing resourc-
es to meet your resource needs at any given time, making it more cost effective than
purchasing expensive hardware to ensure that you have enough storage and process-
ing power at their occasional peak levels.
1.14 Categorize each of the following items as either hardware or software:
a) CPU
ANS: Hardware.
b) Compiler
ANS: Software
c) Input unit
ANS: Hardware.
d) A word-processor program
ANS: Software
e) A C# program
ANS: Software
1.15 Translator programs, such as assemblers and compilers, convert programs from one lan-
guage (referred to as the source language) to another language (referred to as the target language).
Determine which of the following statements are true and which are false:
a) An assembler translates source-language programs into machine-language programs.
ANS: True.
b) High-level languages are generally machine dependent.
ANS: False. A high-level language must be compiled into machine-dependent language be-
fore it can be executed. This allows high-level languages to be used on all computers
with appropriate compilers.
c) A machine-language program requires translation before it can be run on a computer.
ANS: False. A machine-language program is native to a specific machine.
d) The C# compiler translates high-level-language programs into SMIL.
ANS: False. It translates C# into MSIL.
1.16 Expand each of the following acronyms:
a) W3C
ANS: World Wide Web Consortium
b) OOP
ANS: Object-Oriented Programming
c) CLR
ANS: Common Language Runtime
d) MSIL
ANS: Microsoft Intermediate Language
e) UML
ANS: Unified Modeling Language
f) IDE
ANS: Integrated Development Environment
1.17 What are the key benefits of the .NET Framework and the CLR? What are the drawbacks?
ANS: The key benefits are portability between operating systems and interoperability be-
tween languages. As long as a CLR exists for a platform, it can run any .NET pro-
gram. Programmers can concentrate on program logic instead of platform-specific
details. Thus, the double compilation (code-to-MSIL, and MSIL-to-machine code)
allows for platform independence: Programs can be written once and executed on any
7 Chapter 1 Introduction to Computers, the Internet and Visual C#Exercises 7

platform supporting the CLR—this is known as platform independence. Code writ-


ten once could easily be used on another machine without modification, saving time
and money. A second benefit of the .NET framework is language interoperability—
software components written in different languages can interact (language indepen-
dence). A drawback associated with these features is that .NET programs cannot be
run until the .NET Framework is developed for a platform. Another is the overhead
of the double compilation that is needed before a .NET-language program can be ex-
ecuted.
1.18 What are the advantages to using object-oriented techniques?
ANS: Programs that use object-oriented programming techniques are easier to understand,
correct and modify. The key advantage with using object-oriented programming is
that it tends to produce software that is more understandable, because it is better or-
ganized and has fewer maintenance requirements than software produced with earlier
methodologies. OOP helps the programmer build applications faster by reusing ex-
isting software components that model items in the real world. OOP also helps pro-
grammers create new software components that can be reused on future software
development projects. Building software quickly, correctly, and economically has
been an elusive goal in the software industry. The modular, object-oriented design
and implementation approach has been found to increase productivity while reduc-
ing development time, errors, and cost.
1.19 You are probably wearing on your wrist one of the world’s most common types of objects—
a watch. Discuss how each of the following terms and concepts applies to the notion of a watch:
object, attributes and behaviors.
ANS: The entire watch is an object that is composed of many other objects (the moving
parts, the band, the face, etc.) Watch attributes are time, color, band style, technology
(digital or analog), and the like. The behaviors of the watch include setting the time
and getting the time. A watch can be considered a specific type of clock (as can an
alarm clock).
1.20 What is the key accomplishment of the UML?
ANS: It replaced the many different graphical modeling languages with a single (unified)
language for modeling that can be used by developers regardless of the different
OOAD processes they may use.
1.21 What did the chief benefit of the early Internet prove to be?
ANS: Communication by e-mail. Today, that communication is also facilitated by appli-
cations such as instant messaging and file transfer.
1.22 What is the key capability of the web?
ANS: It allows computer users to locate and view multimedia-based documents on almost
any subject over the Internet.
1.23 What is the key vision of Microsoft’s .NET initiative?
ANS: To embrace the Internet and the web in the development and use of software.
1.24 How does the .NET Framework Class Library facilitate the development of .NET apps?
ANS: First, the Framework Class Library is a large library of reusable classes that reduces
development time. Programmers can build software quickly by reusing framework’s
classes, rather than building new classes “from scratch.” Second, the Framework Class
Library is shared by all of the .NET languages, which means that programmers who
work in multiple languages have to learn only one class library.
8 Chapter 1 Introduction to Computers, the Internet and Visual C#Exercises 8

1.25 Besides the obvious benefits of reuse made possible by OOP, what do many organizations
report as another key benefit of OOP?
ANS: That OOP tends to produce software that is more understandable, better organized,
and easier to maintain, modify and debug.

Making-a-Difference Exercises
The Making-a-Difference exercises will ask you to work on problems that really matter to individ-
uals, communities, countries and the world.
1.26 (Test Drive: Carbon Footprint Calculator) Some scientists believe that carbon emissions,
especially from the burning of fossil fuels, contribute significantly to global warming and that this
can be combatted if individuals take steps to limit their use of carbon-based fuels. Various organi-
zations and individuals are increasingly concerned about their “carbon footprints.” Websites such
as TerraPass
http://www.terrapass.com/carbon-footprint-calculator-2/

and Carbon Footprint


http://www.carbonfootprint.com/calculator.aspx

provide carbon-footprint calculators. Test drive these calculators to determine your carbon foot-
print. Exercises in later chapters will ask you to program your own carbon-footprint calculator. To
prepare for this, research the formulas for calculating carbon footprints.
1.27 (Test Drive: Body-Mass-Index Calculator) By recent estimates, two-thirds of the people in
the United States are overweight and about half of those are obese. This causes significant increases
in illnesses such as diabetes and heart disease. To determine whether a person is overweight or obese,
you can use a measure called the body mass index (BMI). The United States Department of Health
and Human Services provides a BMI calculator at http://www.nhlbi.nih.gov/guidelines/
obesity/BMI/bmicalc.htm. Use it to calculate your own BMI. An exercise in Chapter 3 will ask you
to program your own BMI calculator. To prepare for this, research the formulas for calculating BMI.
1.28 (Attributes of Hybrid Vehicles) In this chapter you learned the basics of classes. Now you’ll
begin “fleshing out” aspects of a class called “Hybrid Vehicle.” Hybrid vehicles are becoming increas-
ingly popular, because they often get much better mileage than purely gasoline-powered vehicles.
Browse the web and study the features of four or five of today’s popular hybrid cars, then list as many
of their hybrid-related attributes as you can. For example, common attributes include city-miles-per-
gallon and highway-miles-per-gallon. Also list the attributes of the batteries (type, weight, etc.).
ANS:
• Manufacturer
• Type of Hybrid—Battery hybrid (Hybrid Electric Vehicles), Plug-in hybrid, Fuel cell etc.
• Driver feedback system—so the driver can monitor fuel efficiency based on their driving
• Energy recovery—for example, regenerative breaking
• Carbon footprint—tons of CO2 per year
• Fuel capacity
• City-miles-per-gallon
• Highway-miles-per-gallon
• Two-mode hybrid propulsion system
• Engine size—V6, V8, etc.
• Vehicle type—SUV, crossover, compact, mid-size, etc.
Making-a-Difference Exercises 9

• Seating capacity
• Horse power
• Drive train (front wheel drive, all wheel drive)
• Top speed
• Torque
• Price
1.29 (Gender Neutrality) Some people want to eliminate sexism in all forms of communication.
You’ve been asked to create a program that can process a paragraph of text and replace gender-spe-
cific words with gender-neutral ones. Assuming that you’ve been given a list of gender-specific
words and their gender-neutral replacements (e.g., replace “wife” with “spouse,” “man” with “per-
son,” “daughter” with “child” and so on), explain the procedure you’d use to read through a para-
graph of text and manually perform these replacements. How might your procedure generate a
strange term like “woperchild,” which is actually listed in the Urban Dictionary (www.urbandic-
tionary.com)? In Chapter 5, you’ll learn that a more formal term for “procedure” is “algorithm,”
and that an algorithm specifies the steps to be performed and the order in which to perform them.
ANS: Search through the entire paragraph for a word such as “wife” and replace every oc-
currence with “spouse.” Repeat this searching process for every gender specific word
in the list. You could accidentally get a word like “woperchild” if you are not careful
about how you perform replacements. For example, the word “man” can be part of
a larger word, like “woman.” So, replacing every occurrence of “man” can yield
strange results. Consider the process of replacing “man” with “person” then replacing
“son” with “child.” If you encounter the word “woman,” which contains the word
“man,” you’d replace “man” with “person” resulting in the word “woperson.” In a
subsequent pass you’d encounter “woperson” and replace “son” with “child” result-
ing in the “woperchild.”
Other documents randomly have
different content
The Project Gutenberg eBook of Told in the
gardens of Araby (untranslated until now)
This ebook is for the use of anyone anywhere in the United
States and most other parts of the world at no cost and with
almost no restrictions whatsoever. You may copy it, give it away
or re-use it under the terms of the Project Gutenberg License
included with this ebook or online at www.gutenberg.org. If you
are not located in the United States, you will have to check the
laws of the country where you are located before using this
eBook.

Title: Told in the gardens of Araby (untranslated until now)

Translator: Izora C. Chandler


Mary Williams Montgomery

Release date: March 24, 2024 [eBook #73256]

Language: English

Original publication: New York: Eaton & Mains, 1905

Credits: Jeroen Hellingman and the Online Distributed


Proofreading Team at https://www.pgdp.net/ for Project
Gutenberg (This book was produced from scanned
images of public domain material from the Google
Books project.)

*** START OF THE PROJECT GUTENBERG EBOOK TOLD IN THE


GARDENS OF ARABY (UNTRANSLATED UNTIL NOW) ***
[Contents]

[Contents]
Told in the Gardens of
Araby

(UNTRANSLATED UNTIL NOW)

By
IZORA CHANDLER
and
MARY W. MONTGOMERY
NEW YORK: EATON & MAINS
CINCINNATI: JENNINGS & GRAHAM

[Contents]

Copyright, 1905, by
EATON & MAINS [3]

[Contents]
CONTENTS

Page
Prelude 5
The Emerald Roc 18
The Story of the Beautiful Girl Who Had Her Wish 44
The Story of the Beautiful One Who Did Not Have Her
Desire 62
Story of the Crying Pomegranate and the Laughing Bear 97
Story of the Bird of Affliction 130
Story of the Water-Carrier 157
Story of the Coffee-Maker’s Apprentice 168
Story of the Candy-Maker’s Apprentice 182
The Crystal Kiosk and the Diamond Ship 203

[5]
[Contents]
Told in the Gardens of Araby
PRELUDE

Memory swings backward to revel in a certain Garden of Delight; to


picture the high whitewashed wall, topped with red tiles, and
guarding within its quadrangle of acres clustering palms, grave
cypress trees, the fig, quince, orange, pomegranate, and mulberry;
also the gray olive, with roots twisted out of the soil as if by force and
seeming to hint that, once upon a time, giant souls were imprisoned
within each grizzly trunk and struggled themselves to death, in mad
wrestlings after freedom.

Shielded by these varied branches, roses and cabbages, lilies and


onions, jessamine and melons, the crimson-flowered oleander,
pumpkins, tomatoes, and carrots mingle in a delightful democracy.
Here the day wakens with sweet morning clearness, waxes into a
scorching noontide, and burns onward, to be extinguished by the
breath of a dewy twilight. Stars march slowly from out the vaulted
shadows overhead, [6]to halt at awful distances. Distant mountain
peaks stretch away beyond the city, in indescribable loveliness, and
melt in the distance, like a veritable land of cloud. Upon the other
hand lies the desert; become a sea of silver under the stern light of
the stars. One stands impressed—oppressed and compelled to
listen to the mighty, threatening silence. Small wonder is it that, to-
day, in the interior of Arabia, like his forefathers during the time of
Abimelech and Jethro, the lonely shepherd is a worshiper of the
stars—poised, unchanging and serene, above the changing,
tumultuous earth.

Through this Garden, in which Memory lies dreaming, a silvery


stream flows from a marble basin. Into this basin play the waters
from a tree-shaded fountain. Beside it sits a gruff old pelican, eyeing
dweller and guest with equal disfavor. This bird of desolation likes
not his fair prison. Sweeter, to his ear, is the owl’s hoot than any
music distilled by human voices.

At one corner of the great quadrangle stands the long, roomy


dwelling. Its lower story comprises the general reception room, the
kitchen, and stables. From contiguous windows in this last, two white
heads lean out and gaze, wistfully, each into the other’s eyes. One is
that of the snow-white ass, upon which the daughter of the house
rides when, [7]attended by Ismail, she goes forth to pay visits. The
other is that of the foal, shut into a separate stall because he has
grown so large that he must be weaned. Here his greatest effort only
succeeds in reaching up and resting his funny little head upon the
window sill; where he must content himself with waving long ears
and casting glances of entreaty across at the mother, who stands
helpless in all but the expression of her sympathy.

Attention is fastened upon these patient dumb creatures. At this, the


young hostess—who, by the way, speaks Arabic, modern Greek,
French, German, English; who interprets Chopin with appealing
sympathy upon the piano in the beautiful drawing-room; and, upon
occasion, picks her mandolin to light, minor-keyed melodies—
decides that the American lady must have a ride about the garden.

Ismail, a dark-skinned boy who has haunted our footsteps in


readiness for service, and whose eyes and teeth are marvels of
brilliancy, leads forth the petted beast and tricks her out with the
most gorgeous trappings. Then the visitor is wheedled into mounting
the high, smooth saddle. This she does gingerly and sidewise, after
the fashion of her countrywomen. The baby donkey is let out to enjoy
a bit of exercise, and crowds so closely to the side [8]of his adored
parent as nearly to crush the ankles of her nervous rider.
The white beasts trot placidly over the graveled walks of the
quadrangle, and the pastime is growing pleasant to the rider. But
“Faster! faster!” commands the young hostess. “It is not with this
sleep of the day that we should seek to amuse one who comes from
the Land of Haste! Faster! Ismail, faster!”

Time is not given in which to explain that a mild gait is preferred; for
the Arab boy at once enters into the spirit of his mistress—strikes a
resounding blow upon each snowy flank, with such immediate effect
that the unaccustomed rider slides from her insecure position and
joins in the merriment.

“Alas! the Orient has broken your spirit! It is not like this that in your
own country you would ride. Think you that I do not know?”

Hastily arranging her flowing skirts, the young girl sprang gayly
astride the high, polished saddle; leaned forward and whispered,
“Away! Babash!” During the next few moments, shadow and sunlight
became a swift kaleidoscope of gayety and color. The little animal,
divining what was expected of her, broke into a gallop of whose
madness one never would have dreamed her capable; and which
made it most comical to witness the wild attempts of her [9]poor little
foal at keeping pace, and his bewilderment when, after viewing, with
despair, her disappearance before him, his astonished gaze
discovered her hastening toward him from behind, only to leave him
again, a little farther on.

Meantime the surly pelican had waddled to an unfrequented corner,


where the gravel, flying from delicate hoofs, could not reach him.
Madame, the elder hostess, came out upon the balcony, which
extended along the second story of the dwelling, to wave her hand in
enjoyment of the sport.
At length, wearied with making exhibition of the speed which, in her
opinion, characterized the home life of her visitor, the young girl
tossed her reins to Ismail, commanded that coffee be brought, then
conducted to a beautiful summerhouse, or kiosk, where were
cushions and rugs in profusion; where the most comfortable corner
hid its hand mirror and rose-water sprinkler, and over whose lattice
climbed roses and jessamine.

Of these latter flowers—so precious to every woman of the Orient—


three were gathered and tucked into the visitor’s belt. “Three, the
Oriental number: one for health, one for wealth, and one for
prosperity. If I wish you these and to you they come, what is there
more, that for it you should ask?” was the compelling explanation,
made in a [10]voice that was music’s own in quality and, like her
manner—when not merrily exemplifying prevailing notions of
American life—was gentle as the most fastidious aristocrat could
desire.

The air was sprayed with rose water; we reclined upon the cushions.
Quiet restored, the Madame descended and joined us. Coffee was
brought—though not at once; for the moments do not urge, as in the
Occident; they weave themselves, unnoted, into slow and shining
hours. Resting thus, and, later on, tasting the cream tart of whose
deliciousness the half has never been told, it was inevitable that we
should fall into the custom of the country and relate, each to the
others, tales of our native lands.

Story-telling is a most natural blossom upon the Oriental life tree.


Silent, tropical, motionless days breed no restlessness of the life
intellectual, no ravening after to-day’s knowledge and its fleeting
fame, no feverish haste after anything. The past fades and the future
becomes dim. It is a Land of the Present Moment. In the estimation
of its people, the present moment, only, is to be compared with
Paradise. As consequence, the dreaming of dreams or the relation of
marvelous tales, concerning adventures and intrigues of imaginary
characters, serves to satisfy the indolent and luxurious character.
Disinclination [11]to travel has found expression in “Better be a dog at
home than a lion afloat.” And universal custom exemplifies the belief
that it is better also to recline at ease, with coffee and nargileh;
enfolded in such peace that any relation of turbulence and romance
is rendered thrilling by mere force of contrast—far better is all this
than to fare forth one’s self. One does not marvel that natures pent in
such inactive bodies should require, to their better satisfaction with
the stories told them, blood-curdling elements, violence, with strange
interventions and achievements of the supernatural. By this means is
poise maintained and the slothful soul drugged into dreaminess.

Action and progress are discouraged in the Orient. Until the


authorities grant permission, a man may not rebuild his house after
the flames have destroyed it; nor may he celebrate the marriage of a
child. Only during the feast month of Ramazan is any woman
permitted outside of her walls after sunset; and a man, without his
lighted lantern, is in danger of trouble with the police. Indeed, the
dwellers not only are expected, but themselves expect, to retire at
sunset into their separate home worlds, without whose walls the
strait-laced effendi likes not to have his women seen at any time.
Yet, even when within the home, cards seldom are resorted [12]to;
and games of chance everywhere are forbidden the good Moslem.

Then how should this be other than a land for reverie? Certain hours
of every day are witness to the sun’s terrible triumph. Its atmosphere
becomes of intolerable sultriness. Its climate renders the people
indolent in action, while permitting their intellects to remain keen and
their passions lively. They have, moreover, quick sense of the
ludicrous; a childish, untutored taste for practical jokes; a refinement
of cunning, and, often seemingly asleep, in reality they never lose
their sagacity. Only when in dispute are their voices and actions
unsubdued. As a rule, they are not good in conversation; any point is
made clear by the relation of some parallel tale; and always the men
are ready to loiter and to loaf.

Although the dairy life of the women is enriched with the arts of
cookery and exquisite needlework, it must become monotonous.
They are passionately fond of the open air; but their fullest
enjoyment of it consists in reclining upon rug and cushion, beneath
some fragrant shade, while their slow, indolent eyes traverse the
beauty of garden, sea, or sky, and the ear is soothed with some story
which, at the same time, stirs the sense, gives wing to imagination,
and satisfies the inaction of their present by calling up [13]visions of
far-away activities, perhaps aided by the unseen and unknown.

One, for whom character needs not to consist in eternal effort, must
find great charm in these people, with their childish love for the
passing hour and readiness to give or accept friendliness. Often the
youths are of ideal beauty. Usually the men are well built, healthful,
abstemious. Always the women are splendidly robust and
handsome. Nearly everyone is unmalicious, gentle in temper,
leisurely—nay, more—loitering. Nobody is in a hurry. He who hastes
is viewed with suspicion. Even punctuality in the payment of dues is
decried; and no shopkeeper, worthy of a booth in the bazaar, will
permit a customer to depart until after bewildering his sight with the
most gorgeous properties upon the shelves. Should an unwary
shopper ask the price of any article or permit his eye to linger upon
it, coffee is at once served and the business call becomes a visit of
ceremony.

With touching faith in his kismet—decreed fate—the peasant


endures whatever of ill his days may bring. He receives every
stranger with perfect faith; trusting that he may be the messenger of
some long-delayed good. The thought of seeking an occupation
rarely occurs to him—however needy he may be. With only a few
piasters in his pouch for [14]present needs, he becomes wealthy; for,
may he not dream of hidden treasure which, when found, will supply
splendors ineffable? Beside, were he to make strenuous effort in the
hope of bettering his estate, he might thwart some beautiful on-
coming providence. In this land where gentle consideration reigns,
children treat their mothers with a royal deference, which but
increases with every added year of their own lives.

The Osmanlis will have nothing to do with hereditary rank. The


misfortunes and sins which constitute the unanswerable Eastern
Question, arise from the fact that their Prophet failed to provide a law
by which his successors might be determined. Members of the
reigning family marry the simplest family; and the genealogical
records are forgotten. Sentiment is opposed to class lines between
ruler and people; hence, in their stories, the young prince is free to
marry any maiden, be she ever so lowly.

However somber this life, the pious Moslem finds content in letting
his mind dwell upon the bliss of that life beyond. He is profoundly
submissive in the presence of death; accepts its coming with
unquestioning resignation, since his Edjel—appointed death hour—
and that of his beloved ones, was decreed by Allah and invisibly
inscribed upon the [15]brow at birth. Dying means that one is bidden,
by “the Cupbearer of the Spheres,” to partake of the joys of
Paradise. Why, then, should one regret the summons?

Devotion is natural to him. Five times each day does the dweller in
village or city obey a call to prayer—even though the muezzin who
cries may be far from holy and his intrigues furnish the point for
many a tale. According to Lady Blunt, “nothing gives so much
distinction, in this land, as regular attendance at prayers.” The name
of Allah enters into every bargain, greeting, or conflict. To the really
faithful, every living creature has some spiritual significance. The
killing of a dog may cost a man many bushels of grain—perchance,
his life. The stork and swallow are sacred. Even the unclean vulture
must not be slain. His body is the abode of some sinful soul; and, if
the bird be killed, the poor soul forever must perish.

The Land of Midian is a mysterious, dreary land of gloomy cliffs and


broad deserts; of shadowless plains, narrow valleys, and
monotonous wilderness regions. Its mirage allures to death; and the
clear atmosphere suddenly may become dark with the burning heat
of the simoon. Through its desert God’s Chosen People are believed
to have wandered during their forty years of punishment and
[16]preparation. Fiery serpents and scorpions made their passage
hideous; and the undisciplined wanderers were “much discouraged
because of the way.”

Over this indescribably romantic country—which has been inhabited


since the earliest time and has undergone fewer changes than any
other known upon the globe—a mighty Presence seems on patient
guard. One is never freed from the sense of some Great Unseen.

At points the configuration is fantastic and weird in the character of


its desolation. It is a region of gloomy cliffs, of granite hills, of
detached, volcanic centers—like that of the true Mount Sinai—and
over whose difficult passages the complaining camel seems fittest
transport.

Each tribe, in this Land of Ishmael, claims descent from some one of
the three members of Abraham’s family; and insists that social and
religious status were overthrown by Mohammed, when he subjected
them to his version of the law of the One God. To this it may be
added that there are those who believe that the enmity of Christians
against the Jews prevented the great prophet from adopting the
Christian faith.

Upon his possession of Arabia does the Sultan base his title of
Caliph. With the downfall of those [17]rulers came a relapse into the
former separate chieftaincies; so that every valley, between desert
and coast, or mountain range, now supports its wandering band. For
this reason, these people love that the stories told them should
concern that time of the Caliphs; when the country flourished as
never before or after.

Yemen, a central, fertile tract in southwest Arabia, is the Arab’s


Arcadia. Here Alexander the Great determined to fix his court after
he should have conquered India. His strong nature was attracted to
this surprising land; where a single step may bear one from dreary
somberness into the most luxurious vegetation—from the desert into
an oasis, redolent with the scent of flowers, shadowed with orchards
and musical with the insect’s drone.

In a land like this, among a people of courtesy and charm, it


becomes gently imperative that the most barren imagination should
indulge in bits of phantasy and the dullest sense become susceptible
to passing beauty. A pure and refreshing fountain is certain to
become a center of romantic interest that will unseal the lips of a
traveler. And, since bachelors are looked upon with disfavor and not
an old maid exists in all the country, it is to be expected that any
relation should turn upon marriage. Nor need one fear that the tale
will prove erotic, [18]since its creation was in a land where the
modesty of a peasant will not admit even of his staring at a company
of bathers; but sends his eyes to search the tree tops or distant
mountains, until temptation is far passed.

Perhaps it will be well to begin these stories from the Orient with a
relation of cruel intrigue and of patient revenge, aided by potent,
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