SlideShare une entreprise Scribd logo
1  sur  8
Imam University | CCIS
Doc. No. 006-01-20140514
Page 1 of 8
Al Imam Mohammad Ibn Saud Islamic University
College of Computer and Information Sciences
Computer Science Department
Course Title: Computer Programming 2
Course Code: CS141
Course
Instructor:
Dr. Ahmed Khorsi, Dr. Ashraf Shahin, Dr.Yassin
Daada, Dr. Adel Ammar, Dr. Aram Alsedrani, Mse.
Ebtesam Alobood, Mse. Mai Alammar, Mse. Hessa
Alawad, Mse. Shahad Alqefari
Exam: Second Midterm
Semester: Fall 2017
Date:
Duration: 60 Minutes
Marks: 15
Privileges: ☐ Open Book
☐ Calculator
Permitted
☐ Open Notes
☐ Laptop Permitted
Student Name (in
English):
Student ID:
Section No.:
Instructions:
1. Answer 3 questions; there are 3 questions in 7 pages.
2. Write your name on each page of the exam paper.
3. Write your answers directly on the question sheets. Use the ends of the question
pages for rough work or if you need extra space for your answer.
4. If information appears to be missing from a question, make a reasonable
assumption, state your assumption, and proceed.
5. No questions will be answered by the invigilator(s) during the exam period.
Official Use Only
Question Student Marks Question Marks
1 4
2 3
3 8
Imam University | CCIS
Doc. No. 006-01-20140514
Page 2 of 8
Total 15
Imam University | CCIS
Doc. No. 006-01-20140514
Page 3 of 8
Student Name (in
English):
__________________________________________ Student
ID:
_____________________________
Question 1: To be answered in (20) Minutes [ ] / 4 Marks
1. What is the output of the following code?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//Sound.java
public interface Sound { public void greeting();}
//Cat.java
public class Cat implements Sound {
public void greeting() {System.out.println("Meow!");}
}
//Dog.java
public class Dog implements Sound {
public void greeting() {System.out.println("Woof!");}
public void greeting(Dog another) {System.out.println("Woooof!");}
}
//BigDog.java
public class BigDog extends Dog {
public void greeting() {System.out.println("Woow!");}
public void greeting(Dog another)
{System.out.println("Wooowww!");}
}
// SoundTest.java
public class SoundTest {
public static void main(String[] args) {
Sound animal1 = new Cat();
animal1.greeting();
Sound animal2 = new Dog();
animal2.greeting();
Sound animal3 = new BigDog();
animal3.greeting();
BigDog bigDog1 = new BigDog();
Dog dog2 = (Dog)animal2;
try {
BigDog bigDog2 = (BigDog)animal3;
Dog dog3 = (Dog)animal3;
dog2.greeting(dog3);
dog3.greeting(dog2);
dog2.greeting(bigDog2);
bigDog2.greeting(dog2);
bigDog2.greeting(bigDog1);}
catch (ClassCastException e) {
System.err.println("Class cast exception 1 occured");}
try {
BigDog dog4 = (BigDog) animal2;
dog4.greeting(dog4); }
catch (ClassCastException e) {
System.err.println("Class cast exception 2 occured");}
catch (Exception e) {
System.err.println("Exception ?");
}}
}
Answer:
Imam University | CCIS
Doc. No. 006-01-20140514
Page 4 of 8
Student Name (in
English):
__________________________________________ Student
ID:
_____________________________
Question 2: To be answered in(15) Minutes [ ] / 3 Marks
In the following code, there are one compilation error in each code segment. List the line number
and the cause of the error.
Question # Line # Cause of the error
1
2
3
1)
1
2
3
4
5
6
public class ExceptionExample {
void method() throws ArithmeticException{
throw ArithmeticException("ArithmeticException Occurred");
}
}
2)
1
2
3
4
5
6
7
8
9
10
11
12
13
//A.java
public class A {
public void addA(String x) {
System.out.println(x);
}
}
//B.java
public class B extends A{
@Override
public void addA() {
System.out.println(“Hello”);
}
}
3)
1
2
3
4
5
6
7
8
9
10
11
//A.java
public interface A {
public void print();
}
//C.java
public class C implements A {
public void print(String s) {
System.out.println(s);
}
}
Imam University | CCIS
Doc. No. 006-01-20140514
Page 5 of 8
Student Name (in
English):
__________________________________________ Student
ID:
_____________________________
Question 3: To be answered in(45) Minutes [ ] / 8 Marks
Consider the class hierarchy below:
1) Write the code of the class Student. The method toString only returns a string containing the
student’s name and address. The method addCourseGrade adds a new course and its grade to the
arrays courses and grades respectively. A student takes no more than 30 courses for the entire
program. If addCourseGrade is called while the student has already 30 courses, it should throw an
exception. You are not required to write classes Person and Teacher.
2) Write a driver class PersonTest that does the following:
i. Create an array that contains 3 students and 2 teachers.
ii. Add one course and its grade for each student.
iii. For each element of the array:
a. Call toString() polymorphically.
b. If the array’s element is a student, print his grades.
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
Imam University | CCIS
Doc. No. 006-01-20140514
Page 6 of 8
........................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
Imam University | CCIS
Doc. No. 006-01-20140514
Page 7 of 8
........................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
Imam University | CCIS
Doc. No. 006-01-20140514
Page 8 of 8
........................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
.......................................................................................................................................................
..............

Contenu connexe

Similaire à Cs141 mid termexam2_fall2017_v1.1

Cs141 mid termexam2_fall2017_v1.1_solution
Cs141 mid termexam2_fall2017_v1.1_solutionCs141 mid termexam2_fall2017_v1.1_solution
Cs141 mid termexam2_fall2017_v1.1_solution
Fahadaio
 
Examf cs-cs141-2-17 solution
Examf cs-cs141-2-17 solutionExamf cs-cs141-2-17 solution
Examf cs-cs141-2-17 solution
Fahadaio
 
Cs141 mid termexam v1
Cs141 mid termexam v1Cs141 mid termexam v1
Cs141 mid termexam v1
Fahadaio
 
Cs141 mid termexam2_v1answer
Cs141 mid termexam2_v1answerCs141 mid termexam2_v1answer
Cs141 mid termexam2_v1answer
Fahadaio
 
Cs141 mid termexam2_v1
Cs141 mid termexam2_v1Cs141 mid termexam2_v1
Cs141 mid termexam2_v1
Fahadaio
 
Examf cs-cs141-2-17
Examf cs-cs141-2-17Examf cs-cs141-2-17
Examf cs-cs141-2-17
Fahadaio
 
Cs141 mid termexam v3
Cs141 mid termexam v3Cs141 mid termexam v3
Cs141 mid termexam v3
Fahadaio
 
01-ch01-1-println.ppt java introduction one
01-ch01-1-println.ppt java introduction one01-ch01-1-println.ppt java introduction one
01-ch01-1-println.ppt java introduction one
ssuser656672
 
Cs141 mid1-2017-fall-solution2
Cs141 mid1-2017-fall-solution2Cs141 mid1-2017-fall-solution2
Cs141 mid1-2017-fall-solution2
Fahadaio
 
Cs141 mid termexam v5_solution
Cs141 mid termexam v5_solutionCs141 mid termexam v5_solution
Cs141 mid termexam v5_solution
Fahadaio
 
Csc1100 elements of programming (revised july 2014) 120lh-2-student
Csc1100 elements of  programming (revised july 2014) 120lh-2-studentCsc1100 elements of  programming (revised july 2014) 120lh-2-student
Csc1100 elements of programming (revised july 2014) 120lh-2-student
IIUM
 

Similaire à Cs141 mid termexam2_fall2017_v1.1 (20)

Cs141 mid termexam2_fall2017_v1.1_solution
Cs141 mid termexam2_fall2017_v1.1_solutionCs141 mid termexam2_fall2017_v1.1_solution
Cs141 mid termexam2_fall2017_v1.1_solution
 
Examf cs-cs141-2-17 solution
Examf cs-cs141-2-17 solutionExamf cs-cs141-2-17 solution
Examf cs-cs141-2-17 solution
 
Cs141 mid termexam v1
Cs141 mid termexam v1Cs141 mid termexam v1
Cs141 mid termexam v1
 
Cs141 mid termexam2_v1answer
Cs141 mid termexam2_v1answerCs141 mid termexam2_v1answer
Cs141 mid termexam2_v1answer
 
Cs141 mid termexam2_v1
Cs141 mid termexam2_v1Cs141 mid termexam2_v1
Cs141 mid termexam2_v1
 
Examf cs-cs141-2-17
Examf cs-cs141-2-17Examf cs-cs141-2-17
Examf cs-cs141-2-17
 
Cs141 mid termexam v3
Cs141 mid termexam v3Cs141 mid termexam v3
Cs141 mid termexam v3
 
Ingenium test(Exam Management System) Project Presentation (Full)
Ingenium test(Exam Management System) Project Presentation (Full)Ingenium test(Exam Management System) Project Presentation (Full)
Ingenium test(Exam Management System) Project Presentation (Full)
 
01-ch01-1-println.ppt java introduction one
01-ch01-1-println.ppt java introduction one01-ch01-1-println.ppt java introduction one
01-ch01-1-println.ppt java introduction one
 
Methods in Java
Methods in JavaMethods in Java
Methods in Java
 
Java
JavaJava
Java
 
ASCILITE 2018: Towards authentic e-Exams at scale: robust networked Moodle
ASCILITE 2018: Towards authentic e-Exams at scale: robust networked MoodleASCILITE 2018: Towards authentic e-Exams at scale: robust networked Moodle
ASCILITE 2018: Towards authentic e-Exams at scale: robust networked Moodle
 
ASCILITE 2018: Do-it-yourself e-Exams (using spreadsheets)
ASCILITE 2018: Do-it-yourself e-Exams (using spreadsheets)ASCILITE 2018: Do-it-yourself e-Exams (using spreadsheets)
ASCILITE 2018: Do-it-yourself e-Exams (using spreadsheets)
 
Qwizdom answer key
Qwizdom answer keyQwizdom answer key
Qwizdom answer key
 
Let's talk about Certifications
Let's talk about CertificationsLet's talk about Certifications
Let's talk about Certifications
 
Cs141 mid1-2017-fall-solution2
Cs141 mid1-2017-fall-solution2Cs141 mid1-2017-fall-solution2
Cs141 mid1-2017-fall-solution2
 
Conceitos Fundamentais de Orientação a Objetos
Conceitos Fundamentais de Orientação a ObjetosConceitos Fundamentais de Orientação a Objetos
Conceitos Fundamentais de Orientação a Objetos
 
Questões de Certificação SCJP
Questões de Certificação SCJPQuestões de Certificação SCJP
Questões de Certificação SCJP
 
Cs141 mid termexam v5_solution
Cs141 mid termexam v5_solutionCs141 mid termexam v5_solution
Cs141 mid termexam v5_solution
 
Csc1100 elements of programming (revised july 2014) 120lh-2-student
Csc1100 elements of  programming (revised july 2014) 120lh-2-studentCsc1100 elements of  programming (revised july 2014) 120lh-2-student
Csc1100 elements of programming (revised july 2014) 120lh-2-student
 

Dernier

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 

Dernier (20)

Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 

Cs141 mid termexam2_fall2017_v1.1

  • 1. Imam University | CCIS Doc. No. 006-01-20140514 Page 1 of 8 Al Imam Mohammad Ibn Saud Islamic University College of Computer and Information Sciences Computer Science Department Course Title: Computer Programming 2 Course Code: CS141 Course Instructor: Dr. Ahmed Khorsi, Dr. Ashraf Shahin, Dr.Yassin Daada, Dr. Adel Ammar, Dr. Aram Alsedrani, Mse. Ebtesam Alobood, Mse. Mai Alammar, Mse. Hessa Alawad, Mse. Shahad Alqefari Exam: Second Midterm Semester: Fall 2017 Date: Duration: 60 Minutes Marks: 15 Privileges: ☐ Open Book ☐ Calculator Permitted ☐ Open Notes ☐ Laptop Permitted Student Name (in English): Student ID: Section No.: Instructions: 1. Answer 3 questions; there are 3 questions in 7 pages. 2. Write your name on each page of the exam paper. 3. Write your answers directly on the question sheets. Use the ends of the question pages for rough work or if you need extra space for your answer. 4. If information appears to be missing from a question, make a reasonable assumption, state your assumption, and proceed. 5. No questions will be answered by the invigilator(s) during the exam period. Official Use Only Question Student Marks Question Marks 1 4 2 3 3 8
  • 2. Imam University | CCIS Doc. No. 006-01-20140514 Page 2 of 8 Total 15
  • 3. Imam University | CCIS Doc. No. 006-01-20140514 Page 3 of 8 Student Name (in English): __________________________________________ Student ID: _____________________________ Question 1: To be answered in (20) Minutes [ ] / 4 Marks 1. What is the output of the following code? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 //Sound.java public interface Sound { public void greeting();} //Cat.java public class Cat implements Sound { public void greeting() {System.out.println("Meow!");} } //Dog.java public class Dog implements Sound { public void greeting() {System.out.println("Woof!");} public void greeting(Dog another) {System.out.println("Woooof!");} } //BigDog.java public class BigDog extends Dog { public void greeting() {System.out.println("Woow!");} public void greeting(Dog another) {System.out.println("Wooowww!");} } // SoundTest.java public class SoundTest { public static void main(String[] args) { Sound animal1 = new Cat(); animal1.greeting(); Sound animal2 = new Dog(); animal2.greeting(); Sound animal3 = new BigDog(); animal3.greeting(); BigDog bigDog1 = new BigDog(); Dog dog2 = (Dog)animal2; try { BigDog bigDog2 = (BigDog)animal3; Dog dog3 = (Dog)animal3; dog2.greeting(dog3); dog3.greeting(dog2); dog2.greeting(bigDog2); bigDog2.greeting(dog2); bigDog2.greeting(bigDog1);} catch (ClassCastException e) { System.err.println("Class cast exception 1 occured");} try { BigDog dog4 = (BigDog) animal2; dog4.greeting(dog4); } catch (ClassCastException e) { System.err.println("Class cast exception 2 occured");} catch (Exception e) { System.err.println("Exception ?"); }} } Answer:
  • 4. Imam University | CCIS Doc. No. 006-01-20140514 Page 4 of 8 Student Name (in English): __________________________________________ Student ID: _____________________________ Question 2: To be answered in(15) Minutes [ ] / 3 Marks In the following code, there are one compilation error in each code segment. List the line number and the cause of the error. Question # Line # Cause of the error 1 2 3 1) 1 2 3 4 5 6 public class ExceptionExample { void method() throws ArithmeticException{ throw ArithmeticException("ArithmeticException Occurred"); } } 2) 1 2 3 4 5 6 7 8 9 10 11 12 13 //A.java public class A { public void addA(String x) { System.out.println(x); } } //B.java public class B extends A{ @Override public void addA() { System.out.println(“Hello”); } } 3) 1 2 3 4 5 6 7 8 9 10 11 //A.java public interface A { public void print(); } //C.java public class C implements A { public void print(String s) { System.out.println(s); } }
  • 5. Imam University | CCIS Doc. No. 006-01-20140514 Page 5 of 8 Student Name (in English): __________________________________________ Student ID: _____________________________ Question 3: To be answered in(45) Minutes [ ] / 8 Marks Consider the class hierarchy below: 1) Write the code of the class Student. The method toString only returns a string containing the student’s name and address. The method addCourseGrade adds a new course and its grade to the arrays courses and grades respectively. A student takes no more than 30 courses for the entire program. If addCourseGrade is called while the student has already 30 courses, it should throw an exception. You are not required to write classes Person and Teacher. 2) Write a driver class PersonTest that does the following: i. Create an array that contains 3 students and 2 teachers. ii. Add one course and its grade for each student. iii. For each element of the array: a. Call toString() polymorphically. b. If the array’s element is a student, print his grades. ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... .......................................................................................................................................................
  • 6. Imam University | CCIS Doc. No. 006-01-20140514 Page 6 of 8 ........................................................................................................................................ ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... .......................................................................................................................................................
  • 7. Imam University | CCIS Doc. No. 006-01-20140514 Page 7 of 8 ........................................................................................................................................ ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... .......................................................................................................................................................
  • 8. Imam University | CCIS Doc. No. 006-01-20140514 Page 8 of 8 ........................................................................................................................................ ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ....................................................................................................................................................... ..............