C++ Programming From Problem Analysis to Program Design 8th Edition Malik Test Bank pdf download
C++ Programming From Problem Analysis to Program Design 8th Edition Malik Test Bank pdf download
https://testbankdeal.com/product/c-programming-from-problem-analysis-to-
program-design-8th-edition-malik-test-bank/
https://testbankdeal.com/product/c-programming-from-problem-analysis-
to-program-design-8th-edition-malik-solutions-manual/
https://testbankdeal.com/product/c-programming-from-problem-analysis-
to-program-design-7th-edition-malik-test-bank/
https://testbankdeal.com/product/c-programming-from-problem-analysis-
to-program-design-6th-edition-malik-test-bank/
https://testbankdeal.com/product/mathematics-for-elementary-school-
teachers-6th-edition-bassarear-solutions-manual/
Network Management Principles and Practices 2nd Edition
Subramanian Solutions Manual
https://testbankdeal.com/product/network-management-principles-and-
practices-2nd-edition-subramanian-solutions-manual/
https://testbankdeal.com/product/abnormal-psychology-16th-edition-
butcher-test-bank/
https://testbankdeal.com/product/operations-management-processes-and-
supply-chains-12th-edition-krajewski-solutions-manual/
https://testbankdeal.com/product/microbiology-fundamentals-a-clinical-
approach-3rd-edition-cowan-test-bank/
https://testbankdeal.com/product/illustrated-microsoft-office-365-and-
office-2016-fundamentals-1st-edition-hunt-solutions-manual/
Issues in Financial Accounting 15th Edition Henderson Test
Bank
https://testbankdeal.com/product/issues-in-financial-accounting-15th-
edition-henderson-test-bank/
Name: Class: Date:
Chapter 10
1. A class is an example of a structured data type.
a. True
b. False
ANSWER: True
POINTS: 1
REFERENCES: 652
QUESTION TYPE: True / False
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
3. If the heading of a member function of a class ends with the word const, then the function member cannot modify the
private member variables, but it can modify the public member variables.
a. True
b. False
ANSWER: False
POINTS: 1
REFERENCES: 655
QUESTION TYPE: True / False
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
Chapter 10
DATE MODIFIED: 10/5/2016 1:41 PM
private:
int x;
};
myClass myObject;
6. If an object is declared in the definition of a member function of the class, then the object can access both the public
and private members of the class.
a. True
b. False
ANSWER: True
POINTS: 1
REFERENCES: 657
QUESTION TYPE: True / False
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
7. If an object is created in a user program, then the object can access both the public and private members of the
class.
a. True
b. False
ANSWER: False
POINTS: 1
Chapter 10
REFERENCES: 657
QUESTION TYPE: True / False
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
8. You can use arithmetic operators to perform arithmetic operations on class objects.
a. True
b. False
ANSWER: False
POINTS: 1
REFERENCES: 659
QUESTION TYPE: True / False
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
10. The public members of a class must be declared before the private members.
a. True
b. False
ANSWER: False
POINTS: 1
REFERENCES: 670
QUESTION TYPE: True / False
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
11. The components of a class are called the ____ of the class.
a. elements b. members
c. objects d. properties
ANSWER: b
Copyright Cengage Learning. Powered by Cognero. Page 3
Name: Class: Date:
Chapter 10
POINTS: 1
REFERENCES: 652
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
a. class studentType
{
public:
void setData(string, double, int);
private:
string name;
};
b. class studentType
{
public:
void setData(string, double, int);
void print() const;
private:
string name;
double gpa;
}
c. class studentType
{
public void setData(string, double, int);
private string name;
};
d. studentType class
{
public: void setData(string, double, int);
private: string name;
};
ANSWER: a
POINTS: 1
REFERENCES: 654
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
13. If a member of a class is ____, you cannot access it outside the class.
Copyright Cengage Learning. Powered by Cognero. Page 4
Name: Class: Date:
Chapter 10
a. public b. automatic
c. private d. static
ANSWER: c
POINTS: 1
REFERENCES: 654
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
14. A class and its members can be described graphically using a notation known as the ____ notation.
a. OON b. OOD
c. UML d. OOP
ANSWER: c
POINTS: 1
REFERENCES: 656
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
clockType
-hr: int
-min: int
-sec: int
+setTime(int, int, int): void
+getTime(int&, int&, int&) const: void
+printTime() const: void
+incrementSeconds(): int
+incrementMinutes(): int
+incrementHours(): int
+equalTime(const clockType&) const: bool
15. The word ____ at the end of several the member functions in the accompanying figure class clockType specifies
that these functions cannot modify the member variables of a clockType object.
a. static b. const
c. automatic d. private
ANSWER: b
POINTS: 1
REFERENCES: 655
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
PREFACE NAME: clockType definition
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
Copyright Cengage Learning. Powered by Cognero. Page 5
Name: Class: Date:
Chapter 10
16. Consider the UML class diagram shown in the accompanying figure. Which of the following is the name of the class?
a. clock b. clockType
c. Type d. +clockType
ANSWER: b
POINTS: 1
REFERENCES: 656
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
PREFACE NAME: clockType definition
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
17. Consider the UML class diagram shown in the accompanying figure. According to the UML class diagram, how many
private members are in the class?
a. none b. zero
c. two d. three
ANSWER: d
POINTS: 1
REFERENCES: 656
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
PREFACE NAME: clockType definition
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
18. A ____ sign in front of a member name on a UML diagram indicates that this member is a public member.
a. + b. -
c. # d. $
ANSWER: a
POINTS: 1
REFERENCES: 656
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
19. A ____ sign in front of a member name on a UML diagram indicates that this member is a protected member.
a. + b. -
c. # d. $
ANSWER: c
POINTS: 1
REFERENCES: 656
Copyright Cengage Learning. Powered by Cognero. Page 6
Name: Class: Date:
Chapter 10
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
class rectangleType
{
public:
void setLengthWidth(double x, double y);
//Postcondition: length = x; width = y;
void print() const;
//Output length and width;
double area();
//Calculate and return the area of the rectangle;
double perimeter();
//Calculate and return the parameter;
rectangleType();
//Postcondition: length = 0; width = 0;
rectangleType(double x, double y);
//Postcondition: length = x; width = y;
private:
double length;
double width;
};
20. Consider the accompanying class definition. Which of the following variable declarations is correct?
a. rectangle rectangleType;
b. class rectangleType rectangle;
c. rectangleType rectangle;
d. rectangle rectangleType.area;
ANSWER: c
POINTS: 1
REFERENCES: 657
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
PREFACE NAME: rectangleType class
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
rectangleType bigRect;
Chapter 10
POINTS: 1
REFERENCES: 657
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
PREFACE NAME: rectangleType class
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
22. Consider the accompanying class definition, and the object declaration:
rectangleType bigRect(14,10);
24. A class object can be ____. That is, it is created each time the control reaches its declaration, and destroyed when
the control exits the surrounding block.
a. static b. automatic
c. local d. public
ANSWER: b
POINTS: 1
Chapter 10
REFERENCES: 660
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
25. A class object can be ____. That is, it can be created once, when the control reaches its declaration, and destroyed
when the program terminates.
a. static b. automatic
c. local d. public
ANSWER: a
POINTS: 1
REFERENCES: 660
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
26. In C++, you can pass a variable by reference and still prevent the function from changing its value by using the
keyword ____ in the formal parameter declaration.
a. automatic b. private
c. static d. const
ANSWER: d
POINTS: 1
REFERENCES: 660
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
28. A member function of a class that only accesses the value(s) of the data member(s) is called a(n) ____ function.
a. accessor b. mutator
Chapter 10
c. constructor d. destructor
ANSWER: a
POINTS: 1
REFERENCES: 666
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
29. To guarantee that the member variables of a class are initialized, you use ____.
a. accessors b. mutators
c. constructors d. destructor
ANSWER: c
POINTS: 1
REFERENCES: 671
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
class secretType
{
public:
static int count;
static int z;
secretType();
secretType(int a);
void print();
static void incrementY();
private:
int x;
static int y;
};
secretType::secretType()
{
x = 1;
}
secretType::secretType(int a)
{
x = a;
}
void secretType::print()
{
Copyright Cengage Learning. Powered by Cognero. Page 10
Name: Class: Date:
Chapter 10
cout << "x = " << x << ", y = " << y
<< "z = " << z
<< ", count = " << count << endl;
}
30. Consider the accompanying class and member functions definitions. How many constructors are present in the class
definition?
a. none b. one
c. two d. three
ANSWER: c
POINTS: 1
REFERENCES: 672
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
PREFACE NAME: secretType class
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
32. A destructor has the character ____, followed by the name of the class.
a. . b. ::
c. # d. ˜
ANSWER: d
POINTS: 1
REFERENCES: 681
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
Chapter 10
33. What does ADT stand for?
a. abstract definition type b. asynchronous data transfer
c. abstract data type d. alternative definition type
ANSWER: c
POINTS: 1
REFERENCES: 682
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
35. If a function of a class is static, it is declared in the class definition using the keyword static in its ____.
a. return type b. parameters
c. heading d. main function
ANSWER: c
POINTS: 1
REFERENCES: 701
QUESTION TYPE: Multiple Choice
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
36. With ____________________ functions, the definitions of the member functions are placed in the implementations
file.
ANSWER: inline
POINTS: 1
REFERENCES: 700
QUESTION TYPE: Completion
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
Copyright Cengage Learning. Powered by Cognero. Page 12
Name: Class: Date:
Chapter 10
DATE MODIFIED: 10/30/2016 12:22 PM
37. If a class object is passed by ____________________, the contents of the member variables of the actual parameter
are copied into the corresponding member variables of the formal parameter.
ANSWER: value
POINTS: 1
REFERENCES: 660
QUESTION TYPE: Completion
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
38. Non-static member variables of a class are called the ____________________ variables of the class.
ANSWER: instance
POINTS: 1
REFERENCES: 666
QUESTION TYPE: Completion
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
39. A program or software that uses and manipulates the objects of a class is called a(n) ____________________ of that
class.
ANSWER: client
POINTS: 1
REFERENCES: 666
QUESTION TYPE: Completion
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
40. A(n) ____________________ function of a class changes the values of the member variable(s) of the class.
ANSWER: mutator
POINTS: 1
REFERENCES: 666
QUESTION TYPE: Completion
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
41. A(n) ____________________ contains the definitions of the functions to implement the operations of an object.
ANSWER: implementation file
POINTS: 1
REFERENCES: 686
Copyright Cengage Learning. Powered by Cognero. Page 13
Name: Class: Date:
Chapter 10
QUESTION TYPE: Completion
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
43. A(n) ____________________ is a statement specifying the condition(s) that must be true before the function is called.
ANSWER: precondition
POINTS: 1
REFERENCES: 687
QUESTION TYPE: Completion
HAS VARIABLES: False
DATE CREATED: 10/5/2016 1:41 PM
DATE MODIFIED: 10/5/2016 1:41 PM
Language: English
BRITISH ORATIONS
WITH
INTRODUCTIONS AND EXPLANATORY NOTES
BY
CHARLES KENDALL ADAMS.
✩
NEW YORK & LONDON
G . P. P U T N A M ’ S S O N S
The Knickerbocker Press
1884
COPYRIGHT
G. P. PUTNAM’S SONS
1884.
Press of
G. P. Putnam’s Sons
New York
TO
A. D. A.
CONTENTS.
PAGE
Sir John Eliot 1
John Pym 27
John Pym 37
On the Subject of Grievances in the Reign of Charles I.
House of Commons, April 5, 1640.
Lord Chatham 85
Lord Chatham 98
On the Right of Taxing America. House of Commons,
January 14, 1766.
C. K. A.
University of Michigan, Ann Arbor,
November 22, 1884.
SIR JOHN ELIOT.
During the second half of the sixteenth century and the first half
of the seventeenth, the political and religious energies of Europe
were very largely devoted to the settlement of questions that had
been raised by that great upheaval known as the Protestant
Reformation. On the Continent a reaction had almost everywhere set
in. Not only were the new religious doctrines very generally stifled,
but even those political discontents which seemed to follow as an
inseparable consequence of the religious movement, were put down
with a rigorous hand. The general tendency was toward the
establishment of a firmer absolution both in Church and in State.
But in England this tendency was arrested. It was the good
fortune of the nation to have a monarch upon the throne who
vigorously resisted every foreign attempt to interfere with English
affairs. It was doubtless the political situation rather than
earnestness of religious conviction that led Elizabeth to make the
Church of England independent of the Church of Rome. But in
securing political independence she also secured the success of the
Reformation. Doubtless she was neither able nor inclined to resist
the prevailing tendency toward political absolutism; but it had been
indispensable to her success that she should enlist in the cause of
religious and political independence all the powers of the nation.
However, as soon as independence was established by the
destruction of the Spanish Armada, it became evident that there was
another question to be settled of not less significance. That question
was whether the English Constitution was to be developed in the
direction of its traditional methods, or whether the government and
people should adopt the reactionary methods that were coming to
be so generally accepted on the Continent. It took a century of strife
to answer the question. The struggle did not become earnest during
the reign of Elizabeth, but it cost Charles I. his head, and the Stuart
dynasty its right to the throne. For three generations the kings were
willing to stake every thing in favor of the Continental policy, while
Parliament was equally anxious to maintain the traditional methods.
It was unavoidable that a conflict should ensue; and the Great
Revolution of the seventeenth century was the result.
James I., during the whole of his reign, showed a disposition to
override whatever principles of the Constitution stood in the way of
his personal power. Charles I. was a man of stronger character than
his father, and he brought to the service of the same purpose a
greater energy and a more determined will. As soon as he ascended
the throne in 1625, it began to look as though a contest would be
inevitable between royal will on the one hand and popular freedom
on the other. The King, determined to rule in his own way, not only
questioned the right of Parliament to inquire into grievances, but
even insisted upon what he regarded as his own right to levy money
for the support of the Government without the consent of
Parliament. This determination Parliament was disposed to question,
and in the end to resist.
Under the maxim of the English Government, that “the King can
do no wrong,” there is but one way of securing redress, in case of an
undue exercise of royal power. As the Constitution presumes that the
King never acts except under advice, his ministers, as his
constitutional advisers, may be held responsible for all his acts. The
impeachment of ministers, therefore, is the constitutional method of
redress. It was the method resorted to in 1626. Articles of
Impeachment were brought by the House of Commons against the
King’s Prime Minister and favorite, the Duke of Buckingham.
One of the most prominent members of Parliament, and the
foremost orator of the day was Sir John Eliot. This patriot, born in
1590, and consequently now thirty-six years of age, was appointed
by the Commons one of the managers of the impeachment. With
such skill and vigor did he conduct the prosecution against
Buckingham, that the king determined to put a stop to the
impeachment by ordering Eliot’s arrest and imprisonment. Eliot was
thrown into the Tower; but the Commons regarded the arrest as so
flagrant a violation of the rights of members that they immediately
resolved “not to do any more business till they were righted in their
privileges.” The King, in view of this unexpected evidence of spirit on
the part of the Commons, deemed it prudent to relent. Eliot was
discharged; and the Commons, on his triumphal reappearance in the
House, declared by vote “that their managers had not exceeded the
commission entrusted to them.”
Thus the first triumph in the contest was gained by the
Commons. But the King was not unwilling to resort to even more
desperate measures. He determined to raise money independently
of Parliament, and, if Parliament should continue to pry into the
affairs of his minister, to dispense with Parliament almost or quite
altogether. This desperate determination he undertook to carry out
chiefly by the raising of forced loans and the issuing of monopolies.
But here again the King met with a more strenuous opposition than
he had anticipated. Eliot and Hampden, with some seventy-six other
members of the English gentry refused to make the contribution
demanded. As such defiance threatened to break down the whole
system, the King was forced either to resort to extreme measures or
to abandon his method. He resolved upon the former course, but he
was forced to the latter. He threw Eliot and Hampden into prison;
but the outcry of the people was so great and so general that the
necessary money could not be raised, and so he was obliged to call
his third Parliament. Eliot and Hampden, though in prison, were
elected members; and the King, not deeming it prudent to retain
them, ordered their release a few days before the opening of the
session.
The special object for which Parliament had been called by the
King was the granting of money; but the members were in no mood
to let the opportunity pass without securing from the monarch an
acknowledgment of their rights in definite form. Accordingly, they
appointed Sir Edward Coke, the most distinguished lawyer of the
time, to draw up a petition to the King that should embody a
declaration of the constitutional privileges on which they reposed
their rights. The result was the famous “Petition of Right,” an
instrument which, in the history of English liberty, has been only
second in importance to the Great Charter itself. The petition asked
the King’s assent to a number of propositions, the most important of
which were that no loan or tax should be levied without the consent
of Parliament; that no man should be imprisoned except by legal
process; and that soldiers should not be quartered upon the people
without the people’s consent. These propositions introduced nothing
new into the Constitution. They professed simply to ask the King’s
approval of principles and methods that had been acknowledged and
acted upon for hundreds of years. The great significance of the
Petition of Right was that it designed to secure the assent of the
monarch to a reign of law instead of a reign of arbitrary will. The
object of Parliament was to put into definite form a clear expression
of the King’s purpose. They desired to know whether his intention
was to rule according to the precedents of the English Constitution
that had been taking definite form for centuries, or whether, on the
contrary, he was determined to build up a system of absolutism
similar to that which was very generally coming to prevail on the
Continent. The petition passed the two Houses and went to the King
1; A
for his approval. He gave an evasive answer. Parliament was
taken by surprise and seemed likely to be baffled. It was a crisis of
supreme danger. Sir John Eliot was the first to see that if they were
now to thwart the King’s purpose it must be done by availing
themselves immediately of the responsibility of Buckingham. He
determined that the proper course was a remonstrance to the King;
and it was in moving this remonstrance that his great speech was
made.
A
Numerals inserted in the course of the work refer the
reader to corresponding Illustrative Notes at the end of
each volume.
Mr. Speaker:
We sit here as the great council of the King, and, in that capacity
it is our duty to take into consideration the state and affairs of the
kingdom; and, where there is occasion, to give them in a true
representation by way of council and advice, what we conceive
necessary or expedient for them.
In this consideration, I confess, many a sad thought has frighted
me: and that not only in respect of our dangers from abroad, which
yet I know are great, as they have been often in this place prest and
dilated to us; but in respect of our disorders here at home, which do
inforce those dangers, as by them they were occasioned.
For I believe I shall make it clear unto you, that as at first the
causes of those dangers were our disorders, our disorders still
remain our greatest dangers. It is not now so much the potency of
our enemies, as the weakness of ourselves, that threatens us; and
that saying of the Father may be assumed by us, Non tam potentia
sua quam negligentia nostra. Our want of true devotion to Heaven,
our insincerity and doubling in religion, our want of councils, our
precipitate actions, the insufficiency or unfaithfulness of our generals
abroad, the ignorance or corruption of our ministers at home, the
impoverishing of the sovereign, the oppression and depression of
the subject, the exhausting of our treasures, the waste of our
provisions, consumption of our ships, destruction of our men!—
These make the advantage to our enemies, not the reputation of
their arms. And if in these there be not reformation, we need no
foes abroad! Time itself will ruin us.
You will all hold it necessary that what I am about to urge seem
not an aspersion on the state or imputation on the government, as I
have known such mentions misinterpreted. Far is it from me to
purpose this, that have none but clear thoughts of the excellency of
his Majesty, nor can have other ends but the advancement of his
glory.
To shew what I have said more fully, therefore, I shall desire a
little of your patience extraordinary to open the particulars: which I
shall do with what brevity I may, answerable to the importance of
the cause and the necessities now upon us; yet with such respect
and observation to the time as I hope it shall not be thought too
troublesome.
For the first, then, our insincerity and doubling in religion, the
greatest and most dangerous disorder of all others, which has never
been unpunished, and for which we have so many strange examples
of all states and in all times to awe us,—what testimony does it
want? Will you have authority of books? look on the collections of
the committee for religion, there is too clear an evidence. Will you
have records? see then the commission procured for composition
with the papists in the North? Note the proceedings thereupon. You
will find them to little less amounting than a toleration in effect,
though upon some slight payments; and the easiness in them will
likewise shew the favor that’s intended. Will you have proofs of
men? witness the hopes, witness the presumptions, witness the
reports of all the papists generally. Observe the dispositions of
commands, the trust of officers, the confidence of secrecies of
employments, in this kingdom, in Ireland, and elsewhere. They all
will shew it has too great a certainty. And, to these, add but the
incontrovertible evidence of that all-powerful hand which we have
felt so sorely, to give it full assurance! For as the Heavens oppose
themselves to us, it was our impieties that first opposed the
Heavens.
For the second, our want of councils, that great disorder in a
3
State with which there cannot be stability, if effects may shew their
causes, as they are often a perfect demonstration of them, our
misfortunes, our disasters, serve to prove it! And (if reason be
allowed in this dark age, by the judgment of dependencies, the
foresight of contingencies, in affairs) the consequences they draw
with them confirm it. For, if we view ourselves at home, are we in
strength, are we in reputation, equal to our ancestors? If we view
ourselves abroad, are our friends as many, are our enemies no
more? Do our friends retain their safety and possessions? Do our
enemies enlarge themselves, and gain from them and us? What
4
council, to the loss of the Palatinate, sacrificed both our honor and
our men sent thither; stopping those greater powers appointed for
that service, by which it might have been defensible? What council
gave directions to that late action whose wounds lie yet a bleeding?
5
I mean the expedition unto Rhée, of which there is yet so sad a
memory in all men! What design for us, or advantage to our State,
could that work import? You know the wisdom of our ancestors, the
practice of their times; and how they preserved their safeties! We all
know, and have as much cause to doubt as they had, the greatness
and ambition of that kingdom, which the old world could not satisfy!
Against this greatness and ambition we likewise know the
proceedings of that princess, that never to be forgotten excellence,
Queen Elizabeth; whose name, without admiration, falls not into
mention with her enemies. You know how she advanced herself, how
she advanced this kingdom, how she advanced this nation, in glory
and in State; how she depressed her enemies, how she upheld her
friends; how she enjoyed a full security, and made them then our
6
scorn, who now are made our terror!
Some of the principles she built on, were these; and if I be
mistaken, let reason and our statesmen contradict me.
First, to maintain, in what she might, a unity in France, that that
kingdom, being at peace within itself, might be a bulwark to keep
back the power of Spain by land. Next, to preserve an amity and
league between that State and us; that so we might join in aid of
the Low Countries, and by that means receive their help and ships
by sea.
Then, that this treble cord, so wrought between France, the
States, and us, might enable us, as occasion should require, to give
assistance unto others; by which means, the experience of that time
doth tell us, we were not only free from those fears that now
possess and trouble us, but then our names were fearful to our
enemies. See now what correspondence our action hath had with
this.
Square it by these rules. It did induce as a necessary
consequence the division in France between the Protestants and
their king, of which there is too woeful, too lamentable an
experience. It has made an absolute breach between that State and
us; and so entertains us against France, France in preparation
against us, that we have nothing to promise to our neighbors, hardly
for ourselves. Nay, but observe the time in which it was attempted,
and you shall find it not only varying from those principles, but
directly contrary and opposite ex diametro to those ends; and such
as from the issue and success rather might be thought a conception
B
of Spain than begotten here with us.
B
This allusion or insinuation of Eliot’s provoked an
instantaneous uproar. Buckingham had visited the Courts of
Spain and France, and his name had been associated with
discreditable intrigues. In the streets of London there had
been talk of “treasonable correspondence,” and of “a
sacrifice to vanity or passion of the most sacred duties of
patriotism.” When Eliot, therefore, alluded to the act of
Welcome to our website – the perfect destination for book lovers and
knowledge seekers. We believe that every book holds a new world,
offering opportunities for learning, discovery, and personal growth.
That’s why we are dedicated to bringing you a diverse collection of
books, ranging from classic literature and specialized publications to
self-development guides and children's books.
testbankdeal.com