Test Bank for Python for Everyone, 2nd Edition download
Test Bank for Python for Everyone, 2nd Edition download
download pdf
https://testbankmall.com/product/test-bank-for-python-for-everyone-2nd-
edition/
https://testbankmall.com/product/solution-manual-for-python-for-
everyone-2nd-edition/
https://testbankmall.com/product/solution-manual-for-python-for-
everyone-2nd-edition-horstmann/
https://testbankmall.com/product/test-bank-for-fundamentals-of-python-
data-structures-2nd-edition-kenneth-lambert/
https://testbankmall.com/product/test-bank-for-maders-understanding-
human-anatomy-physiology-10th-edition-susannah-longenbaker/
Financial Management Theory and Practice Brigham 14th
Edition Solutions Manual
https://testbankmall.com/product/financial-management-theory-and-
practice-brigham-14th-edition-solutions-manual/
https://testbankmall.com/product/test-bank-for-principles-of-
genetics-6th-edition-d-peter-snustad/
https://testbankmall.com/product/solution-manual-for-positive-child-
guidance-7th-edition/
https://testbankmall.com/product/test-bank-for-chemistry-principles-
and-reactions-7th-edition-william-l-masterton-download/
https://testbankmall.com/product/test-bank-for-legal-and-ethical-
issues-for-health-professions-3rd-edition/
Test Bank for Listen, Eighth Edition
https://testbankmall.com/product/test-bank-for-listen-eighth-edition/
1.1 Computer Programs
id
testbank-py-2-ch01-03
from
testbank-py-1-ch01-03
Title
Which parts of the computer store program code?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-1-ch01-04
Title
What is considered hardware
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-1-ch01-05
Title
What is a CPU?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-1-ch01-06
7. Computers store both data and programs not currently running in:
1. Primary storage.
2. Central processing unit.
3. Secondary storage.
4. Transistors.
Title
Where are programs and data stored?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-1-ch01-07
Title
What is considered input hardware?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-1-ch01-08
Title
What is considered output hardware?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-1-ch01-09
Title
What happens when a program begins to run?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-2-ch01-10
from
testbank-py-1-ch01-10
11. What part of the computer carries out arithmetic operations, such as addition, subtraction,
multiplication and division?
1. CPU
2. Network
3. Primary storage
4. Secondary storage
Title
What part of the computer performs arithmetic?
type
mc
Section
1.2 The Anatomy of a Computer
id
testbank-py-2-ch01-11
from
testbank-py-1-ch01-11
13. What are two of the most important benefits of the Python language?
1. Advanced mathematical equations and fast programs
2. Ease of use and fast programs
3. Ease of use and portability
4. Fast programs and smaller programs
Title
What are the benefits of Python?
type
mc
Section
1.3 The Python Programming Language
id
testbank-py-2-ch01-13
from
testbank-py-1-ch01-13
1. Nothing, the variable total will be the sum of the three numbers
2. Python is case sensitive so Num1, Num2, and Num3 are undefined
3. total must be initialized to zero first
4. The numbers should be 10.0, 20.0 and 30.0
Title
What is wrong with the following code snippet?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-14
18. An integrated development environment bundles tools for programming into a unified
application. What kinds of tools are usually included?
1. A web browser
2. An editor and an interpreter
3. Presentation tools
4. Source files and bytecode files
Title
What kind of tools can be found in an integrated development environment?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-2-ch01-15
from
testbank-py-1-ch01-15
Title
What is the difference between an editor and a compiler?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-16
20. What reads Python programs and executes the program instructions?
1. editor
2. CPU
3. compiler
4. interpreter
Title
What is used to execute a Python program?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-17
Title
What extension is used for Python source files?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-18
22. By entering the command python3, the program runs in which mode?
1. interactive mode
2. print mode
3. command mode
4. backup mode
Title
What mode is invoked when the user enters "python" at the command prompt?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-19
23. The Python compiler reads the file containing your source code and converts it to:
1. machine code
2. assembly code
3. byte code
4. virtual machine code
Title
What type of code is created by the Python compiler?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-20
24. What is the correct sequence of steps invoked by the Python Interpreter:
1. source code -> virtual machine -> byte code ->compiler
2. source code -> compiler -> byte code -> virtual machine
3. compiler -> source code -> virtual machine -> byte code
4. byte code -> virtual machine -> source code ->compiler
Title
What is the role of the Interpreter?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-1-ch01-21
Title
What is the syntax for a comment line?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-2-ch01-22
from
testbank-py-1-ch01-22
31. A collection of programming instructions that carry out a particular task is called a:
1. program
2. compiler
3. function
4. comment
Title
What is a collection of programming instructions called?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-24
Title
How do you call a function?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-25
Title
What is a string in Python?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-27
Title
What is wrong with the code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-28
print(25 + 84)
1. 2584
2. 109
3. 25 + 84
4. Nothing, this code snipped causes a compile time error
Title
What is printed by a given code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-29
Title
What is printed by a given code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-30
Title
What is printed by a given code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-31
print("25 + 84")
1. 2584
2. 109
3. 25 + 84
4. Nothing, this code snipped causes a compile time error
Title
What is printed by a given code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-32
print(Hello)
Title
What is printed by a given code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-33
1. GoodMorningClass!
2. Good Morning Class!
3. Good Morning Class !
4. nothing, this code produces a syntax error
Title
What is printed by a given code snippet?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-34
Title
What is another name for a compile-time error?
type
mc
Section
1.6 Errors
id
testbank-py-1-ch01-35
44. Although the following code statement is valid, print(10/0), what will happen when
this code is executed?
1. The program prints 0
2. The error message ZeroDivisionError: int division or modulo by zero
is displayed
3. The program runs, but nothing is printed
4. The error message SyntaxError: EOL while scanning string literal
Title
What is another name for a compile-time error?
type
mc
Section
1.6 Errors
id
testbank-py-1-ch01-36
45. The programmer, not the compiler, is responsible for testing a program to identify what?
1. Undefined symbols
2. Syntax errors
3. Logic errors
4. Out-of-memory errors
Title
The programmer, not the compiler, is responsible for testing a program to identify?
type
mc
Section
1.6 Errors
id
testbank-py-1-ch01-37
46. What is it called when you describe the steps that are necessary for finding a solution to a
problem in programming?
1. algorithm
2. compile
3. interpret
4. code
Title
What is it called when you describe the steps that are necessary for finding a solution to a
problem in programming?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-1-ch01-38
47. The following pseudocode calculates the total purchase price for an item including sales
tax, what is the missing last line?
48. Start by setting the total cost to zero.
49. Ask the user for the item cost.
50. Ask the user for the tax rate.
51. Set the item tax to item cost times tax rate.
_________________________________
1. Set the total cost to the item cost plus the tax rate.
2. Set the total cost to the item cost times the tax.
3. Set the total cost to the item cost plus the tax.
4. Set the total cost to the item tax.
Title
What is the missing pseudocode?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-1-ch01-39
52. What is the purpose of the following algorithm, written in pseudocode?
53. num = 0
54. Repeat the following steps 15 times
55. Ask user for next number
56. If userNum > num
57. num = userNum
58. Print num
1. To print out the 15 numbers
2. To find the smallest among 15 numbers
3. To search for a particular number among 15 numbers
4. To find the highest among 15 numbers
Title
What is the purpose of this algorithm?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-1-ch01-40
Title
Which of the following is NOT an example of an algorithm?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-1-ch01-41
Title
Which of the following pseudocode statements represents a decision statement?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-1-ch01-42
Title
Which of the following pseudocode statements represents a repetition statement?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-2-ch01-43
from
testbank-py-1-ch01-43
Title
Which of the following is NOT important when writing pseudocode?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-2-ch01-44
from
testbank-py-1-ch01-44
63. Imagine that you are planning to buy a new cell phone. After doing some research, you
have determined that there are two different cell phones that will meet your needs. These
cell phones have different purchase prices and each mobile service provider charges a
different rate for each minute that the cell phone is used. In order to determine which cell
phone is the better buy, you need to develop an algorithm to calculate the total cost of
purchasing and using each cell phone. Which of the following options lists all the inputs
needed for this algorithm?
1. The cost of each cell phone and the rate per minute for each cell phone
2. The cost of each cell phone and the number of minutes provided with each cell
phone
3. The cost of each cell phone, the rate per minute for each cell phone, and the
number of minutes provided with each cell phone
4. The cost of each cell phone, the rate per minute for each cell phone, and the
number of minutes you would use the cell phone
Title
Which inputs do you need to calculate cost of purchasing/using cell phone?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-2-ch01-45
from
testbank-py-1-ch01-45
64. In order to run Python programs, the computer needs to have software called a(n)?
1. debugger
2. interpreter
3. windows
4. assembler
Title
Software needed to run Python on a computer?
type
mc
Section
1.3 The Python Programming Language
id
testbank-py-1-ch01-46
Title
What is a Python virtual machine?
type
mc
Section
1.4 Becoming Familiar with Your Programming Environment
id
testbank-py-2-ch01-47
from
testbank-py-1-ch01-47
Title
Software needed to run Python on a computer?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-2-ch01-48
from
testbank-py-1-ch01-48
Title
What does this algorithm produce?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-2-ch01-49
from
testbank-py-1-ch01-49
Title
What is a list of steps that are unambiguous, executable, and terminating called?
type
mc
Section
1.7 Problem Solving: Algorithm Design
id
testbank-py-1-ch01-50
Title
What are computer programs comprised of?
type
mc
Section
1.1 Computer Programs
id
testbank-py-1-ch01-51
89. Which of the following is not a benefit of the Python programming language compared
to other popular programming languages like Java, C and C++?
1. Python encourages experimentation and rapid turn around
2. Python has a cleaner syntax
3. Python is easier to use
4. Python programs run more quickly
Title
What are the benefits of Python compared to other programming languages?
type
mc
Section
1.3 The Python Programming Language
id
testbank-py-1-ch01-52
90. Which of the following code segments will display Hello World! when it is run?
1. print(Hello "," World"!")
2. print("Hello", "World!")
3. print("Hello", "World", "!")
4. print("Hello", ",", "World", "!")
Title
Which code segment displays the desired result?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-53
91. When a function is called, the values placed in parentheses are referred to as:
1. arguments
2. keywords
3. operators
4. statements
Title
What are the parts of a function call?
type
mc
Section
1.5 Analyzing Your First Program
id
testbank-py-1-ch01-54
92. Which type of error is usually the most difficult to locate in your program?
1. Indentation Error
2. Logic Error
3. Syntax Error
4. Zero Division Error
Title
Which type of error is most difficult to locate?
type
mc
Section
1.6 Errors
id
testbank-py-1-ch01-55
Random documents with unrelated
content Scribd suggests to you:
[daru ʾl-bawar, daru ʾl-harb, daru ʾl-islam, daru ʾl-qarar, daru ʾs-salam,
daru ʾs-saltanah, daru ʾs-sawab.]
DĀRU ʾL-BAWĀR ( دار البوار ). Lit. “The abode of perdition.” A term used for
hell in the Qurʾān, Sūrah xiv. 33 : “And have made their people to alight at the
abode of perdition.”
In the Fatāwā ʿĀlamgīrī, vol. ii. p. 854, it is written that a Dāru ʾl-ḥarb becomes a
Dāru ʾl-Islām on one condition, namely, the promulgation of the edicts of Islām. The
Imām Muḥammad, in his book called the Ziyādah, says a Dāru ʾl-Islām again
becomes a Dāru ʾl-ḥarb, according to Abū Ḥanīfah, on three conditions, namely: (1)
That the edicts of the unbelievers be promulgated, and the edicts of Islām be
suppressed; (2) That the country in question be adjoining a Dāru ʾl-ḥarb and no
other Muslim country lie between them (that is, when the duty of Jihād or religious
war becomes incumbent on them, and they have not the power to carry it on); (3)
That no protection (amān) remains for either a Muslim or a ẕimmī; viz. that amānu
ʾl-awwal, or that first protection which was given them when the country was first
conquered by Islām. The Imāms Yūsuf and Muḥammad both say that when the
edicts of unbelievers are promulgated in a country, it is sufficient to constitute it a
Dāru ʾl-ḥarb.
In the Raddu ʾl-Muk͟ htār, vol. iii. p. 391, it is stated, “If the edicts of Islām remain in
force, together with the edicts of the unbelievers, then the country cannot be said to
be a Dāru ʾl-ḥarb.” The important question as to whether a country in the position of
Hindustān may be considered a Dāru ʾl-Islām or a Dāru ʾl-ḥarb has been fully
discussed by Dr. W. W. Hunter, of the Bengal Civil Service, in his work entitled,
Indian Musulmāns, which is the result of careful inquiry as to the necessary
conditions of a Jihād, or a Crescentade, instituted at the time of the excitement
which existed in India in 1870–71, in consequence of a Wahhābī conspiracy for the
overthrow of Christian rule in that country. The whole matter, according to the Sunnī
Musulmāns, hinges upon the question whether India is Dāru ʾl-ḥarb, “a land of
warfare,” or Dāru ʾl-Islām, “a land of Islām.”
The Muftīs belonging to the Ḥanīfī and Shāfiʿī sects at Makkah decided that, “as
long as even some of the peculiar observances of Islām prevail in a country, it is
Dāru ʾl-Islām.”
The decision of the Muftī of the Mālikī sect was very similar, being to the following
effect: “A country does not become Dāru ʾl-ḥarb as soon as it passes into the hands
of the infidels, but when all or most of the injunctions of Islām disappear
therefrom.”
The law doctors of North India decided that, “the absence of protection and liberty
to Musulmāns is essential in a Jihād, or religious war, and also that there should be a
probability of victory to the armies of Islām.”
The Shīʿah decision on the subject was as follows: “A Jihād is lawful only when the
armies of Islām are led by the rightful Imām, when arms and ammunitions of war
and experienced warriors are ready, when it is against the enemies of God, when he
who makes war is in possession of his reason, and when he has secured the
permission of his parents, and has sufficient money to meet the expenses of his
journey.”
The Sunnīs and Shīʿahs alike believe in the eventual triumph of Islām, when the
whole world shall become followers of the Prophet of Arabia; but whilst the Sunnīs
are, of course, ready to undertake the accomplishment of this great end, “whenever
there is a probability of victory to the Musulmāns,” the Shīʿahs, true to the one great
principle of their sect, must wait until the appearance of a rightful Imām. [jihad.]
DĀRU ʾL-ISLĀM ( دار االســالم ). “Land of Islām.” According to the
Raddu ʾl-Muk͟ htār, vol. iii. p. 391, it is a country in which the edicts of Islām are
fully promulgated.
In a state brought under Muslims, all those who do not embrace the faith are placed
under certain disabilities. They can worship God according to their own customs,
provided they are not idolaters; but it must be done without any ostentation, and,
whilst churches and synagogues may be repaired, no new place of worship can be
erected. “The construction of churches, or synagogues, in Muslim territory is
unlawful, this being forbidden in the Traditions; but if places of worship belonging
to Jews, or Christians, be destroyed, or fall into decay, they are at liberty to repair
them, because buildings cannot endure for ever.”
Idol temples must be destroyed, and idolatry suppressed by force in all countries
ruled according to strict Muslim law. (Hidāyah, vol. ii. p. 219.)
DĀRU ʾS̤ -S̤ AWĀB ( دار الثواب ). “The house of recompense.” A name given
to the Jannatu ʿAdn, or Garden of Eden, by the commentator al-Baiẓāwī.
DAUGHTERS. Arabic Bint, pl. Banāt; Heb. Bath (ַּבת). In the law of inheritance,
the position of a daughter is secured by a verse in the Qurʾān, Sūrah iv. 12 : “With
regard to your children, God has commanded you to give the sons the portion of two
daughters, and if there be daughters, more than two, then they shall have two-thirds
of that which their father hath left, but if she be an only daughter she shall have the
half.”
“Daughters begotten by the deceased take in three cases: half goes to one only, and
two-thirds to two or more: and, if there be a son, the male has the share of two
females, and he makes them residuaries. The son’s daughters are like the daughters
begotten by the deceased; and they may be in six cases: half goes to one only, and
two-thirds to two or more, on failure of daughters begotten by the deceased; with a
single daughter of the deceased, they have a sixth, completing (with the daughter’s
half) two-thirds; but, with two daughters of the deceased, they have no share of the
inheritance, unless there be, in an equal degree with, or in a lower degree than, them,
a boy, who makes them residuaries. As to the remainder between them, the male has
the portion of two females; and all of the son’s daughters are excluded by the son
himself.
“If a man leave three son’s daughters, some of them in lower degrees than others,
and three daughters of the son of another son, some of them in lower degree than
others, and three daughters of the son’s son of another son, some of them in lower
degrees than others, as in the following table, this is called the case of tashbīh.
“Here the eldest of the first line has none equal in degree with her; the middle one of
the first line is equalled in degree by the eldest of the second, and the youngest of
the first line is equalled by the middle one of the second, and by the oldest of the
third line; the youngest of the second line is equalled by the middle one of the third
line, and the youngest of the third set has no equal in degree. When thou hast
comprehended this, then we say: the eldest of the first line has a moiety; the middle
one of the first line has a sixth, together with her equal in degree, to make up two-
thirds; and those in lower degrees never take anything, unless there be a son with
them, who makes them residuaries, both her who is equal to him in degree, and her
who is above him, but who is not entitled to a share; those below him are excluded.”
(Ramsay’s ed. As-Sirājīyah.)
According to the teaching of the Prophet, “a virgin daughter gives her consent to
marriage by silence.” He also taught “that a woman ripe in years shall have her
consent asked, and if she remain silent her silence is consent, but if she do not
consent, she shall not be forced.” But this tradition is also to be compared with
another, in which he said, “There is no marriage without the permission of the
guardians.” (Mishkāt, xiii. c. iv. pt. 2.) Hence the difference between the learned
doctors on this subject.
The author of the Ak͟ hlāq-i-Jalālī says it is not advisable to teach girls to read and
write, and this is the general feeling amongst Muḥammadans in all parts of the
world, although it is considered right to enable them to recite the Qurʾān and the
liturgical prayers.
The father or guardian is to be blamed who does not marry his daughter at an early
age, for Muḥammad is related to have said, “It is written in the Book of Moses, that
whosoever does not marry his daughter when she hath reached the age of twelve
years is responsible for any sin she may commit.”
The ancient Arabs used to call the angels the “daughters of God,” and objected
strongly, as the Badawīs do in the present day, to female offspring, and they used to
bury their infant daughters alive. These practices Muḥammad reprobates in the
Qurʾān, Sūrah xvi. 59 : “And they ascribe daughters unto God! Glory be to Him!
But they desire them not for themselves. For when the birth of a daughter is
announced to any one of them, dark shadows settle on his face, and he is sad; he
hideth him from the people because of the ill tidings. Shall he keep it with disgrace,
or bury it in the dust? Are not their judgments wrong?”
Mr. Rodwell remarks on this verse: “Thus Rabbinism teaches that to be a woman is
a great degradation. The modern Jew says in his Daily Prayers, fol. 5, 6, ‘Blessed art
thou, O Lord our God! King of the Universe! who hath not made me a woman.’”
DŪMAH ( دومة ). A fortified town held by the Christian chief Ukaidar, who was
defeated by the Muslim general K͟ hālid, and by him converted to Muḥammadanism,
a.h. 9. But the mercenary character of Ukaidar’s conversion led him to revolt after
Muḥammad’s death. (Muir’s Life of Mahomet, vol. iv. p. 191.)
DAVID. Arabic Dāwud, or Dāwūd. A king of Israel and a Prophet, to whom God
revealed the Zabūr, or Book of Psalms. [zabur.] He has no special title or kalimah,
as all Muslims are agreed that he was not a law-giver or the founder of a
dispensation. The account of him in the Qurʾān is exceedingly meagre. It is given as
follows, with the commentator’s remarks translated in italics by Mr. Lane:—
“And God gave him (David) the kingship over the children of Israel, and wisdom,
after the death of Samuel and Saul, and they [namely these two gifts] had not been
given together to any one before him; and He taught him what He pleased, as the art
of making coats of mail, and the language of birds. And were it not for God’s
repelling men, one by another, surely the earth had become corrupt by the
predominance of the polytheists and the slaughter of the Muslims and the ruin of the
places of worship: but God is beneficent to the peoples, and hath repelled some by
others.” (Sūrah ii. 227 .)
“Hath the story of the two opposing parties come unto thee, when they ascended
over the walls of the oratory of David, having been prevented going in unto him by
the door, because of his being engaged in devotion? When they went in unto David,
and he was frightened at them, they said, Fear not: we are two opposing parties. It is
said that they were two parties of more than one each; and it is said that they were
two individuals, angels, who came as two litigants, to admonish David, who had
ninety-nine wives, and had desired the wife of a person who had none but her, and
married her and taken her as his wife. [One of them said,] One of us hath wronged
the other; therefore judge between us with truth, and be not unjust, but direct us into
the right way. Verily this my brother in religion had nine-and-ninety ewes, and I had
one ewe; and he said, Make me her keeper. And he overcame me in the dispute.—
And the other confessed him to have spoken truth.—[David] said, Verily he hath
wronged thee in demanding thy ewe to add her to his ewes; and verily many
associates wrong one another, except those who believe and do righteous deeds: and
few indeed are they.—And the two angels said, ascending in their [proper or
assumed] forms to heaven, The man hath passed sentence against himself. So David
was admonished. And David perceived that We had tried him by his love of that
woman; wherefore he asked pardon of his Lord, and fell down bowing himself (or
prostrating himself), and repented. So We forgave him that; and verily for him [was
ordained] a high rank with Us (that is, an increase of good fortune in this world),
and [there shall be for him] an excellent retreat in the world to come.” (Sūrah
xxxviii. 20–24 .)
“We compelled the mountains to glorify Us, with David, and the birds also, on his
commanding them to do so, when he experienced languor; and We did this. And We
taught him the art of making coats of mail (for before his time plates of metal were
used) for you among mankind in general, that they might defend you from your
suffering in warring with your enemies.—Will ye then, O people of Mecca, be
thankful for My favours, believing the apostles?” (Sūrah xxi. 79, 80 .)
Sale observes that Yaḥyā the commentator, most rationally understands hereby the
divine revelations which David received from God, and not the art of making coats
of mail.—The cause of his applying himself to this art is thus related in the Mirātu
ʾz-Zamān:—He used to go forth in disguise; and when he found any people who
knew him not, he approached them and asked them respecting the conduct of David,
and they praised him and prayed for him; but one day, as he was asking questions
respecting himself as usual, God sent to him an angel in the form of a human being,
who said, “An excellent man were David if he did not take from the public
treasury.” Whereupon the heart of David was contracted, and he begged of God to
render him independent: so He made iron soft to him, and it became in his hands as
thread; and he used to sell a coat of mail for four thousand [pieces of money—
whether gold or silver is not said], and with part of this he obtained food for himself,
and part he gave in alms, and with part he fed his family. Hence an excellent coat of
mail is often called by the Arabs “Dāwudī,” i.e. “Davidean.” (See Lane’s translation
of The Thousand and One Nights, chap. viii. note 5.)
David, it is said, divided his time regularly, setting apart one day for the service of
God, another day for rendering justice to his people, another day for preaching to
them, and another day for his own affairs.
From the Muslim books it appears that Muḥammad is believed to have sanctioned
the use of spells and incantations, so long as the words used were only those of the
names of God, or of the good angels, and of the good genii; although the more strict
amongst them (the Wahhābīs, for example,) would say that only an invocation of
God Himself was lawful—teaching which appears to be more in accordance with
that of Muḥammad, who is related to have said, “There is nothing wrong in using
spells so long as you do not associate anything with God.” (Mishkāt, xxi. c. i.) It is
therefore clearly lawful to use charms and amulets on which the name of God only
is inscribed, and to invoke the help of God by any ceremony, provided no one is
associated with Him.
The science of daʿwah has, however, been very much elaborated, and in many
respects its teachers seem to have departed from the original teaching of their
Prophet on the subject.
In India, the most popular work on daʿwah is the Jawāhiru ʾl-K͟ hamsah, by Shaik͟ h
Abū ʾl-Muwayyid of Gujerat, a.h. 956, in which he says the science is used for the
following purposes. (1) To establish friendship or enmity between two persons. (2)
To cause the cure, or the sickness and death, of a person. (3) To secure the
accomplishment of one’s wishes, both temporal and spiritual. (4) To obtain defeat or
victory in battle.
This book is largely made up of Hindu customs which, in India, have become part of
Muḥammadanism; but we shall endeavour to confine ourselves to a consideration of
those sections which exhibit the so-called science as it exists in its relation to Islām.
In order to explain this occult science, we shall consider it under the following
divisions:
1. The qualifications necessary for the ʿāmil, or the person who practices it.
I. When anyone enters upon the study of the science, he must begin by paying the
utmost attention to cleanliness. No dog, or cat, or any stranger, is allowed to enter
his dwelling-place, and he must purify his house by burning wood-aloes, pastilles,
and other sweet-scented perfumes. He must take the utmost care that his body is in
no way defiled, and he must bathe and perform the legal ablutions constantly. A
most important preparation for the exercise of the art is a forty-days’ fast (chilla),
when he must sleep on a mat spread on the ground, sleep as little as possible, and
not enter into general conversation. Exorcists not unfrequently repair to some cave
or retired spot in order to undergo complete abstinence.
The diet of the exorcist must depend upon the kind of asmā, or names of God he
intends to recite. If they are the asmāʾu ʾl-jalālīyah, or “terrible attributes” of the
Almighty, then he must refrain from the use of meat, fish, eggs, honey, and musk. If
they are the asmāʾu ʾl-jamālīyah, or “amiable attributes,” he must abstain from
butter, curds, vinegar, salt, and ambergrise. If he intends to recite both attributes, he
must then abstain from such things as garlic, onions, and assafœtida.
It is also of the utmost importance that the exorcist should eat things which are
lawful, always speak the truth, and not cherish a proud or haughty spirit. He should
be careful not to make a display of his powers before the world, but treasure up in
his bosom the knowledge of his acquirements. It is considered very dangerous to his
own life for a novice to practice the science of exorcism.
II. Previous to reciting any of the names or attributes of God for the establishment of
friendship or enmity in behalf of any person, it is necessary to ascertain the initials
of his or her name in the Arabic alphabet, which letters are considered by exorcists
to be connected with the twelve signs of the zodiac, the seven planets, and the four
elements. The following tables, which are taken from the Jawāhiru ʾl-K͟ hamsah,
occur, in a similar form, in all books on exorcism, give the above combinations,
together with the nature of the perfume to be burnt, and the names of the presiding
genius and guardian angel. These tables may be considered the key to the whole
science of exorcism.
Letters of the
Alphabet arranged 20 ك 30 ل 40 م 50 ن 60 س
according to the
Abjad [abjad], with
their respective
number.
The Special Attributes
or Names of God. كافى لطيف ملك نور سميع
Kāfī. Lat̤ īf. Malik. Nūr. Samīʿ.
The Number of the 111 129 90 256 180
Attribute.
The Meaning of the Sufficient. Benignant. King. Light. Hearer.
Attribute.
The Class of the Amiable. Amiable. Terrible. Amiable. Combined.
Attribute.
The Quality, Vice, or Love. Separation. Love. Hatred. Desire.
Virtue of the Letter.
The Elements. Water. Earth. Fire. Air. Water.
(ʿArbaʿah ʿAnāṣir.)
The Perfume of the White rose Apples. Quince. Hyacinth.
Different
Letter. leaves. kinds of
Scents.
The Signs of the ʿAqrab. S̤ aur. Asad. Mīzān. Qaus.
Zodiac. (Burūj.) Scorpion. Bull. Lion. Scales. Archer.
The Planets. Shams. Zuhrah. ʿUt̤ ārid. Qamar. Zuḥal.
(Kawākib.) Sun. Venus. Mercury. Moon. Saturn.
The Genii. (Jinn.) Kadyūsh. ʿAdyūsh. Majbūsh. Damalyūsh. Faʿyūsh.
The Guardian Angels. Kharurāʾīl. T̤ at̤ āʾīl. Rūyāʾīl. Hūlāʾīl. Hamwākīl.
(Muwakkil.)
Letters of the
Alphabet arranged 70 ع 80 ف 90 ص 100 ق 200 ر
according to the
Abjad [abjad], with
their respective
number.
The Special
Attributes or Names على فتاح صمد قادر رب
of God. ʿAlī. Fattāḥ. Ṣamad. Qādir. Rabb.
The Number of the 110 489 134 305 202
Attribute.
The Meaning of the Exalted. Opener. Established. Powerful. Lord.
Attribute.
The Class of the Terrible. Amiable. Terrible. Combined. Terrible.
Attribute.
The Quality, Vice, or Riches. Enmity. Intimacy. Desire. Friendship.
Virtue of the Letter.
The Elements. Earth. Fire. Air. Water. Earth.
(ʿArbaʿah ʿAnāṣir.)
The Perfume of the White Walnut. Nutmeg. Orange. Rosewater.
Letter. Pepper.
The Signs of the Sumbulah. Asad. Mīzān. Ḥūt. Sumbulah.
Zodiac. (Burūj.) Virgin. Lion. Scales. Fish. Virgin.
The Planets. Mushtarī. Mirrīk͟ h. Shams. Zuhrah. ʿUt̤ ārid.
(Kawākib.) Jupiter. Mars. Sun. Venus. Mercury.
The Genii. (Jinn.) Kashpūsh. Lat̤ yūsh. Kalapūsh. Shamyūsh. Rahūsh.
The Guardian Angels. Lumāʾīl. Sarhmāʾīl. Ahjmāʾīl. ʿItrāʾīl. Amwākīl.
(Muwakkil.)
The sex of the signs of the Zodiac (burūj) has been determined as in the following
table. Between males and females exists friendship; between males and
hermaphrodites sometimes friendship sometimes enmity; between females and
hermaphrodites the most inveterate enmity:—
The four elements (arbaʿah ʿanāṣir) stand in relation to each other as follows:—
As an illustration of the use of these tables, two persons, Akram and Raḥīmah,
contemplate a matrimonial alliance, and wish to know if it will be a happy union or
otherwise.
The exorcist must first ascertain if the elements (arbaʿah ʿanāṣir), the signs of the
zodiac (burūj), and the planets (kawākib), are amicably or inimicably disposed to
each other in the cases of these two individuals, and also if there is a combination
expressed in the ism or name of God connected with their initial letters.
In the present instance the initial letter of Akram is alif, and that of Raḥīmah, rā, and
a reference to the foregoing tables will produce the following results:—
Akram. Raḥīmah.
اكرم). (رحيمة).
(
In considering this case, the exorcist will observe that there is a combination in the
attributes of God, both belonging to the asmāʾu ʾl-jalālīyah, or terrible attributes.
There is also a combination in the quality of the letters, both implying friendship.
Their respective planets, Saturn and Mercury, show a combination of either mixed
friendship and enmity, or, perhaps, indifference. The sign of the zodiac, the ram
being a male, and that of the virgin a hermaphrodite, show a possible alternation of
friendship and enmity between the parties. The elements, fire and earth, being
opposed, imply enmity. It therefore appears that there will be nothing against these
two persons, Akram and Raḥīmah forming a matrimonial alliance, and that they may
reasonably expect as much happiness from their union as usually falls to the lot of
the human race. Should the good offices of the exorcist be requested, he will, by
incantation, according to the table given, appeal to the Almighty as Allāh and Rabb,
call in the aid of the genii Qayupūsh and Rahūsh, and of the guardian angels, Isrāfīl
and Amwākīl. The perfumes he will burn in his numerous recitals will be black aloes
and rose-water, and so bring about a speedy increase in the happiness of the persons
of Akram and Raḥīmah!
III. As we have already explained, the incantations used by exorcists consist in the
recital of either the names or attributes of God, or of certain formulæ which are
given in books on the subject. In the Jawāhiru ʾl-K͟ hamsah, there were many forms
of incantation, but we select the following one to illustrate the subject:—
سبحانك ال اله اال انت رب كل شى و وارثه
ورازقه و راحمه
Subḥānaka! lā ilāha illā anta! Rabba-kulli-shaiʾin! wa wāris̤ ahu! wa rāziqahu! wa
rāḥimahu!
Glory be to Thee! There is no deity but Thee! The Lord of All! and the Inheritor
thereof! and the Provider therefor! and the Merciful thereon!
1
س Sīn 60
2
ب Bā 2
3
ح Ḥā 8
4
ا Alif 1
5
ن Nūn 50
6
ك Kāf 20
7
ل Lām 30
8
ا Alif 1
9
ا Alif 1
10
ل Lām 30
11
هـ Hā 5
12
ا Alif 1
13
ل Lām 30
14
ل Lām 30
15
ا Alif 1
16
ا Alif 1
17
ن Nūn 50
18
ت Tā 400
19
ر Rā 200
20
ب Bā 2
21
ب Bā 2
22
ك Kāf 20
23
ل Lām 30
24
ل Lām 30
25
ش Shīn 300
26
ى Yā 10
27
ء Hamzah 1
28
و Wau 6
29
و Wau 6
30
ا Alif 1
31
ر Rā 200
32
ث S̤ ā 500
33
هـ Hā 5
34
و Wau 6
35
ر Rā 200
36
ا Alif 1
37
ز Zā 7
38
ق Qāf 100
39
هـ Hā 5
40
و Wau 6
41
ر Rā 200
42
ا Alif 1
43
ح Ḥā 8
44
م Mīm 40
45
هـ Hā 5
2613
Its niṣāb, or fixed estate, is the number of letters (i.e. 45) put into thousands 4,500
=
Its zakāt, or alms, is the half of the niṣāb added to itself, 4,500 and 2,250 = 6,750
Its ʿushr, or tithes, is half of the above half added to the zakāt, 6,750 and 7,875
1,125 =
Its qufl, or lock, is half of 1,125 = 563
Its daur, or circle, is obtained by adding to its qufl the sum of the ʿushr and
then doubling the total:—
563
7,875
—— 8,438
8,438
—— 16,876
Its baẕl, or gift, is the fixed number 7,000
Its k͟ hatm, or seal, is the fixed number 1,200
Its sarīʿu ʾl-ijābah, or speedy answer, is the fixed number 12,000
Total 56,764
After the exorcist has recited the formula the above number of times, he should, in
order to make a reply more certain, treble the niṣāb, making it 135,000, and then add
2,613, the value of the combined number of letters, making a total of 137,613
recitals. The number of these recitals should be divided as nearly as possible in
equal parts for each day’s reading, provided it be completed within forty days. By a
rehearsal of these, says our author, the mind of the exorcist becomes completely
transported, and, whether asleep or awake, he finds himself accompanied by spirits
and genii (jinn) to the highest heavens and the lowest depths of earth. These spirits
then reveal to him hidden mysteries, and render souls and spirits obedient to the will
of the exorcist.
IV. If the exorcist wish to command the presence of genii in behalf of a certain
person, it is generally supposed to be effected in the following manner. He must,
first of all, shut himself up in a room and fast for forty days. He should besmear the
chamber with red ochre, and, having purified himself, should sit on a small carpet,
and proceed to call the genius or demon. He must, however, first find out what
special genii are required to effect his purpose. If, for example, he is about to call in
the aid of these spirits in behalf of a person named Bahrām ( بهرام ) he will find
out, first, the special genii presiding over the name, the letters of which are, omitting
the vowel points, B H R A M. Upon reference to the table it will be seen that they
are Danūsh, Hūsh, Rahūsh, Qayupūsh, and Majbūsh. He must then find out what are
the special names of God indicated by these letters, which we find in the table are
al-Bāqī, “the Eternal,” al-Hādī, “the Guide,” ar-Rabb, “the Lord,” Allāh, “God,” al-
Malik, “the King.” He must then ascertain the power of the letters, indicating the
number of times for the recital, which will be thus:—
B, 2 equal to 200
H, 5 500
,, ,,
R, 200 20,000
,, ,,
A, 1 100
,, ,,
M, 40 4,000
,, ,,
Total 24,800
The exorcist should then, in order to call in the help of the genii, recite the following
formula, not fewer than 24,800 times:—
The exorcist will perform this recital with his face turned towards the house of the
object he wishes to affect, and burn the perfumes indicated according to the table for
the letters of Bahrām’s name.
There are very many other methods of performing this exorcism, but the foregoing
will suffice as a specimen of the kind of service. [magic.]
DAY. The Muḥammadan day commences at sun-set; our Thursday evening, for
example, being the beginning of the Muslim Friday. The Arabic Yaum denotes the
day of twenty-four hours, and Nahār, the day in contradistinction to the night (lail).
The days of the week are as follows:—
testbankmall.com