0% found this document useful (0 votes)
1 views

Starting Out with Java From Control Structures through Objects 6th Edition Gaddis Test Bank download

The document provides a test bank for the book 'Starting Out with Java: From Control Structures through Objects, 6th Edition' by Gaddis, including various solution manuals and test banks for related subjects. It contains multiple-choice questions and answers related to Java programming concepts, data types, and syntax. Additionally, it offers links to download various educational resources in different formats.

Uploaded by

noseralbusvb
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views

Starting Out with Java From Control Structures through Objects 6th Edition Gaddis Test Bank download

The document provides a test bank for the book 'Starting Out with Java: From Control Structures through Objects, 6th Edition' by Gaddis, including various solution manuals and test banks for related subjects. It contains multiple-choice questions and answers related to Java programming concepts, data types, and syntax. Additionally, it offers links to download various educational resources in different formats.

Uploaded by

noseralbusvb
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 39

Starting Out with Java From Control Structures

through Objects 6th Edition Gaddis Test Bank


install download

https://testbankmall.com/product/starting-out-with-java-from-
control-structures-through-objects-6th-edition-gaddis-test-bank/

Download more testbank from https://testbankmall.com


Instant digital products (PDF, ePub, MOBI) available
Download now and explore formats that suit you...

Solution Manual for Starting Out with Java: From Control


Structures through Objects, 5/E 5th Edition : 0132989999

https://testbankmall.com/product/solution-manual-for-starting-out-
with-java-from-control-structures-through-objects-5-e-5th-
edition-0132989999/
testbankmall.com

Solution Manual for Starting Out with C++ from Control


Structures to Objects, 9th Edition, Tony Gaddis

https://testbankmall.com/product/solution-manual-for-starting-out-
with-c-from-control-structures-to-objects-9th-edition-tony-gaddis/

testbankmall.com

Solution Manual for Starting Out with C++: From Control


Structures through Objects, 7/E 7th Edition : 0132774178

https://testbankmall.com/product/solution-manual-for-starting-out-
with-c-from-control-structures-through-objects-7-e-7th-
edition-0132774178/
testbankmall.com

Solution Manual for Munson, Young and Okiishi’s


Fundamentals of Fluid Mechanics 8th by Gerhart

https://testbankmall.com/product/solution-manual-for-munson-young-and-
okiishis-fundamentals-of-fluid-mechanics-8th-by-gerhart/

testbankmall.com
Test Bank Pathophysiology: A Practical Approach, 1st
Edition by Lachel Story

https://testbankmall.com/product/test-bank-pathophysiology-a-
practical-approach-1st-edition-by-lachel-story/

testbankmall.com

Test Bank for Mosbys Respiratory Care Equipment 10th


Edition by Cairo

https://testbankmall.com/product/test-bank-for-mosbys-respiratory-
care-equipment-10th-edition-by-cairo/

testbankmall.com

Test Bank for Physical Science, 9th Edition: Bill Tillery

https://testbankmall.com/product/test-bank-for-physical-science-9th-
edition-bill-tillery/

testbankmall.com

Test Bank for Dynamic Business Law: The Essentials 2nd


Edition Nancy Kubasek, M. Neil Browne, Daniel Herron,
Lucien Dhooge, Linda Barkacs
https://testbankmall.com/product/test-bank-for-dynamic-business-law-
the-essentials-2nd-edition-nancy-kubasek-m-neil-browne-daniel-herron-
lucien-dhooge-linda-barkacs/
testbankmall.com

Test Bank for Pierson and Fairchild’s Principles &


Techniques of Patient Care 5th by Fairchild

https://testbankmall.com/product/test-bank-for-pierson-and-fairchilds-
principles-techniques-of-patient-care-5th-by-fairchild/

testbankmall.com
Solution Manual for Designing the User Interface:
Strategies for Effective Human-Computer Interaction, 5/E
5th Edition : 0321537351
https://testbankmall.com/product/solution-manual-for-designing-the-
user-interface-strategies-for-effective-human-computer-
interaction-5-e-5th-edition-0321537351/
testbankmall.com
Gaddis: Starting Out with Java: From Control Structures through Objects, 6/e © 2016 Pearson Education
b. Literals
c. Key words
d. Comments
Gaddis: Starting Out with Java: From Control Structures through Objects, 6/e © 2016 Pearson Education

ANS: A

7. If the following Java statements are executed, what will be displayed?

System.out.println("The top three winners are\n");


System.out.print("Jody, the Giant\n");
System.out.print("Buffy, the Barbarian");
System.out.println("Adelle, the Alligator");
a. The top three winners are
Jody, the Giant
Buffy, the Barbarian
Adelle, the Alligator
b. The top three winners are
Jody, the Giant\nBuffy, the BarbarianAdelle, the Alligator
c. The top three winners are Jody, the Giant\nBuffy, the BarbarianAdelle, and the Albino
d. The top three winners are
Jody, the Giant
Buffy, the BarbarianAdelle, the Alligator

ANS: D

8. This is a value that is written into the code of a program.


a. literal
b. assignment statement
c. variable
d. operator

ANS: A

9. When the + operator is used with strings, it is known as the:


a. Assignment operator
b. String concatenation operator
c. Addition operator
d. Combined assignment operator

ANS: B

10. What would be printed out as a result of the following code?

System.out.println("The quick brown fox" +


"jumped over the \n"
"slow moving hen.");
a. The quick brown fox jumped over the \nslow moving hen.
b. The quick brown fox jumped over the
slow moving hen.
c. The quick brown fox
jumped over the
slow moving hen.
d. Nothing. This is an error.

ANS: D

11. Which of the following is not a rule that must be followed when naming identifiers?
Gaddis: Starting Out with Java: From Control Structures through Objects, 6/e © 2016 Pearson Education

a. The first character must be one of the letters a-z, A-Z, and underscore or a dollar sign.
b. Identifiers can contain spaces.
c. Uppercase and lowercase characters are distinct.
d. After the first character, you may use the letters a-z, A-Z, the underscore, a dollar sign, or digits 0-
9.

ANS: B

12. Which of the following cannot be used as identifiers in Java?


a. Variable names
b. Class names
c. Key words
d. All of the above
e. None of the above

ANS: C

13. In Java, it is standard practice to capitalize the first letter of:


a. Class names
b. Variable names
c. Key words
d. Literals

ANS: A

14. Which of the following is not a primitive data type?


a. short
b. long
c. float
d. String

ANS: D

15. Which of the following is valid?


a. float y;
y = 54.9;

b. float y;
double z;
z = 934.21;
y = z;

c. float w;
w = 1.0f;

d. float v;
v = 1.0;

ANS: C

16. The boolean data type may contain values in the following range of values
a. true or false
Gaddis: Starting Out with Java: From Control Structures through Objects, 6/e © 2016 Pearson Education

b. -128 to + 127
c. - 2,147,483,648 to +2,147,483,647
d. - 32,768 to +32,767

ANS: A

17. Character literals are enclosed in ; string literals are enclosed in .


a. single quotes; single quotes
b. double quotes; double quotes
c. single quotes; double quotes
d. double quotes; single quotes

ANS: C

18. What is the result of the following expression?

10 + 5 * 3 - 20

a. -5
b. 5
c. 25
d. -50

ANS: B

19. What is the result of the following expression?

25 / 4 + 4 * 10 % 3

a. 19
b. 5.25
c. 3
d. 7

ANS: D

20. What will be displayed as a result of executing the following code?

int x = 5, y = 20;
x += 32;
y /= 4;
System.out.println("x = " + x + ", y = " + y);

a. x = 32, y = 4
b. x = 9, y = 52
c. x = 37, y = 5
d. x = 160, y = 80

ANS: C

21. What will be the value of z as a result of executing the following code?
Gaddis: Starting Out with Java: From Control Structures through Objects, 6/e © 2016 Pearson Education

int x = 5, y = 28;
float z;
z = (float) (y / x);

a. 5.60
b. 5.6
c. 3.0
d. 5.0

ANS: D

22. What will be the displayed when the following code is executed?

final int x = 22, y = 4;


y += x;
System.out.println("x = " + x +
", y = " + y);

a. x = 22, y = 4
b. x = 22, y = 26
c. x = 22, y = 88
d. Nothing, this is an error

ANS: D

23. In the following Java statement what value is stored in the variable name?

String name = "John Doe";

a. John Doe
b. The memory address where "John Doe" is located
c. name
d. The memory address where name is located

ANS: B

24. What will be displayed as a result of executing the following code?

int x = 6;
String msg = "I am enjoying this class.";
String msg1 = msg.toUpperCase();
String msg2 = msg.toLowerCase();
char ltr = msg.charAt(x);
int strSize = msg.length();
System.out.println(msg);
System.out.println(msg1);
System.out.println(msg2);
System.out.println("Character at index x = " +
ltr);
System.out.println("msg has " + strSize +
"characters.");

a. I am enjoying this class.


I AM ENJOYING THIS CLASS.
Gaddis: Starting Out with Java: From Control Structures through Objects, 6/e © 2016 Pearson Education

i am enjoying this class.


Character at index x = e
msg has 24 characters.

b. I am enjoying this class.


I AM ENJOYING THIS CLASS.
i am enjoying this class.
Character at index x = e
msg has 25 characters.

c. I am enjoying this class.


I AM ENJOYING THIS CLASS.
i am enjoying this class.
Character at index x = n
msg has 24 characters.

d. I am enjoying this class.


I AM ENJOYING THIS CLASS.
i am enjoying this class.
Character at index x = n
msg has 25characters.

ANS: D

25. What will be displayed as a result of executing the following code?

public class test


{
public static void main(String[] args)
{
int value1 = 9;
System.out.println(value1);
int value2 = 45;
System.out.println(value2);
System.out.println(value3);
value = 16;
}
}

a. 9
45
16
b. 94516
c. 9 45 16
d. Nothing, this is an error

ANS: D

26. Which of the following is not a valid comment statement?


a. // comment 1
b. /* comment 2 */
c. */ comment 3 /*
d. /** comment 4 */
Gaddis: Starting Out with Java: From Control Structures through Objects, 6/e © 2016 Pearson Education

ANS: C

27. When saving a Java source file, save it with an extension of


a. .javac
b. .class
c. .src
d. .java

ANS: D

28. Every Java application program must have


a. a class named MAIN
b. a method named main
c. comments
d. integer variables

ANS: B

29. To print "Hello, world" on the monitor, use the following Java statement
a. SystemOutPrintln("Hello, world");
b. System.out.println{"Hello, world"}
c. System.out.println("Hello, world");
d. Print "Hello, world";

ANS: C

30. To display the output on the next line, you can use the println method or use this escape sequence in the
print method.

a. \n
b. \r
c. \t
d. \b

ANS: A

31. This is a named storage location in the computer's memory.


a. Literal
b. Constant
c. Variable
d. Operator

ANS: C

32. What would be displayed as a result of the following code?

int x = 578;
System.out.print("There are " +
x + 5 + "\n" +
"hens in the hen house.");

a. There are 583 hens in the hen house.


Gaddis: Starting Out with Java: From Control Structures through Objects, 6/e © 2016 Pearson Education

b. There are 5785 hens in the hen house.


c. There are x5\nhens in the hen house.
d. There are 5785
hens in the hen house.

ANS: D

33. Variables are classified according to their


a. value
b. data type
c. names
d. location in the program

ANS: B

34. The primitive data types only allow a(n) to hold a single value.
a. variable
b. object
c. class
d. literal

ANS: A

35. If x has been declared an int, which of the following statements is invalid?
a. x = 0;
b. x = -58932;
c. x = 1,000;
d. x = 592;

ANS: C

36. Given the declaration double r;, which of the following statements is invalid?
a. r = 326.75;
b. r = 9.4632e15;
c. r = 9.4632E15;
d. r = 2.9X106;

ANS: D

37. Variables of the boolean data type are useful for


a. working with small integers
b. evaluating true/false conditions
c. working with very large integers
d. evaluating scientific notation

ANS: B

38. What is the result of the following expression?

25 - 7 * 3 + 12 / 3
Gaddis: Starting Out with Java: From Control Structures through Objects, 6/e © 2016 Pearson Education

a. 6
b. 8
c. 10
d. 12

ANS: B

39. What is the result of the following expression?

17 % 3 * 2 - 12 + 15

a. 7 b.
8 c.
12
d. 105

ANS: A

40. What will be displayed after the following statements have been executed?

int x = 15, y = 20, z = 32;


x += 12;
y /= 6;
z -= 14;
System.out.println("x = " + x +
", y = " + y +
", z = " +z);

a. x = 27, y = 3.333, z = 18
b. x = 27, y = 2, z = 18
c. x = 27, y = 3, z = 18
d. x = 37, y = 14, z = 4

ANS: C

41. What will be the value of z after the following statements have been executed?

int x = 4, y = 33;
double z;
z = (double) (y / x);

a. 8.25
b. 4
c. 8
d. 8.0

ANS: D

42. This is a variable whose content is read only and cannot be changed during the program's execution.

a. operator
b. literal
c. named constant
Gaddis: Starting Out with Java: From Control Structures through Objects, 6/e © 2016 Pearson Education

d. reserved word

ANS: C

43. What will be displayed after the following statements have been executed?

final double x = 99.0;


x = 54.3;
System.out.println("x = " + x );

a. x = 54.3
b. x = 99
c. x = 153.3
d. Nothing, this is an error.

ANS: D

44. Which of the following is a valid Java statement?


a. String str = 'John Doe';
b. string str = "John Doe";
c. string str = 'John Doe';
d. String str = "John Doe";

ANS: D

45. What will be displayed as a result of executing the following code?

int x = 8;
String msg = "I am enjoying java.";
String msg1 = msg.toUpperCase();
String msg2 = msg.toLowerCase();
char ltr = msg.charAt(x);
int strSize = msg.length();
System.out.println(msg);
System.out.println(msg1);
System.out.println(msg2);
System.out.println("Character at index x = " +
ltr);
System.out.println("msg has " + strSize +
" characters.");

a. I am enjoying java.
I AM ENJOYING JAVA.
i am enjoying java.
Character at index x = j
msg has 20 characters.

b. I am enjoying java.
I AM ENJOYING JAVA.
i am enjoying java.
Character at index x = o
msg has 20 characters.

c. I am enjoying java.
Gaddis: Starting Out with Java: From Control Structures through Objects, 6/e © 2016 Pearson Education

I AM ENJOYING JAVA.
i am enjoying java.
Character at index x = o
msg has 19 characters.

d. I am enjoying java.
I AM ENJOYING JAVA.
i am enjoying java.
Character at index x = y
msg has 19 characters.

ANS: C

46. Which of the following does not describe a valid comment in Java?
a. Single line comments, two forward slashes - //
b. Multi-line comments, start with /* and end with */
c. Multi-line comments, start with */ and end with /*
d. Documentation comments, any comments starting with /** and ending with */

ANS: C

47. Which of the following statements correctly creates a Scanner object for keyboard input?

a. Scanner kbd = new Scanner(System.keyboard);

b. Scanner keyboard(System.in);

c. Scanner keyboard = new Scanner(System.in);

d. Keyboard scanner = new Keyboard(System.in);

ANS: C

48. Which Scanner class method reads an int?

a. readInt() c. getInt()
b. nextInt() d. read_int()

ANS: B

49. Which Scanner class method reads a String?

a. readString() c. getString()
b. nextString() d. nextLine()

ANS: D

50. Which one of the following methods would you use to convert a string to a double?

a. Byte.ParseByte c. Integer.ParseInt
b. Long.ParseLong d. Double.ParseDouble
Gaddis: Starting Out with Java: From Control Structures through Objects, 6/e © 2016 Pearson Education

ANS: D

TRUE/FALSE

1. A Java program will not compile unless it contains the correct line numbers.

ANS: F

2. All Java statements end with semicolons.

ANS: F

3. Java is a case-insensitive language.

ANS: F

4. Although the dollar sign is a legal identifier character, you should not use it because it is normally used for
special purposes.

ANS: T

5. Assuming that pay has been declared a double, the following statement is valid.
pay = 2,583.44;

ANS: F

6. Named constants are initialized with a value, that value cannot be changed during the execution of the program.

ANS: T

7. A variable's scope is the part of the program that has access to the variable.

ANS: T

8. In Java the variable named total is the same as the variable named Total.

ANS: F

9. Class names and key words are examples of variables.

ANS: F

10. Both character literals and string literals can be assigned to a char variable.

ANS: F

11. If the compiler encounters a statement that uses a variable before the variable is declared, an error will result.

ANS: T

12. Programming style includes techniques for consistently putting spaces and indentation in a program so visual
cues are created.

ANS: T
Other documents randomly have
different content
und für den herzenseinigenden, treuegelobenden Friedenstrunk
aufsetzen lassen.
Beim dritten Gange erhob sich Graf Oswald und hieß – noch nicht
den vor ihm stehenden Prachtpokal, sondern einen bescheideneren
Becher in der Hand – seine Gäste mit beredten und warmen Worten
willkommen, ohne jedoch die Veranlassung zu ihrem Hiersein zu
berühren oder auch nur anzudeuten, und schloß mit dem Wunsche,
daß sie ihm recht oft Gelegenheit geben möchten, sie als liebe Gäste
an seinem Tische begrüßen zu können.
Graf Wilhelm von Rappoltstein dankte in Aller Namen ihm und der
Gräfin Margarethe für ihre Gastfreundschaft und machte in launiger
Weise darauf aufmerksam, daß sie beide, er und Oswald, so nahe
Nachbarn wären, daß sie sich gegenseitig in die Fenster sehen
könnten, was von den anderen Rappoltstein'schen und den Ottrotter
Schlössern nicht möglich wäre. Und sintemal es von Hohrappoltstein
nach Hohkönigsburg genau so weit wäre wie von Hohkönigsburg
nach Hohrappoltstein, so hoffte er, daß die verehrte Familie
Thierstein auch recht bald einmal über seine Brücke reiten würde,
was ihm Oswald gern versprach.
Nicht lange darauf schien dem Grafen Oswald der rechte
Augenblick gekommen, seinem bevorzugten Gaste hier eine überaus
freudige Überraschung zu bereiten, deren sich dieser wahrlich heute
nicht versah.
Er ging aus dem Saale hinaus und kam wieder zurück, in den hoch
erhobenen Händen Burkhards Eule tragend.
Burkhard war sprachlos, als er sie erblickte. Sein Gesicht verklärte
sich in einen Freudenschimmer, und seine Augen strahlten und
glänzten, als wollten Thränen daraus hervorquellen.
Oswald schritt um den Tisch herum auf ihn zu und sprach: »Ich
habe Euch die Eule vom Haupte gestoßen, Herr Burkhard, ich setze
sie Euch jetzt wieder auf. Seid gekrönt mit Eurem ehrwürdigen
Erbkleinod und tragt es noch recht oft bei frohen Gelagen im Kreise
Eurer Freunde!«
Burkhard, die Eule auf dem Kopfe, erhob sich und schüttelte,
vergeblich nach Worten des Dankes suchend, dem Grafen beide
Hände.
Der ergötzliche und unter den obwaltenden Umständen
bedeutsame Vorgang rief lauten Jubel hervor, denn Alle wußten, eine
größere Freude als die Wiedererlangung seiner Eule hätte dem über
ihren Verlust Untröstlichen nicht widerfahren können.
Burkhard stand noch immer aufrecht, und als sich der Tumult am
Tische gelegt hatte, hub er an zu sprechen: »Ich weiß nicht, Graf
Oswald, wie ich Euch danken soll, daß Ihr mir wiedergebt, was ich
so schmerzlich vermißt habe. Erinnert Euch, was ich sagte, als ich
mit der Eule auf dem Kopfe im Rathskeller zu Rappoltsweiler
erschien. Ich sagte, daß sie ihrem Träger die Macht und das Recht
verliehe, die Wahrheit zu erkunden und zu verkünden und frank und
frei auszusprechen, was er denkt und fühlt. Laßt mich das auch
heute thun. Aber nicht wieder drohen will ich Euch, nicht mit Euch
streiten, denn ich habe Euch Burgfrieden gelobt und bin Euch Dank
schuldig. Euer Gefangener war ich, Euer Gast bin ich, und werden
möchte ich noch etwas Anderes. Wundert Euch nicht über den
raschen Wandel meiner Gesinnung; das kommt Einem an in der
Nacht, man weiß nicht wie. Ich will Euch die Wahrheit sagen, denn
mit der Eule auf dem Kopfe kann ich nicht heucheln und lügen.
Nichts hält mich ab, in diesen Mauern und in dieser Gesellschaft
offen und ehrlich zu bekennen, daß ich von einem bösen Wahn
befallen war. Er ist für immer entschwunden, wie vom Winde
verweht, der um diese Höhe braust und Nebel und Wolken
verscheucht. Ihr wünschtet mir vorhin, daß ich diesen alten Hut
noch recht oft im Kreise meiner Freunde tragen möchte. In einem
solchen Kreise befinde ich mich hier und will Euch künden, was in
diesem Augenblicke mein Herz bewegt. Es ist der Wunsch, Euer
Freund zu werden, wenn Ihr mich dessen werth haltet und auch der
meinige werden wollt. Hier meine Hand! nehmt Ihr sie an, Graf
Oswald?«
»Und hier die meine!« rief Oswald aufstehend und in Burkhards
Rechte schlagend.
»Darf ich als Dritter auch die meinige dazu legen?« fragte, sich
erhebend, Wilhelm von Thierstein.
»Sie ist mir willkommen, Graf Wilhelm!« erwiederte Burkhard und
reichte auch ihm die Hand über den Tisch hinüber.
Es war ein fast feierliches Ereigniß, das Allen ans Herz griff, die
seine Zeugen waren, und ringsum an der Tafel ward eine Stille, die
aber nichts Beklemmendes hatte, sondern sich wie eine segensvolle
Weihe der Stunde auf die Gemüther legte.
Burkhard nahm nun die Eule vom Haupte und blickte sich suchend
um, wo er sie lassen sollte.
Da sprach die ihm zur Rechten sitzende Gräfin Margarethe: »Wollt
Ihr mir erlauben, Herr von Rathsamhausen, Euren zaubermächtigen
Federhut einmal näher zu betrachten?«
»Sehr gern, Frau Gräfin!« erwiederte Burkhard verbindlich und
reichte ihr die Eule.
»Gebt sie dann weiter! wir kennen sie auch noch nicht,« bat eine
der Frauen.
So ging denn die Eule bei den Damen am Tische herum, und die
eine und andere machte ihre Bemerkungen über die wunderliche
Kopfbedeckung.
»Die Eule ist der Vogel der Weisheit,« sagte Gräfin Katharina,
»aber ob es wohl immer weise Worte sind, die von den Herren
gesprochen werden, wenn sie beim Weine von Haupt zu Haupte
schwebt?«
»Im Wein ist Wahrheit,« rief ihr Gräfin Elisabeth zu, »und wenn
unter dem Schutz und Schirm dieses Eulenhutes sich Weisheit und
Wahrheit vereint offenbaren, so ist er mehr werth als eine
Königskrone.«
Als der Hut an Imagina kam, setzte sie ihn sich auf ihr blondes
Köpfchen und sah mit ihrem blühenden, lachenden Antlitz unter dem
großäugigen Kauz entzückend aus.
»So!« sprach sie, »jetzt habe ich die Eule auf dem Kopfe, und nun
will ich euch Wahrheit und Weisheit zugleich verkünden. Höret mich
an! Hier an diesem Tische befinden sich zwei Herzen, die heimlich in
Liebe und Sehnsucht für einander schlagen. Das ist die Wahrheit.
Weisheit aber wäre es, wenn wir die Sehnsucht der Beiden stillten
und sie zu ihres Lebens höchstem Glück zusammengäben.« Sie
stand auf und fuhr mit lauter Stimme fort: »Lieber Schwager
Maximin von Rappoltstein, ich werbe bei Dir für den Jungherrn
Bruno von Rathsamhausen um die Hand Deiner Tochter Isabella.«
Die allgemeine Freude der Gesellschaft war weit größer als ihr
Erstaunen über diese Erklärung aus dem Munde Imagina's, die man
als eine Vielwissende in Herzensangelegenheiten kannte. Überrascht
davon waren nur Burkhard und Stephania, die nun einen hellen Blick
zufriedenen Einverständnisses mit einander wechselten.
Schmasman aber erhob sich und sprach: »Bruno und Isabella, ich
frage euch: hat Imagina die Wahrheit gesprochen?«
»Ja!« kam es laut von Bruno's und leise von Isabella's Lippen.
Schmasman sprach weiter: »Herzelande, ich frage Dich: hast Du
gegen Imagina's Weisheit etwas einzuwenden?«
»Nein, lieber Mann!«
Nun ging Schmasman zu den zwei Liebenden, legte ihre Hände in
einander und sagte: »Hier hast Du sie, und hier hast Du ihn!
Glückauf Rathsamhausen und Rappoltstein!«
Jauchzende Glückwünsche ergossen sich von allen Seiten auf die
unsagbar Beseligten. Egenolf und Leontine stürzten sich förmlich auf
das neue Brautpaar, es in die Arme zu schließen.
Auf einmal ertönten feierliche Klänge, und Alles lauschte.
Oben an der Wand des Saales war ein kleiner Altan mit einer Thür,
die in die nebenliegende Kapelle und zu den Sitzen führte, auf denen
die Familie des Schloßherren dem Gottesdienste beizuwohnen
pflegte. Zu diesem Gestühl gelangte man von der Kapelle aus auf
einer Wendeltreppe, und aus der offenen Thür dort kamen die Töne,
ein liebliches Saitenspiel, von einem sanften Blasen begleitet.
Als die noch Unsichtbaren ihr Stück beendet hatten, rief Graf
Oswald hinauf: »Wer seid ihr Spielleute? zeigt euch!«
Da erschienen oben auf dem Altan Hans Loder und Seppele von
Ottrott, die Günstlinge der Rappoltstein'schen und
Rathsamhausen'schen Familien, und hinter ihnen als Dritter der
Thierstein'sche Vertrauensmann, Ottfried Isinger, der die beiden
Anderen da hinaufgeführt hatte.
Isinger, der von Herni erfahren hatte, was im Werke war, hatte
schnell Hans Loder eingeladen, das oben im Palas stattfindende
Versöhnungsfest bei ihm in der Schmiede mitzufeiern. Loder aber
hatte durch einen äußerst glücklichen Zufall seinen Freund Seppele
mit der Laute getroffen und ihn beredet, mitzukommen, mitzutrinken
und den Herrschaften bei der Tafel ein Stücklein aufzuspielen, zu
welchem Zwecke er auch seine Trumpete mitgenommen hatte.
Die Gesellschaft unten im Saale rief und winkte den Spielleuten da
oben Beifall zu und forderte sie auf, noch eins zum Besten zu geben,
was sie, auf dem Altan stehen bleibend, auch thaten.
Nun endlich sollten die großen, schönen Pokale zur Geltung
kommen und wurden mit dem edelsten Rappoltsweiler Zahnacker
gefüllt.
Da erhob sich Schmasman von seinem Sitz und sprach: »Liebe
Freunde allzumal! ich bin der Älteste hier, darum ergreife ich das
Wort, um bei diesem duftigen Wasgenwein der Ursach zu gedenken,
die uns hier so fröhlich zusammengeführt hat. Es ist der zwischen
uns aus Herzensgrund geschlossene Friede, den wir nach altem
deutschen Brauch mit einem festlichen Trunke beglaubigen und
besiegeln wollen. Fortan wird Eintracht unter uns walten, durch alte
Bande der Freundschaft gestützt, durch neue Gelübde der Liebe
gestärkt und durch Wort und Handschlag gefestet. Kommt ein Sturm
über den Wasgau daher, so werden wir ihn Schulter an Schulter
bestehen, und Jeder von uns wird wissen, daß er Bundsbrüder und
Freunde hat, die ihn in Gefahr und Noth nimmer verlassen. Mögen
wir und unsre Lehnsleute, unsere Burgen, unsere Wälder und Felder
und Rebengelände vor allem Unheil gnädig bewahrt bleiben! Und
diesem alten, so glänzend wieder auferbauten Schlosse
Hohkönigsburg das von zwei mächtigen deutschen
Kaisergeschlechtern, den Hohenstaufen und den Habsburgern, nach
einander beherrscht und behütet ist, dem wünsche ich eine lang
dauernde, ruhmreiche Zukunft und seinen Lehnsträgern ein
kräftiges, fröhliches Blühen und Gedeihen bis in die spätesten
kommenden Zeiten. Fest wie die Mauern und Thürme der
Hohkönigsburg stehe das Glück der Thiersteiner, weit sichtbar im
Lande wie das flatternde Banner auf dem Bergfried mit den sieben
rothen Rauten im goldenen Felde, und unantastbar wie ihr
ehrenblanker Wappenschild beschirme sie der dreimal gesegnete
Friede! Der stolzen, herrlichen Hohkönigsburg weihe ich diesen
Trunk!«
An der ganzen Tafelrunde klangen die Pokale zusammen, Hände
schüttelten sich, Heil- und Segensrufe ertönten, und oben auf dem
Altan schmetterte der Pfeiferkönig Hans Loder mit seiner Trumpete
darein, und Seppele von Ottrott ließ dazu die Saiten seiner Laute
schwirren und rauschen, während Isinger, seine Kappe schwenkend,
wie besessen schrie: »Thierstein, Rappoltstein, Rathsamhausen!
Rathsamhausen, Thierstein, Rappoltstein!«
Die Strahlen der Abendsonne vergoldeten die ragenden Zinnen der
Hohkönigsburg und bis zum Rheine hin leuchtend thronte sie auf
ihrem mächtigen Berge über dem friedlich ruhenden Wasgau.
Inhalt der Grote'schen Sammlung

von Werken zeitgenössischer Schriftsteller


Otto Glagau, Fritz Reuter und seine Dichtungen. Neue
umgearbeitete Auflage mit Illustrationen. geb. 4 M.

Julius Wolff, Till Eulenspiegel redivivus. Ein Schelmenlied.


Mit Illustrationen. Vierundzwanzigstes Tausend. geb. 4 M. 80 Pf.

Julius Wolff, Der Rattenfänger von Hameln. Eine


Aventiure. Mit Illustrationen von P. Grot Johann. Siebzigstes
Tausend. geb. 4 M. 80 Pf.

Wilhelm Raabe, Horacker. Mit Illustrationen von P. Grot


Johann. Siebente Auflage. geb. 4 M.

Friedrich Bodenstedt, Theater. (Kaiser Paul. –


Wandlungen.) geb. 4 M.

Anastasius Grün, In der Veranda. Eine dichterische


Nachlese. Dritte Auflage. geb. 4 M.

Julius Wolff, Schauspiele. Zweite Auflage. geb. 4 M. 80 Pf.


Carl Siebel's Dichtungen. Gesammelt von seinen
Freunden. Herausgegeben von Emil Rittershaus. geb. 4 M.

Wilhelm Raabe, Die Chronik der Sperlingsgasse. Neue


Ausgabe, mit Illustrationen von Ernst Bosch. Vierundzwanzigste
Auflage. geb. 4 M.

Julius Wolff, Der wilde Jäger. Eine Waidmannsmär.


Neunundachtzigstes Tausend. geb. 4 M. 80 Pf.

Hermann Lingg, Schlußsteine. Neue Gedichte. geb. 4 M.


Julius Wolff, Tannhäuser. Ein Minnesang. Mit Porträtradirung.
Zwei Bände. Neununddreißigstes Tausend. geb. 9 M. 60 Pf.

Julius Wolff, Singuf. Rattenfängerlieder. Sechzehntes Tausend.


geb. 4 M. 80 Pf.

Julius Grosse, Gedichte. Mit einer Zuschrift von Paul Heyse.


geb. 4 M.

Julius Wolff, Der Sülfmeister. Eine alte Stadtgeschichte. Zwei


Bände. Neununddreißigstes Tausend. geb. 9 M. 60 Pf.

A. von der Elbe, Der Bürgermeisterthurm. Ein Roman aus


dem 15. Jahrhundert. Zweite Auflage. geb. 7 M.

Julius Wolff, Der Raubgraf. Eine Geschichte aus dem


Harzgau. Siebenundvierzigstes Tausend. geb. 7 M.

Julius Grosse, Der getreue Eckart. Roman in zwölf Büchern.


Zwei Bände. Zweite Auflage. geb. 9 M. 60 Pf.

Theodor Fontane, Unterm Birnbaum. Eine Novelle. geb. 4


M.

Wilhelm Raabe, Unruhige Gäste. Ein Roman aus dem


Saeculum. Dritte Auflage. geb. 4 M.

Julius Wolff, Lurlei. Eine Romanze. Fünfundfünfzigstes


Tausend. geb. 6 M.

Wilhelm Raabe, Im alten Eisen. Eine Erzählung. Dritte


Auflage. geb. 4 M.

Arthur Drews, Irold. Eine Rhapsodie in sechs Gesängen. geb.


4 M.

Julius Wolff, Das Recht der Hagestolze. Eine


Heirathsgeschichte aus dem Neckarthal. Vierunddreißigstes
Tausend. geb. 7 M.

Wilhelm Jordan, Zwei Wiegen. Ein Roman. Neue Ausgabe.


Fünftes Tausend. Zwei Bände. geb. 7 M.

Guido List, Carnuntum. Historischer Roman aus dem vierten


Jahrhundert n. Chr. Zwei Bände. geb. 8 M.

Julius Wolff, Die Pappenheimer. Ein Reiterlied.


Dreiundzwanzigstes Tausend. geb. 6 M.

Ernst Eckstein, Murillo. Dritte Auflage. geb. 3 M.


Ernst Eckstein, Hertha. Roman. Dritte Auflage. geb. 8 M.
A. von der Elbe, In seinen Fußstapfen. Roman aus
Lüneburgs Vorzeit. geb. 7 M.

Großfürst Constantin, Gedichte. In freier Nachbildung


von Julius Grosse. geb. 4 M.

Julius Wolff, Renata. Eine Dichtung. Achtundzwanzigstes


Tausend. geb. 6 M.

Anton Springer, Aus meinem Leben. Mit zwei Bildnissen.


geb. 7 M.

Gräfin von Haugwitz, Eines Kaisers Traum. Dichtung.


geb. 4 M.

Anton Ohorn, Der Ordensmeister. Eine deutsche Minne- und


Heldenmär. geb. 4 M.

Hermann Lüders, Unter drei Kaisern. Malerfahrten. Mit


221 Illustr. vom Verfasser. Zwei Bände. geb. 9 M. 60 Pf.

Ernst Eckstein, Themis. Roman. Zwei Bände. geb. 9 M. 60 Pf.


Julius Wolff, Der fliegende Holländer. Eine Seemannssage.
Neunundzwanzigstes Tausend. geb. 5 M.

Ernst Julius Hähnel's Litterarische Reliquien.


Herausgegeben von Julius Grosse. geb. 6 M.

Ernst Eckstein, Der Mönch vom Aventin. Novelle. Zweite


Auflage. geb. 4 M.

Ludwig Ganghofer, Doppelte Wahrheit. Neue Novellen.


geb. 5 M.

Maria Janitschek, Atlas. Novelle. geb. 2 M.


Ernst Eckstein, Familie Hartwig. Roman. Zweite Auflage.
geb. 8 M.

Maria Janitschek, Pfadsucher. Vier Novellen. geb. 4 M.


Julius Wolff, Das schwarze Weib. Roman aus dem
Bauernkriege. Einundzwanzigstes Tausend. geb. 7 M.

Ernst Eckstein, Kyparissos. Roman. Zweite Auflage. geb. 8


M.

Julius Wolff, Aus dem Felde. Nebst einem Anhang: Im


neuen Reich. Dritte vermehrte Auflage. geb. 2 M. 50 Pf.

Konrad Telmann, Bohémiens. Roman. geb. 6 M.


Ola Hansson, Der Schutzengel. Roman. geb. 4 M.
Ernst Eckstein, Roderich Löhr. Roman. Zweite Auflage. geb.
8 M.

Julius Wolff, Assalide. Dichtung aus der Zeit der


provençalischen Troubadours. Fünfzehntes Tausend. geb. 6 M.

Ernst Eckstein, Adotja. Novellen. geb. 6 M. 50 Pf.


Ernst Eckstein, Die Hexe von Glaustädt. Roman. Zweite
Auflage. geb. 8 M.

Gustav Frenssen, Die drei Getreuen. Roman. Dreizehntes


Tausend. geb. 5 M.

Julius Wolff, Der Landsknecht von Cochem. Ein Sang von


der Mosel. Siebzehntes Tausend. geb. 6 M.

Freiherr von Schlicht, Die feindlichen Waffen. Humor.


Roman. geb. 4 M. 50 Pf.

Heinrich Steinhausen, Heinr. Zwiesels Ängste. Eine


Spießhagener Geschichte. geb. 5 M.

Ludwig Ganghofer, Das Schweigen im Walde. Roman in


zwei Bänden. Dreizehntes Tausend. geb. in 1 Band 8 M., in 2
Bände 8 M. 50 Pf.

Julius Wolff, Der fahrende Schüler. Eine Dichtung.


Vierzehntes Tausend. geb. 6 M.

Gustaf Dickhuth, Wie der Leutnant Hubertus von


Barnim sich verloben wollte und Anderes. Novellen. geb. 5
M.

Gustav Frenssen, Die Sandgräfin. Roman. Fünftes


Tausend. geb. 5 M.

Robert Wendlandt, Der Wendenhof. Roman. geb. 4 M. 50


Pf.

Hermann Heiberg, Reiche Leute von einst. Roman. geb.


4 M.

Gustav Frenssen, Jörn Uhl. Roman. Achtunddreißigstes


Tausend. geb. 5 M.
Victor Blüthgen, Gedichte. Neue vermehrte Ausgabe. geb. 4
M.

Wilhelm Raabe, Nach dem großen Kriege. Eine Geschichte


in zwölf Briefen. Zweite Auflage. geb. 3 M. 50 Pf.

Hans Hopfen, Gotthard Lingens Fahrt nach dem Glück.


Roman. geb. 5 M.

Julius Wolf, Die Hohkönigsburg. Eine Fehdegeschichte aus


dem Wasgau. geb. 6 M.
Weitere Anmerkungen zur Transkription
Offensichtliche Fehler wurden stillschweigend korrigiert.
Korrekturen:
S. 183: schüttelte → schüttelte den Kopf
Bruno schüttelte den Kopf und sprach
*** END OF THE PROJECT GUTENBERG EBOOK DIE
HOHKÖNIGSBURG: EINE FEHDEGESCHICHTE AUS DEM WASGAU
***

Updated editions will replace the previous one—the old editions will
be renamed.

Creating the works from print editions not protected by U.S.


copyright law means that no one owns a United States copyright in
these works, so the Foundation (and you!) can copy and distribute it
in the United States without permission and without paying
copyright royalties. Special rules, set forth in the General Terms of
Use part of this license, apply to copying and distributing Project
Gutenberg™ electronic works to protect the PROJECT GUTENBERG™
concept and trademark. Project Gutenberg is a registered trademark,
and may not be used if you charge for an eBook, except by following
the terms of the trademark license, including paying royalties for use
of the Project Gutenberg trademark. If you do not charge anything
for copies of this eBook, complying with the trademark license is
very easy. You may use this eBook for nearly any purpose such as
creation of derivative works, reports, performances and research.
Project Gutenberg eBooks may be modified and printed and given
away—you may do practically ANYTHING in the United States with
eBooks not protected by U.S. copyright law. Redistribution is subject
to the trademark license, especially commercial redistribution.

START: FULL LICENSE


THE FULL PROJECT GUTENBERG LICENSE
PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK

To protect the Project Gutenberg™ mission of promoting the free


distribution of electronic works, by using or distributing this work (or
any other work associated in any way with the phrase “Project
Gutenberg”), you agree to comply with all the terms of the Full
Project Gutenberg™ License available with this file or online at
www.gutenberg.org/license.

Section 1. General Terms of Use and


Redistributing Project Gutenberg™
electronic works
1.A. By reading or using any part of this Project Gutenberg™
electronic work, you indicate that you have read, understand, agree
to and accept all the terms of this license and intellectual property
(trademark/copyright) agreement. If you do not agree to abide by all
the terms of this agreement, you must cease using and return or
destroy all copies of Project Gutenberg™ electronic works in your
possession. If you paid a fee for obtaining a copy of or access to a
Project Gutenberg™ electronic work and you do not agree to be
bound by the terms of this agreement, you may obtain a refund
from the person or entity to whom you paid the fee as set forth in
paragraph 1.E.8.

1.B. “Project Gutenberg” is a registered trademark. It may only be


used on or associated in any way with an electronic work by people
who agree to be bound by the terms of this agreement. There are a
few things that you can do with most Project Gutenberg™ electronic
works even without complying with the full terms of this agreement.
See paragraph 1.C below. There are a lot of things you can do with
Project Gutenberg™ electronic works if you follow the terms of this
agreement and help preserve free future access to Project
Gutenberg™ electronic works. See paragraph 1.E below.
1.C. The Project Gutenberg Literary Archive Foundation (“the
Foundation” or PGLAF), owns a compilation copyright in the
collection of Project Gutenberg™ electronic works. Nearly all the
individual works in the collection are in the public domain in the
United States. If an individual work is unprotected by copyright law
in the United States and you are located in the United States, we do
not claim a right to prevent you from copying, distributing,
performing, displaying or creating derivative works based on the
work as long as all references to Project Gutenberg are removed. Of
course, we hope that you will support the Project Gutenberg™
mission of promoting free access to electronic works by freely
sharing Project Gutenberg™ works in compliance with the terms of
this agreement for keeping the Project Gutenberg™ name associated
with the work. You can easily comply with the terms of this
agreement by keeping this work in the same format with its attached
full Project Gutenberg™ License when you share it without charge
with others.

1.D. The copyright laws of the place where you are located also
govern what you can do with this work. Copyright laws in most
countries are in a constant state of change. If you are outside the
United States, check the laws of your country in addition to the
terms of this agreement before downloading, copying, displaying,
performing, distributing or creating derivative works based on this
work or any other Project Gutenberg™ work. The Foundation makes
no representations concerning the copyright status of any work in
any country other than the United States.

1.E. Unless you have removed all references to Project Gutenberg:

1.E.1. The following sentence, with active links to, or other


immediate access to, the full Project Gutenberg™ License must
appear prominently whenever any copy of a Project Gutenberg™
work (any work on which the phrase “Project Gutenberg” appears,
or with which the phrase “Project Gutenberg” is associated) is
accessed, displayed, performed, viewed, copied or distributed:
This eBook is for the use of anyone anywhere in the United
States and most other parts of the world at no cost and with
almost no restrictions whatsoever. You may copy it, give it away
or re-use it under the terms of the Project Gutenberg License
included with this eBook or online at www.gutenberg.org. If you
are not located in the United States, you will have to check the
laws of the country where you are located before using this
eBook.

1.E.2. If an individual Project Gutenberg™ electronic work is derived


from texts not protected by U.S. copyright law (does not contain a
notice indicating that it is posted with permission of the copyright
holder), the work can be copied and distributed to anyone in the
United States without paying any fees or charges. If you are
redistributing or providing access to a work with the phrase “Project
Gutenberg” associated with or appearing on the work, you must
comply either with the requirements of paragraphs 1.E.1 through
1.E.7 or obtain permission for the use of the work and the Project
Gutenberg™ trademark as set forth in paragraphs 1.E.8 or 1.E.9.

1.E.3. If an individual Project Gutenberg™ electronic work is posted


with the permission of the copyright holder, your use and distribution
must comply with both paragraphs 1.E.1 through 1.E.7 and any
additional terms imposed by the copyright holder. Additional terms
will be linked to the Project Gutenberg™ License for all works posted
with the permission of the copyright holder found at the beginning
of this work.

1.E.4. Do not unlink or detach or remove the full Project


Gutenberg™ License terms from this work, or any files containing a
part of this work or any other work associated with Project
Gutenberg™.

1.E.5. Do not copy, display, perform, distribute or redistribute this


electronic work, or any part of this electronic work, without
prominently displaying the sentence set forth in paragraph 1.E.1
with active links or immediate access to the full terms of the Project
Gutenberg™ License.

1.E.6. You may convert to and distribute this work in any binary,
compressed, marked up, nonproprietary or proprietary form,
including any word processing or hypertext form. However, if you
provide access to or distribute copies of a Project Gutenberg™ work
in a format other than “Plain Vanilla ASCII” or other format used in
the official version posted on the official Project Gutenberg™ website
(www.gutenberg.org), you must, at no additional cost, fee or
expense to the user, provide a copy, a means of exporting a copy, or
a means of obtaining a copy upon request, of the work in its original
“Plain Vanilla ASCII” or other form. Any alternate format must
include the full Project Gutenberg™ License as specified in
paragraph 1.E.1.

1.E.7. Do not charge a fee for access to, viewing, displaying,


performing, copying or distributing any Project Gutenberg™ works
unless you comply with paragraph 1.E.8 or 1.E.9.

1.E.8. You may charge a reasonable fee for copies of or providing


access to or distributing Project Gutenberg™ electronic works
provided that:

• You pay a royalty fee of 20% of the gross profits you derive
from the use of Project Gutenberg™ works calculated using the
method you already use to calculate your applicable taxes. The
fee is owed to the owner of the Project Gutenberg™ trademark,
but he has agreed to donate royalties under this paragraph to
the Project Gutenberg Literary Archive Foundation. Royalty
payments must be paid within 60 days following each date on
which you prepare (or are legally required to prepare) your
periodic tax returns. Royalty payments should be clearly marked
as such and sent to the Project Gutenberg Literary Archive
Foundation at the address specified in Section 4, “Information
about donations to the Project Gutenberg Literary Archive
Foundation.”

• You provide a full refund of any money paid by a user who


notifies you in writing (or by e-mail) within 30 days of receipt
that s/he does not agree to the terms of the full Project
Gutenberg™ License. You must require such a user to return or
destroy all copies of the works possessed in a physical medium
and discontinue all use of and all access to other copies of
Project Gutenberg™ works.

• You provide, in accordance with paragraph 1.F.3, a full refund of


any money paid for a work or a replacement copy, if a defect in
the electronic work is discovered and reported to you within 90
days of receipt of the work.

• You comply with all other terms of this agreement for free
distribution of Project Gutenberg™ works.

1.E.9. If you wish to charge a fee or distribute a Project Gutenberg™


electronic work or group of works on different terms than are set
forth in this agreement, you must obtain permission in writing from
the Project Gutenberg Literary Archive Foundation, the manager of
the Project Gutenberg™ trademark. Contact the Foundation as set
forth in Section 3 below.

1.F.

1.F.1. Project Gutenberg volunteers and employees expend


considerable effort to identify, do copyright research on, transcribe
and proofread works not protected by U.S. copyright law in creating
the Project Gutenberg™ collection. Despite these efforts, Project
Gutenberg™ electronic works, and the medium on which they may
be stored, may contain “Defects,” such as, but not limited to,
incomplete, inaccurate or corrupt data, transcription errors, a
copyright or other intellectual property infringement, a defective or
damaged disk or other medium, a computer virus, or computer
codes that damage or cannot be read by your equipment.

1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for


the “Right of Replacement or Refund” described in paragraph 1.F.3,
the Project Gutenberg Literary Archive Foundation, the owner of the
Project Gutenberg™ trademark, and any other party distributing a
Project Gutenberg™ electronic work under this agreement, disclaim
all liability to you for damages, costs and expenses, including legal
fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR
NEGLIGENCE, STRICT LIABILITY, BREACH OF WARRANTY OR
BREACH OF CONTRACT EXCEPT THOSE PROVIDED IN PARAGRAPH
1.F.3. YOU AGREE THAT THE FOUNDATION, THE TRADEMARK
OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL
NOT BE LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT,
CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES EVEN IF
YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGE.

1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you


discover a defect in this electronic work within 90 days of receiving
it, you can receive a refund of the money (if any) you paid for it by
sending a written explanation to the person you received the work
from. If you received the work on a physical medium, you must
return the medium with your written explanation. The person or
entity that provided you with the defective work may elect to provide
a replacement copy in lieu of a refund. If you received the work
electronically, the person or entity providing it to you may choose to
give you a second opportunity to receive the work electronically in
lieu of a refund. If the second copy is also defective, you may
demand a refund in writing without further opportunities to fix the
problem.

1.F.4. Except for the limited right of replacement or refund set forth
in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO
OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED,

You might also like