C++ Programming From Problem Analysis to Program Design 8th Edition Malik Test Bank - Download Today For Unlimited Reading
C++ Programming From Problem Analysis to Program Design 8th Edition Malik Test Bank - Download Today For Unlimited Reading
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
BOOK-PLATE OF M. HURSON.
The officers connected with these Courts were very numerous, and those
of the higher grades were entitled to carry certain distinctive badges with
their arms, and head-dresses denoting their rank.
In ex-libris printed before the Revolution it is not unusual to find the
collars and insignia of the several orders of French knighthood, the principal
of which were the order of Saint Denis, instituted in 1267; of Saint Michel,
instituted by Louis XI. at the Château d’Amboise, August 1, 1469; of the
Saint Esprit (Holy Ghost), instituted in 1578; of Notre Dame du Mont
Carmel, instituted in 1607; and of Saint Louis, instituted in 1693. The
chevaliers de Saint Michel wore a collar from which was pendent a medal,
representing the archangel overthrowing the dragon; the collar of the Saint
Esprit was formed of alternate fleurs-de-lis and the letter H interlaced, from
which depended either a dove or a cross, according to the rank of the bearer.
The Knights of the Royal and Military order of Saint Louis carried a star
with eight points, on which was the motto of the order: Bellicae virtutis
praemium.
There was also a very ancient order, that of St. Lazare de Jerusalem,
which was united by Henri IV. with that of Notre Dame du Mont Carmel.
Although the order of the Toison d’Or (Golden Fleece) was founded by a
French prince, Philippe, Duke of Burgundy, in 1429, it passed into the hands
of the House of Austria, and thence again into the possession of the kings of
Spain, who became the sovereigns of the order.
Owing, no doubt, to the close family relations existing between the royal
houses of France and Spain, the order of the Golden Fleece was conferred
upon many of the French nobles (by permission of their king), and the collar,
with the well-known badge of the pendent lamb, is to be found on many
French achievements. The motto of the order is Pretium non vile laborum.
Of all these orders the most important were the Saint Michel, the Saint
Esprit, and the Saint Louis, which were specially distinguished as “les
Ordres du Roi” (the Orders of the King), he being their Chief and Grand
Master. Chevaliers of the order of the Saint Esprit were always first admitted
into the order of Saint Michel, so that the collars of these two orders are
generally found together. The order of Saint Louis having been founded by
Louis XIV. exclusively for the reward of military and naval services, is
occasionally met with apart from the two other orders of the king. There was
also an order, that of the Bee, intended for ladies only, which was founded in
1703.
Most of the above orders ceased to exist during the Revolution. That of
the Saint Esprit was revived at the Restoration, but the last installation took
place under Charles X., at the Tuileries, on May 31, 1830, and the latest
surviving owner of the Order was the late Duc de Nemours; whilst that of
Saint Louis, a distinctly Bourbon decoration, is probably still kept alive by
the few remaining adherents of that luckless family.
In 1802 Napoleon, then First Consul, instituted the famous order of the
Legion of Honour, for the reward of merit either in the army, navy, or in civil
life. The order was confirmed by Louis XVIII. in 1815, and its rules and
constitution were modified in 1816 and in 1851. M. Ambroise Thomas, on
whom the Grand Cross of the Legion of Honour was recently bestowed, is
one of six civilians who at present hold that order. Meissioner is the only
artist who has ever held this distinction. The number of Grand Crosses is
limited to eighty, but for a long time past the number actually holding the
decoration has varied between forty and fifty. When the Legion of Honour
was created in 1802 by General Bonaparte, the holders of the Grand Cordon
(now Grand Cross) were entitled to draw £800 a year; at the Restoration this
amount was reduced by one-half. Nowadays the members of the Legion of
Honour receive the following annuities: Knights, £10; Officers, £20;
Commanders, £40; Grand Officers, £80; and Grand Crosses, £120.
Decorations conferred on civilians do not carry with them any pension.
Practically this is now the only order of knighthood existing in France, yet
the number of men who are décoré is remarkable. They can scarcely be all
chevaliers de la Légion d’Honneur, but the French have a passion for titles
and orders, a craving for le galon, which, though somewhat incompatible
with the republican form of government they have adopted, must be
gratified.
This desire to raise oneself a rung or two on the social ladder, to which
even sensible bibliophiles appear to have succumbed, is no new thing. It
exists to-day, and has existed for centuries. Penalties, however severe, seem
to have been unavailing, and even ridicule was found powerless to check this
silly vanity.
A lawyer of Dijon, named Bernard, was ordered to erase from the tomb of
his wife the girdle of nobility he had had carved around her epitaph. Others
who carried the full-faced open helmets, proper only for emperors, kings,
and sovereign princes, on their fantastic achievements, were compelled to
adopt the closed helmet in profile proper for a simple gentleman.
Owners of assumed titles and of manufactured coats-of-arms were greatly
alarmed a few years ago by the terribly sarcastic writings of an individual
who styled himself the ghost of an ancient herald, Le Toison d’Or.[2]
In a series of letters published in “Le Voltaire” he exposed the faulty and
ignorant system of heraldry in vogue, and the deceptive assumptions of
titles, coronets, and armorial bearings in modern French Society.
Indeed, he remarked, to judge by appearances, one might imagine that the
Revolution had destroyed nothing, but that, on the contrary, it had
endeavoured to foster and encourage titles and aristocracy, so rapidly had
they increased of late years.
Toison d’Or wished to alter all this, and the salons were greatly disturbed
as he went to work chipping off titles and prefixes of nobility right and left.
But all to no purpose, except indeed to cast doubts upon all French heraldry
since the downfall of the Bourbons.
A title in France costs nothing, and deceives no one who has the slightest
knowledge of family history and genealogy.
The following letter appeared in “Notes and Queries,” London, August
25, 1894:
“As there always appears to be a doubt in the public mind as to whether
there is any office in France at all corresponding to our heralds’ offices in
this country, I ventured to put out this query to a well-known authority in
Paris, together with the queries as to whether there is any ground for the
statement that the archives of the French Heralds’ College were destroyed by
fire by the Commune, and also if there is any Heraldic or Genealogical
Society at all corresponding to the Government Office; and I received the
following reply:
“‘The old Government had the “Généalogistes du Roi,” for proofs of
nobility, and the “Juges d’Armes,” such as d’Hozier and Cherieu. The
Monarchical Governments of this century had the “Conseil du Sceau des
Titres,” now suppressed. The archives of these officers are now dispersed,
part to the Bibliothèque Nationale (Cabinet des Titres), part to the Hôtel de
Soubise (in the series M. and MM.), part to the Ministère de la Justice (for
the period after 1789). In short, the equivalent of the Heralds’ College of
England never existed in France. However, the Conseil du Sceau had some
similarity to that body. There is no Heraldic Society, yet some persons,
without legal authority, occupy themselves with questions of nobility, but
they necessarily cannot be regarded as altogether trustworthy. Not knowing
of a Heralds’ College in France, I cannot accuse the Commune of having
burnt the archives. The fires of 1871 destroyed the parochial registers
(entries of birth, marriage, and death) preserved at the Hôtel de Ville, and in
the Library of the Louvre, which included some precious MSS. containing
some correspondence of the last two centuries.’”
“ARTHUR VICARS, Ulster.”
It will be seen that reference is made in the above letter to a certain un-
official Heraldic Society, but shortly after the above correspondence was
published, even that body was dissolved.
In May, 1895, there was sold by auction in the Hôtel des Ventes, in Paris,
the whole of the archives accumulated by the French Heraldic College.
Although it is true the institution was never anything but a private enterprise,
it had had an uninterrupted existence of more than half a century, during
which period a great store of genealogical documents had been amassed
relating to the titled families of France. It was founded in 1841 by the
Marquis de Magny, the compiler of the well-known “Livre d’Or de la
Noblesse de France,” but the present generation of Frenchmen did not care
sufficiently for rules of precedence and genealogical trees to support the
institution. Hence the sale, consisting, it is computed, of 40,000 genealogical
trees, and about 400,000 original family documents.
As to Frenchmen generally, they seem now to attach little importance to
heraldry, and few literary men place arms on their book-plates. In fact, as M.
Henri Bouchot observes: “Le blason à fait son temps, il ne se rencontre plus
guère que dans les travaux des héraldistes et détonne un peu en ce moment.”
As a simple guide to French heraldic terms may be mentioned: “Traité
Complet de la Science du Blason,” par Jouffroy D’Eschavannes. Edouard
Rouveyre, rue des Saints Pères, Paris, 1880. This contains an excellent
“Dictionnaire des Termes de Blason.”
Heraldically interesting is the ex-libris of the library of the Château du
Verdier de Vauprivas, French King of Arms, with the old war-cry of the
Bourbons, Mont-Joye St. Denis! and the owner’s motto, “Fear no Evil.”
“Clisson assura sa Majesté du gain de la bataille, le roi lui repondit:
Connestable, Dieu le veeulle, nous irons donc avant au nom de Dieu et de
Sainct Denis.”—Vulson de la Colombière.
This is the fourth dated plate (1574, 1611, 1613, 1644) before 1650, the
next we meet with is that of André Felibien, dated 1650.
François de Malherbe (1555-1628). The poet had plates in two sizes, both
armorial, and both probably engraved early in the seventeenth century, and
with the tinctures incorrectly shown. Neither bears the owner’s name.
Poulet-Malassis reproduces the larger plate.
Amy Lamy. A curious and exceptional plate, having the portrait of this
unknown bibliophile, with the motto: “Usque ad aras,” and six lines of
complimentary Latin verse.
A large nameless armorial book-plate (unknown), with the motto “In
manus tuas Domine sortes mea,” signed J. de Courbes fecit, with several
other plates which cannot be identified, complete the list of plates of this
period mentioned by Poulet-Malassis. In most cases he gives details of the
arms and crests which students who desire to be conversant with French
heraldry may consult with advantage.
It will thus be seen that the proportion of book-plates which can be
positively assigned to a date prior to 1650 is small. Omitting those which
were produced in the provinces on the German frontier, or under the
influence of foreign artists, it will be remarked that all the plates produced
within the geographical limits of the France of that period were essentially
heraldic in character, composed of emblazoned shields, with helmets, crests,
mantling, and supporters, often surrounded by wreaths of laurel or palm
branches, and frequently resting on handsome mosaic platforms, decorated
with the principal charges of the shield. And so generally was the science of
heraldry understood in those days, that on only about one-half of the plates
was it deemed necessary to add the owner’s name to the shield displaying
his arms.
In the reigns of Henri IV. and Louis XIII. book-plates were probably very
uncommon, and the large size in which they were produced, for the massive
folios then in vogue, has militated much against their preservation. They are,
of all book-plates, the most eagerly sought for by collectors; they are rare,
they have great artistic merit, and the heraldry is of the grandest and purest
style ever known in France. Pierre d’Hozier compiled a list (which has never
yet been published) of the names, titles, and arms of one hundred and
twenty-five persons, who, living in 1631, were known as collectors and
lovers of works on heraldry, history, and genealogy. This list was
accompanied by drawings of the armorial bearings of each of the one
hundred and twenty-five collectors (engraved by Magneney and J. Picart),
the cream of the book-lovers of the day, la fine fleur des bibliophiles, all
possessors of libraries, and it may also reasonably be supposed, all possessed
of ex-libris.
Yet of all these Poulet-Malassis asserts that he has found but five whose
plates are known at present, namely, those of Le Puy du Fou, Montchal,
Auzoles de la Peyre, Jean Bigot, and the brothers Sainte-Marthe. Of the
remaining one hundred and twenty no book-plates are known; that some
amongst their number must have had them is reasonably certain. But where
shall we find them, or shall we ever find them?
Mais où sont les neiges d’antan?
These books had been collected by two of the most famous bibliophiles
of the century, Pierre Daniel Huet, Evêque d’Avranches, and Gilles Ménage,
Doyen de St. Pierre d’Angers. Bishop Huet chose to present his books
during his lifetime (he survived the parting, and lived until 1721), and the
gift was of great value, consisting as it did, of 8,312 volumes, besides many
rare manuscripts.
BOOK-PLATE OF ANDRÉ FELIBIEN, 1650.
The Jesuit fathers recorded their gratitude on ex-libris (in four sizes) of an
appropriately rich character, carrying the arms of Bishop Huet. They went to
less expense in showing their appreciation of the legacy of Ménage, perhaps
because he was dead (he died July 23rd, 1692), or perhaps because he only
left them about 2,000 volumes. Neither Bishop Huet nor Dean Ménage
appears to have used an ex-libris, but the bindings of their books carried
their arms stamped in gold on the covers. An account of the libraries of these
famous collectors is given in “L’Armorial du Bibliophile.”
Between 1650 and 1700 the number of book-plates is not large, nor are
they of any exceptional interest, beyond showing the gradual alteration in
style. It will suffice to name a few of the finest examples.
Nicolas Martigny de Marsal, by Sebastien Le Clerc. Four sizes, two dated
respectively 1655 and 1660.
Guillaume Tronson. Signed A. B. Flamen.
Hadriani de Valois, dom. de la Mare.
Jerôme Bignon, grand maitre de la Bibliothèque du Roi. A fine armorial
plate, probably engraved by François Chauveau.
Leonor Le François Sr. de Rigawille. Motto: “Meliora sequentr,” dated
1673.
Charles Maurice Le Tellier, archevêque de Reims. Signed J. Blocquet,
1672.
Louis François du Bouchet, Marquis de Souches. Signed “Mavelot,
graveur de Mademoiselle.”
Mgr. Pellot, Premier President du Parlmt de Normandie. Signed J. T.,
probably Jean Toustain, an engraver of Normandy.
This President Pellot possessed a valuable collection of Spanish and
Italian books.
Guyet de la Sordière, a plate bearing the arms of several family alliances
of la Sordière.
Charles, Marquis et Comte de Rostaing. Signed P. Nolin. This fine
heraldic plate does not bear the name of its owner, but as it is exactly
reproduced in the Armorial of Segoing, with the inscription “Armes
d’Alliances de Messire Charles marquis et comte de Rostaing, gravées par
son très humble serviteur Pierre Nolin, 1650,” we are enabled at once to
identify the plate, and to fix its date.
BOOK-PLATE OF MONSIEUR DE LORME.
The plates of this later period are, for the most part, affected, pompous,
and even ridiculous in their assumptions. Shields in impossible attitudes,
either resting on nothing, or falling over the supporters. These, in their turn,
no longer perform their ancient duties seriously, but lounge about, lie asleep
at their posts, or yawn with ennui at having to take a part in such a farce as
heraldry in France had now become. As for the few plates of this period
which preserve the ancient regularity of form and correct heraldic drawing,
these usually belong to the families most entitled to bear arms, yet they look
archaic and formal beside their more ornate brethren.
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.
testbankdeal.com