In the application video from Leviticus, we said that God’s…

In the application video from Leviticus, we said that God’s people should pursue holiness rather than happiness as their ultimate goal. Explain the difference between these two priorities. How would choosing holiness change the way a Christian approaches everyday relationships and decisions?

One major question of the Old Testament is, “How can unholy…

One major question of the Old Testament is, “How can unholy people live in the presence of a holy God?” Using ideas from the Ezekiel/Jeremiah application video, explain how the Old Testament begins to answer that question and how it ultimately points to Christ and the Holy Spirit.

[214-0010] What is printed to the console in the following p…

[214-0010] What is printed to the console in the following program? public class MyCoolProgram { public static void main(String[] args) { String s1 = “The Java programming language”; String s2 = “is really “; String s3 = “fantastic!”; String s4 = “Yay!”;   int s3Size = s3.length(); System.out.println(s3Size); char s1Char = s1.charAt(5); System.out.println(s1Char); int s2Index = s2.indexOf(“r”); System.out.println(s2Index); System.out.println(s4 == “Yay!”); System.out.println(s4.equals(“Yay!”)); } }