Need Help? • Live Chat: On the WebAssign Support page • Phone support: (800) 955-8275, and then press 1 • Email support: [email protected] See the WebAssign Support page at www.webassign.net/user_support/student/ for Live Chat and support hours.
Need Help? • Live Chat: On the WebAssign Support page • Phone support: (800) 955-8275, and then press 1 • E-mail support: [email protected] See the WebAssign Support page at www.webassign.net/user_support/student/ for Live Chat and support hours.
Field-At-A-Glance (Handout) 2015 – 2016 Generalist MSW Clinical MSW Learning Competencies 1. Assessing needs and resources 2. Providing resources 3. Obtaining resources (case management) 4. Developing/Improving resources 1. Assessing needs and resources 2. Providing resources 3. Obtaining resources (case management) 4. Developing/Improving resources 1. Clinical practice with individuals 2. Clinical practice with families 3. Clinical practice with groups Expectations Entry-level practice Entry-level practice Community-based clinical practice Type of Internship Spring Semester Only Concurrent with course work Concurrent with course work Total Internship Hours 420 Total Field Hours 400 Total Field Hours 600 Total Field Hours Hours/Semesters in Field (Full Time Students) 28 hours/week during Spring semester Average 14 hours/week Fall and Spring semester (200 hours each semester) Start 2nd week of Class. Average 20 hours/week Fall and Spring semester (300 hours each semester) Hours/Semesters in Field (Part Time Students) 17 hours/week Spring semester (250 hours) 14 hours/week Summer semester (170 hours) Average 10 hours/week Fall and Spring (150 hours each semester) Average 8 hours/week Summer semester (100 hours) Average 13 hours/week Fall and Spring (200 hours each semester) Average 16 hours/week Summer semester (200 hours) Supervision Required 1 hour/week with BSW or MSW 1 hour/week with MSW 1 hour/week with MSW FT – 1.5 hours every other week during Fall and Spring semesters Field Seminar FT – 3 hours/week during Spring semester FT – 1.5 hours every other week during Fall and Spring semesters PT – 2 hours/week Spring semester and 1 hour/week Summer semester PT – 1 hour every other week during Fall, Spring and Summer semesters PT – 1 hour every other week during Fall, Spring and Summer semesters Field Seminar Instructor Field Seminar Instructor Field Seminar Instructor Field Paperwork turned in to: January 2016 BSW University of Central Florida - Office of Field Education 5
Field-At-A-Glance (Handout) 2015 – 2016 Generalist MSW Clinical MSW Learning Competencies 1. Assessing needs and resources 2. Providing resources 3. Obtaining resources (case management) 4. Developing/Improving resources 1. Assessing needs and resources 2. Providing resources 3. Obtaining resources (case management) 4. Developing/Improving resources 1. Clinical practice with individuals 2. Clinical practice with families 3. Clinical practice with groups Expectations Entry-level practice Entry-level practice Community-based clinical practice Type of Internship Spring Semester Only Concurrent with course work Concurrent with course work Total Internship Hours 420 Total Field Hours 400 Total Field Hours 600 Total Field Hours Hours/Semesters in Field (Full Time Students) 28 hours/week during Spring semester Average 14 hours/week Fall and Spring semester (200 hours each semester) Start 2nd week of Class. Average 20 hours/week Fall and Spring semester (300 hours each semester) Hours/Semesters in Field (Part Time Students) 17 hours/week Spring semester (250 hours) 14 hours/week Summer semester (170 hours) Average 10 hours/week Fall and Spring (150 hours each semester) Average 8 hours/week Summer semester (100 hours) Average 13 hours/week Fall and Spring (200 hours each semester) Average 16 hours/week Summer semester (200 hours) Supervision Required 1 hour/week with BSW or MSW 1 hour/week with MSW 1 hour/week with MSW FT – 1.5 hours every other week during Fall and Spring semesters Field Seminar FT – 3 hours/week during Spring semester FT – 1.5 hours every other week during Fall and Spring semesters PT – 2 hours/week Spring semester and 1 hour/week Summer semester PT – 1 hour every other week during Fall, Spring and Summer semesters PT – 1 hour every other week during Fall, Spring and Summer semesters Field Seminar Instructor Field Seminar Instructor Field Seminar Instructor Field Paperwork turned in to: August 2015 - 16 BSW University of Central Florida - Office of Field Education 31
Barriers/Needs To Be Addressed • Need clear job descriptions of program directors/chairs, especially in a post ACT 10 environment • Need to have ample planning and preparedness for the post ACT 10 environment • Need for planning and assessment • Need to improve communication flow throughout the District • Review daycare at regional and metro campuses • Students need help in “navigating” the system – electronically and “faceto-face” • Review bookstore operations districtwide • Need ease in navigating the website • Admin need to come to campuses outside of Truax to meet with students and staff periodically • Need to promote what is available at Madison College • Need to increase communication and input from regional and metro campuses • Refine the registration process • Need to market the campuses • Need to clarify the enrollment process • Need to focus on consistency and clarity • Need to re-establish environment of trust • Need to “reduce” uncertainty • Silos need to be eliminated • Need framework for innovation • Need to “talk to people” about what we have • Need to redesign our thinking processes • Need to create an environment where managers can do their job without fear of losing their job • Reward faculty who make students better • Need greater response time to issues • Need better understanding of who are students are and their needs • Focus on diversity needs to be seen as a direct intent as opposed to lip service • Staff need to be valued and respected for their opinions and thoughts • Need greater outreach efforts • Need to address “bullying” and intimidation • Need to have open and transparent communication • Need to focus on affordability issues to increase access; “Open Door of Opportunity” • College needs to become more culturally relevant – more cultural awareness • Need to address issue aligned with “Best Kept Secret in Town” • Need to reassess our marketing focus to not have marketing drive what we do • Need to determine our campus facilities and operations
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 } // end function operator>> int main() { PhoneNumber phone; // create object phone cout << "Enter phone number in the form (123) 456-7890:\n"; Outline fig08_03.cpp (3 of 3) fig08_03.cpp output (1 of 1) // cin >> phone invokes operator>> by implicitly issuing // the non-member function call operator>>( cin, phone ) cin >> phone; cout << "The phone number entered was: " ; // cout << phone invokes operator<< by implicitly issuing // the non-member function call operator<<( cout, phone ) cout << phone << endl; return 0; } // end main Enter phone number in the form (123) 456-7890: (800) 555-1212 The phone number entered was: (800) 555-1212 2003 Prentice Hall, Inc. All rights reserved. 13