Essay Question #1: Describe the patterns of crime and explai…

Essay Question #1: Describe the patterns of crime and explain why they exist using crime theories. To do this, you should explain the patterns associated with the typical offender (i.e. gender, age, race, socioeconomic status, location, etc.). Next, connect the theory “umbrellas” to each pattern (please note that I am looking for you to apply theory “umbrellas” in this question, not necessarily specific theories – see the Podcast/Ch. 5 PowerPoint for assistance).*Hint: You can use different theories to explain different characteristics/patterns.

Short Answer Question: This question is simply to gauge what…

Short Answer Question: This question is simply to gauge what else you have learned and can take away from this class, so the question is simple: What is something else that you have learned over the first half of this class that I have not already asked you about in the other questions? Answer this by explaining the substantive knowledge that you gained. Be detailed and specific with your response to this question (you MUST use specific information, numbers, definitions, etc. as needed – make sure to truly show me that you’ve learned the material!).

Given the following programs (assume no syntax error), what…

Given the following programs (assume no syntax error), what is displayed/printed?  #include int main() {    int b = 5;    switch (b) {        case 1 … 3:            b = b + 10;              break;        case 4 … 6:            b = b * 2 – 1;           default:            b = b / 2 + 4;              break;    }    printf(“b = %d\n”, b);    return 0;}