0% found this document useful (0 votes)
4 views54 pages

Test Bank For Introduction To Java Programming Comprehensive Version 9th Edition Liang 9780132936521 Download PDF

The document is a test bank for the book 'Introduction to Java Programming, Comprehensive Version 9th Edition' by Liang, which includes links to download various test banks and solution manuals for related programming textbooks. It also contains sample exam questions and programming assignments for a course (CSCI 1301) that covers Java programming concepts. Additionally, there are multiple-choice questions and programming tasks designed to assess students' understanding of object-oriented programming and GUI applications.

Uploaded by

qmmruef3428
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views54 pages

Test Bank For Introduction To Java Programming Comprehensive Version 9th Edition Liang 9780132936521 Download PDF

The document is a test bank for the book 'Introduction to Java Programming, Comprehensive Version 9th Edition' by Liang, which includes links to download various test banks and solution manuals for related programming textbooks. It also contains sample exam questions and programming assignments for a course (CSCI 1301) that covers Java programming concepts. Additionally, there are multiple-choice questions and programming tasks designed to assess students' understanding of object-oriented programming and GUI applications.

Uploaded by

qmmruef3428
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 54

Test Bank for Introduction to Java Programming

Comprehensive Version 9th Edition Liang


9780132936521 download pdf

http://testbankpack.com/download/test-bank-for-introduction-to-java-
programming-comprehensive-version-9th-edition-liang-9780132936521/

Visit testbankpack.com to explore and download the complete


collection of test banks or solution manuals!
Here are some suggested products you might be interested in.
Click the link to download

Test Bank for Introduction to Java Programming


Comprehensive Version 10th Edition Liang 0133761312
9780133761313
https://testbankpack.com/download/test-bank-for-introduction-to-java-
programming-comprehensive-version-10th-edition-
liang-0133761312-9780133761313/

Solution Manual for Introduction to Java Programming


Comprehensive Version 10th Edition Liang 0133761312
9780133761313
https://testbankpack.com/download/solution-manual-for-introduction-to-
java-programming-comprehensive-version-10th-edition-
liang-0133761312-9780133761313/

Test Bank for Introduction to Java Programming Brief


Version 10th Edition Liang 0133592200 9780133592207

https://testbankpack.com/download/test-bank-for-introduction-to-java-
programming-brief-version-10th-edition-liang-0133592200-9780133592207/

Test Bank for Introduction to Programming Using Visual


Basic 2012 9th Edition Schneider 0133378500 9780133378504

https://testbankpack.com/download/test-bank-for-introduction-to-
programming-using-visual-basic-2012-9th-edition-
schneider-0133378500-9780133378504/
Test Bank for Java Programming 8th Edition Farrell
1285856910 9781285856919

https://testbankpack.com/download/test-bank-for-java-programming-8th-
edition-farrell-1285856910-9781285856919/

Test Bank for Java Programming 7th Edition Farrell


1285081951 9781285081953

https://testbankpack.com/download/test-bank-for-java-programming-7th-
edition-farrell-1285081951-9781285081953/

Test Bank for Introduction to Programming Using Python 1st


Edition Schneider 0134058224 9780134058221

https://testbankpack.com/download/test-bank-for-introduction-to-
programming-using-python-1st-edition-
schneider-0134058224-9780134058221/

Test Bank for Introduction to Programming with C++ 4th


Edition Diane Zak 0619217111 9780619217112

https://testbankpack.com/download/test-bank-for-introduction-to-
programming-with-c-4th-edition-diane-zak-0619217111-9780619217112/

Test Bank for Introduction to Programming Using Visual


Basic 10th Edition Schneider 0134542789 9780134542782

https://testbankpack.com/download/test-bank-for-introduction-to-
programming-using-visual-basic-10th-edition-
schneider-0134542789-9780134542782/
Test Bank for Introduction to Java
Programming Comprehensive Version 9th
Edition Liang 9780132936521

Full link download


Test Bank:

https://testbankpack.com/p/test-bank-for-introduction-to-java-
programming-comprehensive-version-9th-edition-liang-9780132936521/
Name: CSCI 1301 Introduction to Programming
Covers Chapters 1-3 Armstrong Atlantic State University
50 mins Instructor: Dr. Y. Daniel Liang

I pledge by honor that I will not discuss this exam with anyone until my
instructor reviews the exam in the class.

Signed by Date

Part I. (10 pts) Show the output of the following code: (write the output
next to each println statement if the println statement is executed in
the program).

public class Test {


public static void main(String[] args) {

System.out.println((int)(Math.random()));

System.out.println(Math.pow(2, 3));

System.out.println(34 % 7);

System.out.println(3 + 4 * 2 > 2 * 9);

int number = 4;

if (number % 3 == 0)
System.out.println(3 * number);

System.out.println(4 * number);

int x = 943;
System.out.println(x / 100);

System.out.println(x % 100);

System.out.println(x + " is " + ((x % 2 == 0) ? "even" : "odd"));

int y = -1;
y++;
System.out.println(y);
}
}

Part II:

Write a program that prompts the user to enter the


1. (10 pts)
exchange rate from currency US dollars to Chinese RMB.
Prompt the user to enter 0 to convert from US dollars to
Chinese RMB and 1 vice versa. Prompt the user to enter the
amount in US dollars or Chinese RMB to convert it to

1
Chinese RMB or US dollars, respectively. Here are the
sample runs:

<Output>
Enter the exchange rate from dollars to RMB: 6.81
Enter 0 to convert dollars to RMB and 1 vice versa: 0
Enter the dollar amount: 100
$100.0 is 681.0 Yuan
<End Output>

<Output>
Enter the exchange rate from dollars to RMB: 6.81
Enter 0 to convert dollars to RMB and 1 vice versa: 1
Enter the RMB amount: 10000
10000.0 Yuan is $1468.43
<End Output>

<Output>
Enter the exchange rate from dollars to RMB: 6.81
Enter 0 to convert dollars to RMB and 1 vice versa: 5
Incorrect input
<End Output>

2
2. (10 pts) Write a program that prompts the user to enter an integer. If
the number is a multiple of 5, print HiFive. If the number is divisible
by 2 or 3, print Georgia. Here are the sample runs:

<Output>
Enter an integer: 6
Georgia
<End Output>

<Output>
Enter an integer: 15
HiFive Georgia
<End Output>
<Output>
Enter an integer: 25
HiFive
<End Output>

<Output>
Enter an integer: 1
<End Output>

3
Name:

Part III: Multiple Choice Questions: (1 pts each)


(Please circle your answers on paper first. After you
finish the test, enter your choices online to LiveLab. Log
in and click Take Instructor Assigned Quiz. Choose Quiz1.
You have 5 minutes to enter and submit the answers.)

1. The expression (int)(76.0252175 * 100) / 100 evaluates to .

a. 76
b. 76.0252175
c. 76.03
d. 76.02

#
2. What is y after the following switch statement?

int x = 0;
int y = 0;
switch (x + 1) {
case 0: y = 0;
case 1: y = 1;
default: y = -1
}

a. 2
b. 1
c. 0
d. -1

#
3. Assume x is 0. What is the output of the following statement?

if (x > 0)
System.out.print("x is greater than 0");
else if (x < 0)
System.out.print("x is less than 0");
else
System.out.print("x equals 0");

a. x is less than 0
b. x is greater than 0
c. x equals 0
d. None

4
4. Analyze the following code:

Code 1:

boolean even;

if (number % 2 == 0)
even = true;
else
even = false;

Code 2:

boolean even = (number % 2 == 0);

a. Code 2 has syntax errors.


b. Code 1 has syntax errors.
c. Both Code 1 and Code 2 have syntax errors.
d. Both Code 1 and Code 2 are correct, but Code 2 is better.

#
5. What is the output of the following switch statement?

char ch = 'a';

switch (ch) {
case 'a':
case 'A':
System.out.print(ch); break;
case 'b':
case 'B':
System.out.print(ch); break;
case 'c':
case 'C':
System.out.print(ch); break;
case 'd':
case 'D':
System.out.print(ch);
}

a. ab
b. a
c. aa
d. abc
e. abcd

5
#
6. What is x after evaluating

x = (2 > 3) ? 2 : 3;

a. 5
b. 2
c. 3
d. 4

#
7. Analyze the following code.

int x = 0;
if (x > 0);
{
System.out.println("x");
}

a. The value of variable x is always printed.


b. The symbol x is always printed twice.
c. The symbol x is always printed.
d. Nothing is printed because x > 0 is false.

#
8. To declare a constant MAX_LENGTH inside a method with value 99.98, you write

a. final double MAX_LENGTH = 99.98;


b. double MAX_LENGTH = 99.98;
c. final MAX_LENGTH = 99.98;
d. final float MAX_LENGTH = 99.98;

#
9. Which of the following is a constant, according to Java naming conventions?

a. read
b. MAX_VALUE
c. ReadInt
d. Test

#
10. What is y after the following switch statement is executed?

x = 3;
switch (x + 3) {
case 6: y = 0;
case 7: y = 1;
default: y += 1;
}

6
a. 1
b. 4
c. 3
d. 2
e. 0

#
11. Which of the following code displays the area of a circle if the radius is
positive.

a. if (radius <= 0) System.out.println(radius * radius * 3.14159);


b. if (radius != 0) System.out.println(radius * radius * 3.14159);
c. if (radius >= 0) System.out.println(radius * radius * 3.14159);
d. if (radius > 0) System.out.println(radius * radius * 3.14159);

Please double check your answer before clicking the Submit


button. Whatever submitted to LiveLab is FINAL and counted
for your grade.

Have you submitted your answer to LiveLib?

What is your score?

7
Sample Final Exam for CSCI 1302

FINAL EXAM AND COURSE OUTCOMES MATCHING


COURSE OUTCOMES
Upon successful completion of this course, students should be able to
1. understand OO concepts: encapsulation, inheritance, polymorphism, interfaces,
abstract classes
2. use Unified Modeling Language for design, analysis, and documentation
3. develop graphical user interfaces
4. develop event-driven programs
5. use file I/O and handle exceptions
6. design and implement OO programs

Here is a mapping of the final comprehensive exam against the course outcomes:

Question Matches outcomes


1 1
2 2
3 3, 4, 5
4 6, 7
5 1, 2, 3, 4, 5, 6, 7

1
Name: CSCI 1302 Introduction to Programming
Covers chs8-19 Armstrong Atlantic State University
Final Exam Instructor: Dr. Y. Daniel Liang

Please note that the university policy prohibits giving the exam score by email. If you need to know your
final exam score, come to see me during my office hours next semester.

I pledge by honor that I will not discuss the contents of this exam with
anyone.

Signed by Date

1. Design and implement classes. (10 pts)

Design a class named Person and its two subclasses named Student and
Employee. Make Faculty and Staff subclasses of Employee. A person has a
name, address, phone number, and email address. A student has a class
status (freshman, sophomore, junior, or senior). Define the status as a
constant. An employee has an office, salary, and date hired. Define a
class named MyDate that contains the fields year, month, and day. A
faculty member has office hours and a rank. A staff member has a title.
Override the toString method in each class to display the class name
and the person's name.

Draw the UML diagram for the classes. Write the code for the Student
class only.

2
2. Design and use interfaces (10 pts)

Write a class named Octagon that extends GeometricObject


and implements the Comparable and Cloneable interfaces.
Assume that all eight sides of the octagon are of equal
size. The area can be computed using the following formula:
area = (2 + 4 / 2)* side * side

Draw the UML diagram that involves Octagon,


GeometricObject, Comparable, and Cloneable.

3
3. Design and create GUI applications (10 pts)

Write a Java applet to add two numbers from text fields, and
displays the result in a non-editable text field. Enable your applet
to run standalone with a main method. A sample run of the applet is
shown in the following figure.

4
4. Text I/O (10 pts)

Write a program that will count the number of characters (excluding


control characters '\r' and '\n'), words, and lines, in a file. Words
are separated by spaces, tabs, carriage return, or line-feed
characters. The file name should be passed as a command-line argument,
as shown in the following sample run.

5
5. Multiple Choice Questions: (1 pts each)
(1. Mark your answers on the sheet. 2. Login and click Take
Instructor Assigned Quiz for QFinal. 3. Submit it online
within 5 mins. 4. Close the Internet browser.)

1. describes the state of an object.


a. data fields
b. methods
c. constructors
d. none of the above

#
2. An attribute that is shared by all objects of the class is coded
using .
a. an instance variable
b. a static variable
c. an instance method
d. a static method

#
3. If a class named Student has no constructors defined explicitly,
the following constructor is implicitly provided.

a. public Student()
b. protected Student()
c. private Student()
d. Student()

#
4. If a class named Student has a constructor Student(String name)
defined explicitly, the following constructor is implicitly provided.

a. public Student()
b. protected Student()
c. private Student()
d. Student()
e. None

#
5. Suppose the xMethod() is invoked in the following constructor in
a class, xMethod() is in the class.

public MyClass() {
xMethod();

a. a static method
b. an instance method
c. a static method or an instance method

#
6. Suppose the xMethod() is invoked from a main method in a class as
follows, xMethod() is in the class.

public static void main(String[] args) {

6
xMethod();
}

a. a static method
b. an instance method
c. a static or an instance method

#
7. What would be the result of attempting to compile and
run the following code?
public class Test {
static int x;

public static void main(String[] args){


System.out.println("Value is " + x);
}
}

a. The output "Value is 0" is printed.


b. An "illegal array declaration syntax" compiler error occurs.
c. A "possible reference before assignment" compiler error occurs.
d. A runtime error occurs, because x is not initialized.

#
8. Analyze the following code:

public class Test {


private int t;

public static void main(String[] args) {


Test test = new Test();
System.out.println(test.t);
}
}

a. The variable t is not initialized and therefore causes errors.


b. The variable t is private and therefore cannot be accessed in the
main method.
c. Since t is an instance variable, it cannot appear in the static
main method.
d. The program compiles and runs fine.

#
9. Suppose s is a string with the value "java". What will be
assigned to x if you execute the following code?

char x = s.charAt(4);

a. 'a'
b. 'v'
c. Nothing will be assigned to x, because the execution causes the
runtime error StringIndexOutofBoundsException.
d. None of the above.

#
10. What is the printout for the following code?

class Test {

7
public static void main(String[] args) {
int[] x = new int[3];
System.out.println("x[0] is "+x[0]);
}
}

a. The program has a syntax error because the size of the array
wasn't specified when declaring the array.
b. The program has a runtime error because the array elements are
not initialized.
c. The program runs fine and displays x[0] is 0.
d. None of the above.

#
11. How can you get the word "abc" in the main method from the
following call?

java Test "+" 3 "abc" 2

a. args[0]
b. args[1]
c. args[2]
d. args[3]

#
12. Which code fragment would correctly identify the number of
arguments passed via the command line to a Java application,
excluding the name of the class that is being invoked?

a. int count = args.length;


b. int count = args.length - 1;
c. int count = 0; while (args[count] != null) count ++;
d. int count=0; while (!(args[count].equals(""))) count ++;

#
13. Show the output of running the class Test in the following code
lines:

interface A {
void print();
}

class C {}

class B extends C implements A {


public void print() { }
}

class Test {
public static void main(String[] args) {
B b = new B();
if (b instanceof A)
System.out.println("b is an instance of A");
if (b instanceof C)
System.out.println("b is an instance of C");
}
}

8
a. Nothing.
b. b is an instance of A.
c. b is an instance of C.
d. b is an instance of A followed by b is an instance of C.

#
14. When you implement a method that is defined in a superclass, you
the original method.
a. overload
b. override
c. copy
d. call

#
15. What modifier should you use on a variable so that it can only be
referenced inside its defining class.
a. public
b. private
c. protected
d. Use the default modifier.

#
16. What is the output of running class C?

class A {
public A() {
System.out.println(
"The default constructor of A is invoked");
}
}

class B extends A {
public B() {
System.out.println(
"The default constructor of B is invoked");
}
}

public class C {
public static void main(String[] args) {
B b = new B();
}
}

a. none
b. "The default constructor of B is invoked"
c. "The default constructor of A is invoked" followed by "The
default constructor of B is invoked"
d. "The default constructor of A is invoked"

#
17. Analyze the following program.

class Test {

9
public static void main(String[] args) {
try {
String s = "5.6";
Integer.parseInt(s); // Cause a NumberFormatException

int i = 0;
int y = 2 / i;
System.out.println("Welcome to Java");
}
catch (Exception ex) {
System.out.println(ex);
}
}
}
a. An exception is raised due to Integer.parseInt(s);
b. An exception is raised due to 2 / i;
c. The program has a compilation error.
d. The program compiles and runs without exceptions.

#
18. What is displayed on the console when running the following
program?

class Test {
public static void main(String[] args) {
try {
System.out.println("Welcome to Java");
int i = 0;
int y = 2/i;
System.out.println("Welcome to Java");
}
catch (RuntimeException ex) {
System.out.println("Welcome to Java");
}
finally {
System.out.println("End of the block");
}
}
}
a. The program displays Welcome to Java three times followed by End
of the block.
b. The program displays Welcome to Java two times followed by End of
the block.
c. The program displays Welcome to Java three times.
d. The program displays Welcome to Java two times.

#
19. To append data to an existing file, use to construct a
FileOutputStream for file out.dat.
a. new FileOutputStream("out.dat")
b. new FileOutputStream("out.dat", false)
c. new FileOutputStream("out.dat", true)
d. new FileOutputStream(true, "out.dat")

10
#
20. After the following program is finished, how many bytes are written to the
file t.dat?

import java.io.*;

public class Test {


public static void main(String[] args) throws IOException {
DataOutputStream output = new DataOutputStream(
new FileOutputStream("t.dat"));
output.writeShort(1234);
output.writeShort(5678);
output.close();
}
}
a. 2 bytes.
b. 4 bytes.
c. 8 bytes.
d. 16 bytes.

Have you submitted your answer to LiveLib?

11
Random documents with unrelated
content Scribd suggests to you:
N.o 210. Morte eterna.
É a consequencia necessaria do peccado. Rom. vi, 16, 21; viii, 13;
Thia. i, 15.
É o estipendio do peccado. Rom. vi, 23.
A sorte dos impios. Matt. xxv, 41, 46; Rom. i, 32.
O caminho está descripto. Ps. ix (1.a parte) 18; Matt. vii, 13.
A justiça propria leva-nos á morte eterna. Prov. xiv, 12.
Só Deus a póde infligir. Matt. x, 28; Thia. iv, 12.

§ está explicada como:

Perdição ante a face do Senhor. 2 Thes. i, 9.


Sociedade com o demonio, etc. Matt. xxv, 41.
Um tanque de fogo. Apoc. xix, 20; xxi, 8.
Um bicho que os róe e nunca morre. Marc. ix, 45.
Trevas exteriores. Matt. xxv, 30.
Escuridão de trevas. 2 Ped. ii, 17.
Indignação e ira, etc. Rom. ii, 8, 9.

§ é chamada:

Destruição. Rom. ix, 22; 2 Thes. i, 9.


Perdição. 2 Ped. ii, 12.
Ira vindoura. 1 Thes. i, 10.
Segunda morte. Apoc. ii, 11.
Resurreição para a condemnação. João, v, 29.
Resurreição para opprobrio, etc. Dan. xii, 2.
Condemnação ao inferno. Matt. xxiii, 33.
Supplicio eterno. Matt. xxv, 46.
Ha de ser infligido por Christo. Matt. xxv, 31, 41; 2 Thes. i, 7, 8.
Christo é o unico remedio. João, iii, 16; viii, 51; Act. iv, 12.
Os justos serão illesos. Apoc. ii, 11; xx, 6.
Diligenciae preservar os proximos. Thia. v, 20.
Illustrada. Luc. xvi, 23-26.
N.o 211. Morte dos justos.
É dormir em Christo. 1 Cor. xv, 18; 1 Thes. iv, 14.
É abençoada. Apoc. xiv, 13.
É lucro. Filip. i, 21.

§ abunda:

Em fé. Heb. xi, 13.


Em paz. Isa. lvii, 2.
Em esperança. Prov. xiv, 32.
Algumas vezes é desejada. Luc. ii, 29.
Esperada. Job, xiv, 14.
Recebida com resignação. Gen. l, 24; Jos. xxiii, 14; 3 Reis, ii, 2.
Recebida sem medo. 1 Cor. xv, 55.
É preciosa aos olhos do Senhor. Ps. cxv (2.a parte) 15.
Deus preserva os justos para ella. 1 Ped. i, 5.
Deus está com elles na hora do passamento. Ps. xxii, 4.
Leva-os para que não sintam os males vindoiros. 4 Reis, xxii, 20;
Isa. lvii, 1.

§ conduz:

A repouso. Job, iii, 17; 2 Thes. i, 7.


A confôrto. Luc. xvi, 25.

Á
Á presença de Christo. 2 Cor. v, 8; Filip. i, 23.
A uma corôa de justiça. 2 Tim. iv, 8.
A uma corôa da vida. Apoc. ii, 10.
A uma resurreição jubilosa. Isa. xxvi, 19; Dan. xii, 2.
O impio não a considera. Isa. lvii; 1.
Consolação, para os sobreviventes. 1 Thes. iv, 12-17.
Os impios desejam que a sua morte seja como a dos justos. Num.
xxiii, 10.
Elucidação. Luc. xvi, 22.
Exemplos: Abrahão, Gen. xxv, 8; Isaac, Gen. xxxv, 29; Jacob, Gen.
xlix, 33; Arão, Num. xx, 28; Moysés, Deut. xxxiv, 5; Josué,
Jos. xxiv, 29; Elyseu, 4 Reis, xiii, 14, 20; O bom ladrão, Luc.
xxiii, 43; Dorcas, Act. ix,37.
N.o 212. Morte dos impios.
É na sua iniquidade. Ezeq. iii, 19; João, viii, 21.
É sem esperança. Prov. xi, 7.
Algumas vezes effectua-se sem medo. Jer. xxxiv, 5 com 2 Paral.
xxxvi, 11-13.
Frequentemente é subita e inesperada, Job, xxi, 13, 23; xxvii, 21;
Prov. xxix, 1.
Não raras vezes conspicua pelo terror. Job, xviii, 11-15; xxvii, 19-
21; Ps. lxxii, 19.
Segue-se-lhe o castigo. Isa. xiv, 9; Act. i, 25.
A lembrança d’elles acaba com a morte. Job, xviii, 17; Ps. xxxiii,
17; Prov. x, 7.
Não é da vontade de Deus. Ezeq. xviii, 23, 32.
É como a morte dos brutos. Ps. xlviii, 15.
Illustrada. Luc. xii, 20; xvi, 22, 23.
Exemplificada. Coré, etc. Num. xvi, 32; Absalão, 2 Reis, xviii, 9,
10; Acab, 3 Reis, xxii, 34; Jesabel, 4 Reis, ix, 33; Athalia, 2
Paral. xxiii, 15; Aman, Est. vii, 10; Balthazar, Dan. v, 30;
Judas, Matt. xxvii, 5 com Act. i, 18; Ananias, etc. Act. v, 5, 9,
10; Herodes, Act. xii, 23.
N.o 213. Murmuração.
É prohibida. 1 Cor. x, 10; Filip. ii, 14.

§ contra:

Deus. Prov. xix, 3.


A soberania de Deus. Rom. ix, 19, 20.
O serviço de Deus. Mal. iii, 14.
Christo. Luc. v, 30; xv, 2; xix, 7; João, vi, 41-43, 52.
Os ministros de Deus. Ex. xvii, 3; Num. xvi, 41.
Os discipulos de Christo. Marc. vii, 2; Luc. v, 30; vi, 2.
É desproposito. Lam. iii, 39.
É tentar a Deus. Ex. xvii, 2.
É provocar a Deus. Num. xiv, 2, 11; Deut. ix, 8, 22.
A dos justos cessa. Isa. xxix, 23, 24.
É caracteristico dos impios. Jud. 16.
É crime não refrear a dos outros. Num. xiii, 31-33 com xiv, 36-37.
Castigo. Num. xi, 1; xiv, 27-29; xvi, 45, 46; Ps. cv, 25, 26.
Illustração. Matt. xx, 11; Luc. xv, 29, 30.
Exemplos: Caim, Gen. iv, 13, 14; Moysés, Ex. v, 22, 23; Os
israelitas, Ex. xiv, 11; xv, 24; xvi, 2; xvii, 2, 3; Num. xi, 1-4;
xxi, 5; Arão, etc. Num. xii, 1, 2, 3; Coré, etc. Num. xvi, 3,
Elias, 3 Reis, xix, 4; Job, Job, iii, 1, etc. Jeremias, Jer. xx, 14-
18; Jonas, Jon. iv, 8, 9; Discipulos, Marc. xiv, 4, 5; João, vi,
61; Phariseus, Luc. xv, 2; xix, 7; Os judeus, João, vi, 41-43;
Os gregos, Act. vi, 1.
N.o 214. Obediencia a Deus.
É-nos ordenada. Deut. xiii, 4.
É impossivel sem fé. Heb. xi, 6.

§ inclue:

Obediencia á sua voz. Ex. xix, 5; Jer. vii, 23.


Obediencia á sua lei. Deut. xi, 27; Isa. xlii, 24.
Obediencia a Christo. Ex. xxiii, 21; 2 Cor. x, 5.
Obediencia ao Evangelho. Rom. i, 5; vi, 17; x, 16, 17.
Observancia dos seus mandamentos. Ecc. xii, 13.
Submissão ás Potestades superiores. Rom. xiii, 1.
Mais vale obedecer do que offerecer sacrificios. 1 Reis, xv, 22.
Pela obediencia de Christo muitos serão justificados. Rom. v, 19.
Christo deu-nos o exemplo. Matt. iii, 15; João, xv, 10; Filip. ii, 5-8;
Heb. v, 8.
Os anjos obedecem á sua voz. Ps. cii, 20.
É caracteristico dos justos. 1 Ped. i. 14.
Os justos são eleitos para prestarem obediencia. 1 Ped. i, 2.
Obediencia a Deus antes de tudo. Act. iv, 19, 20; v, 29.
Estimulos á obediencia. Jer. xxvi, 13; xxxviii, 20.

§ deve proceder:
De coração. Deut. xi, 13; Rom. vi, 17.
Voluntariamente. Ps. xvii, 45; Isa. i, 19.
Com exactidão. Jos. xxii, 2, 3.
Sem desvio. Deut. xxviii, 14.
Constantemente. Filip. ii, 12.
Resolvei fazer tudo o que o Senhor manda. Ex. xxiv, 7; Jos. xxiv,
24.
Confessae que tendes faltado a escutar a voz do Senhor. Dan. ix,
10.
Preparae os vossos corações para o Senhor. 1 Reis, vii, 3; 1 Esd.
vii, 10.
Pedi que vos guie. Ps. cxviii, 35; cxlii, 10.
Promessas aos obedientes. Ex. xxiii, 22; 1 Reis, xii, 14; Isa. i, 19;
Jer. vii, 23.
A obediencia ha de ser universal nos ultimos dias. Dan. vii, 27.
Benção para os que obedecerem. Deut. xi, 27; xxviii, 1-13; Luc. xi,
28; Thia. i, 25.
Os impios recusam obedecer. Ex. v, 2; 2 Esd. ix, 17.
Castigo dos que recusam. Deut. xi, 28; xxviii, 15-68; Jos. v, 6; Isa.
i, 20.
Exemplos: Noé, Gen. vi, 22; Abrahão, Gen. xii, 1-4 com Heb. xi, 8;
Gen. xxii, 3, 12; Os israelitas, Ex. xii, 28; xxiv, 7; Caleb, etc.
Num. xxxii, 12; Asa, 3 Reis, xv, 11; Elias, 3 Reis, xvii, 5;
Ezequias, 4 Reis, xviii, 6; Josias, 4 Reis, xxii, 2; David, Ps.
cxviii, 106; Zorobabel, etc. Ag. i, 12; José, Matt. i, 24; Os
Magos, Matt. ii, 12; Zacharias, etc. Luc. i, 6; Paulo, Act. xxvi,
19; Os justos de Roma, Rom. xvi, 19.
N.o 215. Odio.
É probibido. Lev. xix, 17; Col. iii, 8.
O que odeia os seus proximos é homicida. 1 João, iii, 15.
As inimisades são obra da carne. Gal. v, 20.
Muitas vezes encobre-o a mentira. Prov. x, 18; xxvi, 26.
Palavras humildes o occultam. Prov. xxvi, 24, 25.
Excita rixas. Prov. x, 12.
Amargura a vida. Prov. xv, 17.

§ é inconsistente:

Com o conhecimento de Deus. 1 João, ii, 9, 11.


Com o amor de Deus. 1 João, iv, 20.

§ os impios manifestam-o:

Para com Deus. Rom. i, 30.


Para com os justos. Ps. xxiv, 19; Prov. xxix, 10.
Uns para com os outros. Tit. iii, 3.
Christo foi odiado. Ps. xxxiv, 19 com João, vii, 7; xv, 18, 24, 25.

§ os justos:

São odiados por causa do nome do Senhor. Matt. x, 22; João, xv,
18, 19.
Não devem admirar. 1 João, iii, 13.
Não dão mal por mal. Ex. xxiii, 5; Matt. v, 44.
Não folgam com a ruina dos que lhes tem odio. Job, xxxi, 29, 30;
Ps. xxxiv, 13, 14.
Evitam que o proximo os venha a aborrecer. Prov. xxv, 17.
Castigos. Ps. xxxiii, 22; xliii, 8; lxxxviii, 24; Amos, i, 11.

§ devemos aborrecer:

Os caminhos da iniquidade. Ps. cviii, 104, 128.


A mentira. Ps. cviii, 163.
O mal. Ps. xcvi, 10; Prov. viii, 13.
As prevaricações. Ps. c, 3.
O odio e a opposição a Deus. Ps. cxxxviii, 21, 22.
Exemplos: Caim, Gen. iv, 5, 8; Esaú, Gen. xxvii, 41; Os irmãos de
José, Gen. xxxvii, 4; Os Anciãos de Galaad, Juiz, xi, 7; Saul, 1
Reis, xviii, 8, 9; Acab, 3 Reis, xxii, 8; Aman, Est. iii, 5, 6; Os
inimigos dos judeus, Est. ix, 1, 5; Ezeq. xxxv, 5, 6; Os
Caldeus, Dan. iii, 12; Os inimigos de Daniel, Dan. vi, 4-15;
Herodias, Matt. xiv, 3, 8; Os Judeus, Act. xxiii, 12, 14.
N.o 216. Odiar, ou aborrecer a Christo.
É sem razão. Ps. lxviii, 5 com João, xv, 25.
O mundo aborrecia-o porque elle dava testemunho das suas
maldades. João, vii, 7.

§ encerra:

Odio ao Pae. João, xv, 23, 24.


Odio ao seu povo. João, xv, 18.
Castigos. Ps. ii, 2, 9; xx, 9.
São inevitaveis para os que perseverarem 1 Cor. xv, 25; Heb. x,
29-31.
Illustração. Luc. xx, 12-14, 17.
Exemplos: Os principes dos Sacerdotes, etc. Matt. xxvii, 1, 2; Luc.
xxii, 5; Os judeus, Matt. xxvii, 22, 23; Os Escribas, etc. Marc.
xi, 18; Luc. xi, 53, 54.
N.o 217. Offenças contra o Espirito
Santo.
Exhortações contra taes offensas. Ef. iv, 30; 1 Thes. v, 19.

§ manifestam-se:

Tentando-o. Act. v, 9.
Vexando-o. Isa. lxiii, 10.
Entristecendo-o. Ef. iv, 30.
Extinguindo-o. 1 Thes. v, 19.
Mentindo-lhe. Act. v, 3, 4.
Resistindo-lhe. Act. vii, 51.
Menospreciando os seus dons. Act. viii, 19, 20.
Os que cairem depois de terem sido illuminados pelo Espirito
Santo, não serão renovados. Heb. vi, 4-6.
Aquelle que o ultrajar será castigado severamente. Heb. x, 29.
Aquelle que desprezar o seu testemunho será castigado. 2 Esd. ix,
30.
Não será perdoada a blasphemia contra elle. Matt. xii, 31, 32; 1
João, v, 16.
N.o 218. Olvidar a Deus.
É caracteristico dos impios. Prov. ii, 17; Isa. lxv, 11.
É crime dos apostatas. Jer. iii, 21, 22.

§ é esquecer-se:

Do seu Concerto. Deut. iv, 23; 4 Reis, xvii, 38.


Das suas obras. Ps. lxxvii, 7, 11; cv, 13.
Dos seus beneficios. Ps. cii, 2; cv, 7.
Da sua palavra. Heb. xii, 5; Thia. i, 25.
Da lei. Ps. cxviii, 153, 176; Os. iv, 6.
De nos ter remido. Juiz. viii, 34; Ps. lxxvii, 42.
Do seu poder de remir. Isa. li, 13, 15.
Os falsos mestres incitam-nos ao esquecimento do Senhor. Jer.
xxiii, 27.
A prosperidade leva-nos muitas vezes ao esquecimento do seu
santo nome. Deut. viii, 12-14; Os. xiii, 6.
As provações não o devem motivar. Ps. xliii, 18-21.
Resolvei não o esquecer. Ps. cxviii, 16, 93.
Precavei-vos contra o esquecimento. Deut. vi, 12; viii, 11.
Exhortação aos culpados. Ps. xlix, 22.
Castigo que os aguarda. Job, viii, 12, 13; Ps. ix, 17; Isa. xvii, 10,
11; Ezeq. xxiii, 35; Os. viii, 14.
N.o 219. Oração.
É-nos ordenada. Isa. lv, 6; Matt. vii, 7; Filip. iv, 6.

§ deve ser dirigida:

A Deus. Ps. v, 2; Matt. iv, 10.


A Christo. Luc. xxiii, 42; Act. vii, 59.
Ao Espirito Santo. 2 Thes. iii, 5.
Mediante Christo. Ef. ii, 18; Heb. x, 19.
Deus escuta. Ps. ix (2.a parte) 17; lxiv, 3.
Deus attende. Ps. xcviii, 6; Isa. lviii, 9.

§ faz-se:

De joelhos. Ef. iii, 14.


Pondo-se na presença do Senhor. Ps. v, 4, 5.
Elevando a alma. Ps. xxiv, 1.
Elevando o coração. Lam. iii, 41.
De todo o coração. Ps. lxi, 9.
Dilatando a alma. 1 Reis, i, 15.
Invocando o nome do Senhor. Gen. xii, 8; Ps. cxiv, 4; Act. xxii, 16.
Clamando a Deus. Ps. xxvi, 7; xxxiii, 7.
Unindo-se a Deus. Ps. lxxii, 28; Heb. x, 22.
Levantando a voz ao Céo. 2 Paral. xxxii, 20.
Implorando o Senhor. Ex. xxxii, 11.
Buscando o Senhor. Job, viii, 5.
Buscando o rosto do Senhor. Ps. xxvi, 8.
Rogando humildemente. Job, viii, 5; Jer. xxxvi, 7.
Acceita em nome de Christo. João, xiv, 13, 14; xv, 16; xvi, 23, 24.
A oração chega até á santa morada. 2 Paral. xxx, 27; Apoc. v, 8.
Carece da graça vivificante. Ps. lxxix, 18.

§ o espirito santo:

Promettido como espirito de prece. Zac. xii, 10.


Como Espirito de adopção leva-nos a orar. Rom. viii, 15; Gal. iv, 6.
Ajuda a nossa fraqueza ensinando-nos a pedir. Rom. viii, 26.
É prova de conversão. Act. ix, 11.
A do justo póde muito. Thia. v, 16.
Aplaca o Senhor. Prov. xv, 8.

§ deve ser offerecida:

Orando no Espirito Santo. Ef. vi, 18; Jud. 20.


Com fé. Matt. xxi, 22; Thia. i, 6.
Revestidos de completa fé. Heb. x, 22.
Perdoando aos nossos inimigos. Matt. vi, 12.
Buscando o Senhor de todo o coração. Jer. xxix. 13; Lam. iii, 41.
Rogando de todo o coração. Ps. cxviii, 58, 145.
Preparando o coração. Job, xi, 13.
Com coração purificado. Heb. x, 22.
Com alma commovida. Ps. xli, 5.
Com o espirito e com a mente. João, iv, 22-24; 1 Cor. xiv, 15.
Com confiança em Deus. Ps. lv, 10; lxxxv, 7; 1 João, v, 14.
Com submissão á vontade de Deus. Luc. xxii, 42.
Com labios verdadeiros. Ps. xvi, 1.
Com pouco falar. Ecc. v, 1, 2; Matt. vi, 7.
Levantando as mãos puras. 1 Tim. ii, 8.
Com espirito penitente. 2 Paral. vii, 14; xxxiii, 12.
Com verdade. Ps. cxliv, 18; João, iv, 24.
Com desejo de ser ouvido. 2 Esd. i, 6; Ps. xvi, 1; liv, 2, 3; lx, 2.
Com desejo de ser attendido. Ps. xxvi, 7; ci, 3; cvii, 7; cxlii, 1.
Com confiança. Heb. iv, 16.
Com instancia. 1 Thes. iii, 10; Thia. v, 17.
Com importunação. Gen. xxxii, 26; Luc. xi, 8, 9; xviii, 1-7.
De noite e de dia. 1 Tim. v, 5.
Sem intermissão. 1 Thes. v, 17.
Em todo o logar. 1 Tim. ii, 8.
Sem cuidado de coisa alguma. Filip. iv, 6.
Serve para pedir dons temporaes. Gen. xxviii, 20; Prov. xxx, 8;
Matt. vi, 11.
Para pedir dons espirituaes. Matt. vi, 33.
Misericordia e graça. Heb. iv, 16.
Modelo da oração. Matt. vi, 9-13.
Orae sem ostentação. Matt. vi, 5.

§ deve ser acompanhada:


De arrependimento. 3 Reis, viii, 33; Jer. xxxvi, 7.
De confissão de peccados. 2 Esd. i, 4, 7; Dan. ix, 4-11.
De humilhação. Gen. xviii, 27.
De choro. Jer. xxxi, 9; Os. xii, 4.
De jejum. 2 Esd. i, 4; Dan. ix, 3; Act. xiii, 3.
De vigilancia. Luc. xxi, 36; 1 Ped. iv, 7.
De louvor. Ps. lxv, 17.
De acção de graças. Filip. iv, 6; Col. iv, 2.

§ apoiae-vos:

Nas promessas de Deus. Gen. xxxii, 9-12; Ex. xxxii, 13; 3 Reis, viii,
26; Ps. cxviii, 49.
Na sua alliança. Jer. xiv, 21.
Na sua verdade. Ps. clxii, 1.
Na sua misericordia. Ps. l, 3; Dan. ix, 18.
Na sua justiça. Dan. ix, 16.
Orae de manhã. Ps. v, 4; cxviii, 147.
Supplicae-lhe que vos ensine. Luc. xi, 1.
Importa orar sempre. Luc. xviii, 1.
Perseverar. Rom. xii, 12.
Evitae que vos impidam nas vossas orações. 1 Ped. iii, 7.
É saudavel invocar a Deus na tribulação. Isa. xxvi, 16; Thia. v, 13.
Orae; o tempo é curto. 1 Ped. iv, 7.

§ posições em que se faz oração:


Em pé. 3 Reis, viii, 22; Marc. xi, 25.
Prostrado. Ps. xciv, 6.
De joelhos. 2 Paral. vi, 13; Ps. xciv, 6; Luc. xxii, 41; Act. xx, 36.
Com o rosto em terra. Num. xvi, 22; Jos. v, 14; 1 Paral. xxi, 16;
Matt. xxvi, 39.
Estendendo as mãos. Isa. i, 15.
Levantando as mãos. Ps. xxvii, 2; Lam. ii, 19; 1 Tim. ii, 8.
As promessas de Deus nos animam. Isa. lxv, 24; Amos, v, 4; Zac.
xiii, 9.
Assim como as de Christo. Luc. xi, 9, 10; João, xiv, 13, 14.
E a nossa experiencia passada. Ps. iv, 2; cxiv, 2.
N.o 220. Oração em secreto.
Christo constantemente se retirava para orar. Matt. xiv, 23; xxvi,
36, 39; Marc. i, 35; Luc. ix, 18, 29.
Somos mandados orar em secreto. Matt. vi, 6.

§ deve ser offerecida:

De tarde, de manhã e ao meio dia. Ps. liv, 18.


De dia e de noite. Ps. lxxxvii, 2.
Sem intermissão. 1 Thes. v, 17.
Os nossos votos serão cumpridos. Job, xxii, 27.
O nosso Pae nos dará a paga. Matt. vi, 6.
É prova de conversão. Act. ix, 11.
Nada nos deve impedir. Dan. vi, 10.
Exemplos: Lot, Gen. xix, 20; Eliezer, Gen. xxiv, 12; Jacob, Gen.
xxxii, 9-12; Gedeão, Juiz. vi, 22, 36, 39; Anna, 1 Reis, i, 10;
David, 2 Reis, vii, 18-29; Ezequias, 4 Reis, xx, 2; Isaias, 4
Reis, xx, 11; Manassés, 2 Paral. xxxiii, 18, 19; Esdras, 1 Esd.
ix, 5, 6; Nehemias, 2 Esd. ii, 4; Jeremias, Jer. xxxii, 16-25;
Daniel, Dan. ix, 3, 17; Jonas, Jon. ii, 1; Habacuc, Hab. i, 2;
Anna, Luc. ii, 37; Paulo, Act. ix, 11; Pedro, Act. ix, 40; x, 9;
Cornelio, Act. x, 30.
N.o 221. Oração social e de familia.
Christo prometteu attendel-a. Matt. xviii, 19.
Christo prometteu estar no meio dos que o invocam. Matt. xviii,
20.
Castigo dos que não invocam o nome do Senhor. Jer. x, 25.
Exemplos: Abrão, Gen. xii, 5, 8; Jacob, Gen. xxxv, 2, 3, 7; Josué,
Jos. xxiv, 15; David, 2 Reis, vi, 20; Job, Job, i, 5; Os
Discipulos, Act. i, 13, 14; Cornelio, Act. xvi, 25; Paulo, etc.
Act. xx, 36; xxi, 5.
N.o 222. Oração publica.
É agradavel ao Senhor. Isa. lvi, 7.
Deus promette ouvil-a. 2 Paral. vii, 14, 16.
Deus promette abençoar os que o invocam. Ex. xx, 24.

§ christo:

Sanctifica-a com a sua presença. Matt. xviii, 20.


Assistia. Matt. xii, 9; Luc. iv, 16.
Promette fazer o que lhe pedirem. Matt. xviii, 19.
Institue a fórma da oração. Luc. xi, 2.
Não se deve orar em lingua desconhecida. 1 Cor. xiv, 14-16.
Os justos regozijam-se orando. Ps. xli, 5; cxxi, 1.
Estimulos á oração. Heb. x, 25.
Urgi os proximos a que orem. Ps. xciv, 6; Zac. viii, 21.
Exemplos: Josué, etc. Jos. vii, 6-9; David, 1 Paral. xxix, 10-19;
Salamão, 2 Paral. cap. 6; Josafat, etc. 2 Paral. xx, 5-13;
Josué, etc. 2 Esd. cap. 9; Os judeus, Luc. i, 10; Os christãos
primitivos, Act. ii, 46; iv, 24; xii, 5, 12; Pedro, etc. Act. iii, 1;
Os Instructores e Prophetas de Antiochia, Act. xiii, 3; Paulo,
etc. Act. xvi, 16.
N.o 223. Oração intercessoria.
Christo deu-nos o exemplo. Luc. xxii, 32; xxiii, 34; João, xvii, 9-24.
É-nos ordenada. 1 Tim. ii, 1; Thia. v, 14, 16.

§ deve ter por objecto:

Os Reis. 1 Tim. ii, 2.


Todos os que estão elevados em dignidade. 1 Tim. ii, 2.
Os ministros da Egreja. 2 Cor. i, 11; Filip. i, 19.
A Egreja. Ps. cxxi, 6; Isa. lxii, 6, 7.
Todos os justos. Ef. vi, 18.
Toda a humanidade. 1 Tim. ii, 1.
Os amos. Gen. xxiv, 12-14.
Os criados. Luc. vii, 2, 3.
Os filhos. Gen. xvii, 18; Matt. xv, 22.
Os amigos. Job, xlii, 8.
Os patricios. Rom. x, 1.
Os enfermos. Thia. v, 14.
Os que nos perseguem. Matt. v, 44.
A paz da cidade em que vivemos. Jer. xxix, 7.
Aquelles que nos tem inveja. Num. xii, 13.
Aquelles que nos desamparam. 2 Tim. iv, 16.
Aquelles que murmuram contra o Senhor. Num. xi, 1, 2; xiv, 13,
19.
Os ministros devem interceder pelo seu povo. Ef. i, 16; iii, 14-19;
Filip. i, 4.
Estimulos á prece de intercessão. Thia. v, 16; 1 João, v, 16.
O Senhor torna em dobro o que lhe pedimos para os proximos.
Job, xlii, 10.
É peccado cessar de orar pelos proximos. 1 Reis, xii, 23.
Buscae a intercessão dos fieis. 1 Reis, xii, 19; Heb. xiii, 18.
É inutil interceder pelos que se obstinam na impenitencia. Jer. vii,
13-16; xiv, 10, 11.
Exemplos: Abrahão, Gen. xviii, 23-32; O servo de Abrahão, Gen.
xxiv, 12-14; Moysés, Ex. viii, 12; xxxii, 11-13; Samuel, 1 Reis,
vii, 5; Salamão, 3 Reis, viii, 30-36; Eliseu, 4 Reis, iv, 33;
Ezequias, 2 Paral. xxx, 18; Isaias, 2 Paral. xxxii, 20;
Nehemias, 2 Esd. i, 4-11; David, Ps. xxiv, 22; Ezequiel, Ezeq.
ix, 8; Daniel, Dan. ix, 3-19; Estevão, Act. vii, 60; Pedro e
João, Act. viii, 15; A Egreja de Jerusalem, Act. xii, 5; Col. i, 9-
12; 2 Thes. i, 11; Epafras, Col. iv, 12; Filemon, File. 22.
N.o 224. Oração attendida.
Deus attende. Ps. xcviii, 6; cxvii, 5; cxxxvii, 3.
Christo attende. João, iv, 10; xiv, 14.
A de Christo foi attendida. João, xi, 42; Heb. v, 7.

§ a resposta é concedida:

Mediante a graça de Deus. Isa. xxx, 19.


Algumas vezes immediatamente. Isa. lxv, 24; Dan. ix, 21, 23; x,
12.
Outras vezes com demora. Luc. xviii, 7.
Nem sempre como desejamos. 2 Cor. xii, 8, 9.
Algumas vezes mais abundantemente do que pedimos. Jer. xxxiii,
3; Ef. iii, 20.
O Senhor prometteu attender. Isa. lviii, 9; Jer. xxix, 12; Matt. vii, 7.
Especialmente em tempos de tribulação. Ps. xlix, 15; xc, 15.

§ a promessa é feita:

Aos que buscam a Deus. Ps. xxxiii, 5.


Aos que buscam a Deus de todo o coração. Jer. xxix, 12, 13.
Aos que aguardam o Senhor. Ps. xxxix, 2.
Aos que buscam a face do Senhor. 2 Paral. vii, 14; Job, xxii, 23,
27.
Aos que oram com fé. Matt. xxi, 22; Thia. v, 15.
Aos que pedem em nome de Christo. João, xiv, 13.
Aos que pedem segundo a vontade do Senhor. 1 João, v, 14.
Aos que o invocam em verdade. Ps. cxliv, 18.
Aos que temem. Ps. cxliv, 19.
Aos que conhecem o seu Nome. Ps. xc, 14, 15.
Aos que guardam os seus mandamentos. 1 João, iii, 22.
Aos que invocam o Senhor á vista d’aquelles que os attribulam.
Isa. xix, 20.
Aos que na sua tribulação clamam a Deus. Ps. xvii, 7; cv, 44; Isa.
xxx, 19, 20.
Aos que permanecem em Christo. João, xv, 7.
Aos que se humilham. 2 Paral. vii, 14; Ps. ix (1.a parte) 13.
Aos que são justos. Ps. xxxiii, 16; Thia. v, 16.
Aos necessitados e pobres. Isa. xli, 17.

§ os justos:

Tem a certeza de serem attendidos. 1 João, v, 15.


Amam ao Senhor porque elle attende. Ps. cxiv, 1.
Bemdizem-o. Ps. lxv, 20.
Louvam-o. Ps. cxv, 17; cxvii, 21.
Invocarei o Senhor todos os dias, porque me attende. Ps. cxiv, 2.

§ não é attendida:

A dos que pedem mal. Thia. iv, 3.


A dos que tem iniquidade no coração. Ps. lxv, 18.
A dos que vivem no peccado. Isa. lix, 2; João, ix, 31.
A d’aquelles cujas offertas são indignas do Senhor. Mal. i, 7-9.
A dos que abandonam a Deus. Jer. xiv, 10, 12.
A dos que não querem ouvir a Deus. Prov. i, 24, 25, 28.
A dos que não querem ouvir a lei. Prov. xxviii, 9; Zac. vii, 11-13.
A dos que tapam os ouvidos para não ouvirem os pobres. Prov.
xxi, 13.
A dos que tem as mãos manchadas de sangue. Isa. i, 15; lix, 3.
A dos idolatras. Jer. xi, 11-14; Ezeq. viii, 15-18.
A dos que duvidam. Thia. i, 6, 7.
A dos hypocritas. Job, xxvii, 8, 9.
A dos soberbos. Job. xxxv, 12, 13.
A dos que se exaltam. Luc. xviii, 11, 12, 14.
A dos que aborrecem os justos. Ps. xvii, 41, 42.
A dos que tratam com violencia os justos. Miq. iii, 2-4.
Exemplos: Abrahão, Gen. xvii, 20; Lot, Gen. xix, 19-21; O servo de
Abrahão, Gen. xxiv, 15-27; Jacob, Gen. xxxii, 24-30; Os
Israelitas, Ex. ii, 23, 24; Moysés, Ex. xvii, 4-6, 11-13; xxxii,
11-14; Sansão, Juiz. xv, 18, 19; Anna, 1 Reis, i, 27; Samuel, 1
Reis, vii, 9; Salamão, 3 Reis, iii, 9, 12; O homem de Deus, 3
Reis, xiii, 6; Elias, 3 Reis, xviii, 36-38; Thia. v, 17, 18; Eliseu, 4
Reis, iv, 33-35; Joaccáz, 4 Reis, xiii, 4; Ezequias, 4 Reis, xix,
20; Jabes, 1 Paral. iv, 10; Asa, 2 Paral. xiv, 11, 12; xx, 6-17;
Manassés, 2 Paral. xxxiii, 13, 19; Esdras, etc. 1 Esd. viii, 21-
23; Nehemias, 2 Esd. iv, 9, 15; Job, Job, xlii, 10; David, Ps.
xvii, 7; Jeremias, Lam. iii, 55, 56; Daniel, Dan. ix, 20-23;
Jonas, Jon. ii, 2, 10; Zacharias, Luc. i, 13; O cego, Luc. xviii,
38, 41-43; O bom ladrão, Luc. xxiii, 42, 43; Os apostolos, Act.
iv, 29-31; Cornelio, Act. x, 4, 31; Os christãos primitivos, Act.
xii, 5, 7; Paulo e Silas, Act. xvi, 25, 26; Paulo, Act. xxviii, 8.
Não attendida. Exemplos: Saul, 1 Reis, xxviii, 15; Os Anciãos de
Israel, Ezeq. xx, 3; Os Phariseus, Matt. xxiii, 14.
N.o 225. Orphãos.
Acham misericordia em Deus. Os. xiv, 4.

§ deus ha de:

Ser-lhes Pae. Ps. lxvii, 6.


Ajudal-os. Ps. ix (2.a parte), 14.
Ouvir os seus clamores. Ex. xxii, 23.
Fazer-lhes justiça. Deut. x, 18; Ps, ix (2.a parte), 18.
Castigar os seus oppressores. Ex. xxii, 24; Isa. x, 1-3; Mal. iii, 5.
Castigar os que lhes não fazem justiça. Jer. v, 28, 29.
É do nosso dever visital-os nas suas afflicções. Thia. i, 27.
Repartir com elles. Deut. xiv, 29.
Defendel-os. Ps. lxxxi, 3; Isa. i, 17.
Não perverter a justiça na sua causa. Deut. xxiv, 17.
Não os defraudar. Prov. xxiii, 10.
Não os vexar. Ex. xxii, 22.
Não os opprimir. Zac. vii, 10.
Não os contristar. Jer. xxii, 3.
Bemaventurado o que reparte a sua porção com elles. Deut. xiv,
29; Job, xxix, 12, 13; Jer. vii, 6, 7.

§ os impios:
Welcome to our website – the ideal destination for book lovers and
knowledge seekers. With a mission to inspire endlessly, we offer a
vast collection of books, ranging from classic literary works to
specialized publications, self-development books, and children's
literature. Each book is a new journey of discovery, expanding
knowledge and enriching the soul of the reade

Our website is not just a platform for buying books, but a bridge
connecting readers to the timeless values of culture and wisdom. With
an elegant, user-friendly interface and an intelligent search system,
we are committed to providing a quick and convenient shopping
experience. Additionally, our special promotions and home delivery
services ensure that you save time and fully enjoy the joy of reading.

Let us accompany you on the journey of exploring knowledge and


personal growth!

testbankpack.com

You might also like