Loading...

Standard 2.01
Quiz by Jeanette Clark
Customize this quiz to suit your class
Instantly translate to 100+ languages
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Give this quiz to my class
1.01 FFA Powerpoint 1.03 Proper Meeting Powerpoint 2.01 Careers Powerpoint 2.02 SAE Powerpoint 3.01 Economic Impact Powerpoint 3.02 Current Trends Powerpoint 3.03 Animal Welfare Powerpoint 4.01 Animal Terms Powerpoint 4.02 Industry Standards Powerpoint 4.03 Animal Evaluation Powerpoint 5.01 Reproduction Powerpoint 5.02 Birds Powerpoint 6.01 Digestion Powerpoint 7.01 Animal Behavior Powerpoint 7.02 Handling Powerpoint
In this video we take a look at the 0:02 fetch to code 0:03 execute cycle including its effect on 0:06 the various registers we've previously 0:12 [Music] 0:14 discussed a computer is defined Definition 0:17 as an electronic device that takes an 0:20 input 0:22 processes data 0:25 and delivers output 0:29 in this simple example you can see we're 0:31 taking the input 5 0:35 we're multiplying it by 2 that's our 0:37 process 0:39 and we're outputting 10. 0:44 but this could be way more complex for 0:46 example of a game console 0:48 the input could be the buttons you press 0:50 on a controller 0:53 the processes would then be carried out 0:55 by the console itself 0:59 and the output would be some form of 1:01 update to a monitor 1:02 and sound out for a speaker possibly 1:04 vibration feedback through the 1:06 controller 1:10 to process data a computer follows a set 1:13 of instructions 1:14 known as a computer program 1:18 if we take the lid off a typical desktop 1:20 computer we can identify 1:22 two critical components the memory 1:26 that stores the program and the central 1:29 processing unit or processor 1:31 which is under this large fan and 1:33 carries out the instructions 1:37 a computer carries out its function by 1:40 fetching 1:41 instructions decoding them and then 1:43 executing them 1:44 in a continuous repetitive cycle 1:46 billions of times a second 1:48 let's look at each of these stages in a 1:50 little more detail Fetch 1:53 so let's start with the fetch stage the 1:55 very first thing that happens 1:57 is the program counter is checked as it 2:00 holds the address 2:01 of the next instruction to be executed 2:07 the address stored is then copied into 2:09 the memory address register 2:14 the address is then sent along the 2:16 address bus to main memory 2:18 where it waits to receive a signal from 2:21 the control 2:22 bus so it knows what to do 2:27 as we want to read the data that's 2:29 stored in memory address 2:30 0 0 0 0 the control unit sends 2:34 a read signal along the control bus to 2:36 main memory 2:41 now main memory knows the data needs to 2:44 be read 2:45 the content stored in memory address 000 2:49 can be sent along the data bus to the 2:51 memory data register 2:56 now as we're currently in the process of 2:58 fetching an instruction 3:00 the data received by the memory data 3:03 register gets copied 3:04 into the current instruction register 3:11 the instruction effectively has now been 3:14 fetched from memory 3:16 just before we proceed to the decode 3:18 phase we now 3:19 increment the program counter so that 3:22 the address it contains 3:24 points to the address of the next 3:26 instruction which will need to be 3:30 executed 3:32 the instruction now being held in the 3:33 current instruction register 3:35 is ready to be decoded 3:39 now as we mentioned in the previous 3:41 video the instruction is made up of two 3:43 parts 3:44 we have the op code that's what it is we 3:47 need to do 3:50 and we have the operand what are we 3:53 going to do it to 3:55 now the operand could contain the actual 3:57 data 3:58 or indeed it could contain an address of 4:01 where the data is to be found 4:06 by decoding this instruction we can see 4:08 the operation we need 4:10 is a load operation so we need to load 4:14 the contents of memory location0101 4:18 into the cpus accumulator 4:25 in the exam a simple model will be used 4:27 to describe the 4:29 structure of any given instruction 4:32 you're not going to be expected to 4:34 define how an opcode is made up 4:36 but simply to interpret opcodes in the 4:39 given context of an exam 4:40 question in the example here 4:44 you can see there's a total of 16 4:46 different opcodes available 4:48 and this is because we're using four 4:50 bits for our representation 4:56 so now we've fetched the instruction and 4:59 we've decoded it so we know what we need 5:00 to do 5:01 we're finally ready to execute it 5:05 so we now send address 0101 5:08 to the memory dress register 5:13 now we're in the memory address register 5:15 we can finally send the address 5:18 down the address bus to main memory 5:24 this time we want to read the data 5:26 that's stored in memory 5:28 and so the control unit again sends a 5:30 read signal along the control bus 5:36 so main memories now receive an address 5:38 and a read signal 5:40 so the content stored at memory location 5:43 0101 5:44 can now be sent along the data bus back 5:46 to the cpu 5:47 and into the memory data register 5:54 finally the contents of the memory data 5:56 register are copied to the accumulator 5:59 and this is one of a number of general 6:00 purpose registers found in the cpu 6:04 this first instruction is now complete Branching 6:11 so what does this program actually do 6:14 you should be able to work it through 6:16 carefully and figure it out 6:19 we're now pointing instructions zero 6:21 zero zero one in the program counter 6:23 and we're ready to fetch the second 6:25 instruction 6:27 at the end of this video we're gonna 6:29 provide you with the answer 6:34 so let's talk a second about programs 6:37 that branch 6:40 on the left here we have a very simple 6:42 piece of pseudo code 6:44 line zero says first execute this line 6:46 of code 6:47 line 1 now execute this line and then 6:50 line 2 says 6:52 if the age is greater than 18 then 6:56 we're going to execute lines 3 and 4 6:58 otherwise 6:59 we're going to execute lines six and 7:02 seven 7:03 so this program doesn't necessarily 7:05 follow strictly in sequence from line 7:07 zero through to seven there's a chance 7:10 here the program may branch and jump 7:14 around 7:16 so we're going to pretend that this 7:17 program has been loaded into memory 7:20 each line of code on the left here has 7:23 ended up 7:24 as a location in memory now this is not 7:27 strictly how this would happen in this 7:28 one-to-one way 7:29 but for the purpose of example it's 7:31 absolutely fine 7:35 so the program counter starts by 7:37 pointing to memory address zero 7:39 and we fetch the first instruction 7:41 decode it and execute it 7:44 it then updates and tells us the next 7:47 instruction 7:48 is zero zero zero one because remember 7:50 the program counter is being incremented 7:52 so we fetch it decode it and we execute 7:55 line one of our program 7:59 we then fetch line two which in binary 8:01 is one 8:02 zero 8:06 now at this point depending on what 8:10 happens during the execution 8:11 of line two the program may be required 8:15 to fetch line three from memory or 8:18 line five from memory 8:25 so let's look at how this actually works 8:27 because we've said the program counter 8:28 simply gets incremented 8:31 well in the current instruction register 8:33 we have an instruction with the op code 8:36 0 1 1 0. 8:41 now when we look this up in the decode 8:43 unit we discover that this 8:45 code means branch always 8:51 this replaces the value held in the 8:54 program counter 8:56 with the contents of the operand that's 8:58 the second part of the instruction 9:01 from the current instruction register so 9:03 this case 9:04 one zero zero one 9:09 now when the next fetch cycle begins the 9:12 program counter is obviously checked 9:14 and as its contents have been previously 9:16 updated to a new memory location 9:19 and not simply incremented the program 9:22 effectively is able to jump 9:24 around memory 9:28 so having watched this video you should 9:30 be able to answer the following key 9:32 question 9:33 how does a cpu work 9:39 okay so let's um answer the question we 9:41 posed 9:42 earlier what did that program actually 9:48 do 9:50 so this is the first fetch to code 9:53 execute cycle 9:55 and this is the one that we ran through 9:57 in detail earlier 9:58 it effectively loaded the contents of 10:01 the memory 10:02 stored at location location0101 10:05 into the accumulator in other words 10:08 the dna number 3 is moved 10:11 from memory into the cpu 10:18 we then proceed onto the second fetch 10:20 decode execute cycle 10:23 now this one adds the contents of memory 10:27 located at 0 1 1 0 10:30 to the current contents of the 10:32 accumulator 10:34 so in other words the dna number one 10:38 because that's what's stored at address 10:40 zero one one zero 10:43 is added to the number three that was in 10:45 the accumulator 10:46 the results are stored back over the 10:48 accumulator 10:49 so effectively we've done three plus one 10:53 equals four 10:58 the third fetch to code execute cycle 11:00 stores the contents which are in the 11:02 accumulator 11:03 into memory location zero one one one 11:07 and that's because the op code the first 11:09 part of this current instruction 11:10 zero zero one one is the command to 11:13 store when we look it up in the decoder 11:15 unit 11:16 so in other words the result of the 11:17 previous calculation three plus one 11:19 equals four 11:20 is now written back into main memory 11:28 the fourth fetch decode execute cycle 11:30 outputs the contents of the accumulator 11:33 remember they were copied into main 11:34 memory but they're still held in the 11:35 accumulator 11:37 so in this simple abstraction the number 11:40 four is now 11:41 output to the user so they can see the 11:43 result of the calculation 11:49 the fifth and final fetch code execute 11:51 cycle 11:52 brings a halt to the current program 11:58 so this very simple program which has 12:01 five 12:02 fetch decode execute cycles has 12:04 performed the calculation 12:06 three plus one is then stored the result 12:09 in main memory 12:10 and displayed the result four to the 12:12 user 12:13 and in a high-level language this may 12:15 look something very similar to the 12:17 following two lines of code 12:20 sum variable equals num1 plus num2 12:24 print sum to the user 12:27 so you can start to get an appreciation 12:29 here of how the high level code you 12:32 write actually ends up being fetched 12:34 decoded 12:35 and executed inside a processor 12:38 of course your processor is doing 12:40 billions and billions of these 12:42 operations a second 12:43 which when you think about it is really 12:45 very impressive 12:52 [Music] 13:03 you. make 10 questions for a standerd of a level
ILLINOIS PROFESSIONAL TEACHING STANDARDS (2013) Standard 1 - Teaching Diverse Students â The competent teacher understands the diverse characteristics and abilities of each student and how individuals develop and learn within the context of their social, economic, cultural, linguistic, and academic experiences. The teacher uses these experiences to create instructional opportunities that maximize student learning. Knowledge Indicators â The competent teacher: 1A) understands the spectrum of student diversity (e.g., race and ethnicity, socioeconomic status, special education, gifted, English language learners (ELL), sexual orientation, gender, gender identity) and the assets that each student brings to learning across the curriculum; 1B) understands how each student constructs knowledge, acquires skills, and develops effective and efficient critical thinking and problem-solving capabilities; 1C) understands how teaching and student learning are influenced by development (physical, social and emotional, cognitive, linguistic), past experiences, talents, prior knowledge, economic circumstances and diversity within the community; 1D) understands the impact of cognitive, emotional, physical, and sensory disabilities on learning and communication pursuant to the Individuals with Disabilities Education Improvement Act (also referred to as âIDEAâ) (20 USC 1400 et seq.), its implementing regulations (34 CFR 300; 2006), Article 14 of the School Code [105 ILCS 5/Art.14] and 23 Ill. Adm. Code 226 (Special Education); 1E) understands the impact of linguistic and cultural diversity on learning and communication; 1F) understands his or her personal perspectives and biases and their effects on oneâs teaching; and 1G) understands how to identify individual needs and how to locate and access technology, services, and resources to address those needs. Performance Indicators â The competent teacher: 1H) analyzes and uses student information to design instruction that meets the diverse needs of students and leads to ongoing growth and achievement; 1I) stimulates prior knowledge and links new ideas to already familiar ideas and experiences; 1J) differentiates strategies, materials, pace, levels of complexity, and language to introduce concepts and principles so that they are meaningful to students at varying levels of development and to students with diverse learning needs; 1K) facilitates a learning community in which individual differences are respected; and 1L) uses information about studentsâ individual experiences, families, cultures, and communities to create meaningful learning opportunities and enrich instruction for all students. Standard 2 - Content Area and Pedagogical Knowledge â The competent teacher has in-depth understanding of content area knowledge that includes central concepts, methods of inquiry, structures of the disciplines, and content area literacy. The teacher creates meaningful learning experiences for each student based upon interactions among content area and pedagogical knowledge, and evidence-based practice. Knowledge Indicators â The competent teacher: 2A) understands theories and philosophies of learning and human development as they relate to the range of students in the classroom; 2B) understands major concepts, assumptions, debates, and principles; processes of inquiry; and theories that are central to the disciplines; 2C) understands the cognitive processes associated with various kinds of learning (e.g., critical and creative thinking, problem-structuring and problem-solving, invention, memorization, and recall) 2 and ensures attention to these learning processes so that students can master content standards; 2D) understands the relationship of knowledge within the disciplines to other content areas and to life applications; 2E) understands how diverse student characteristics and abilities affect processes of inquiry and influence patterns of learning; 2F) knows how to access the tools and knowledge related to latest findings (e.g., research, practice, methodologies) and technologies in the disciplines; 2G) understands the theory behind and the process for providing support to promote learning when concepts and skills are first being introduced; and 2H) understands the relationship among language acquisition (first and second), literacy development, and acquisition of academic content and skills. Performance Indicators â The competent teacher: 2I) evaluates teaching resources and materials for appropriateness as related to curricular content and each studentâs needs; 2J) uses differing viewpoints, theories, and methods of inquiry in teaching subject matter concepts; 2K) engages students in the processes of critical thinking and inquiry and addresses standards of evidence of the disciplines; 2L) demonstrates fluency in technology systems, uses technology to support instruction and enhance student learning, and designs learning experiences to develop student skills in the application of technology appropriate to the disciplines; 2M) uses a variety of explanations and multiple representations of concepts that capture key ideas to help each student develop conceptual understanding and address common misunderstandings; 2N) facilitates learning experiences that make connections to other content areas and to life experiences; 2O) designs learning experiences and utilizes assistive technology and digital tools to provide access to general curricular content to individuals with disabilities; 2P) adjusts practice to meet the needs of each student in the content areas; and 2Q) applies and adapts an array of content area literacy strategies to make all subject matter accessible to each student. Standard 3 - Planning for Differentiated Instruction â The competent teacher plans and designs instruction based on content area knowledge, diverse student characteristics, student performance data, curriculum goals, and the community context. The teacher plans for ongoing student growth and achievement. Knowledge Indicators â The competent teacher: 3A) understands the Illinois Learning Standards (23 Ill. Adm. Code 1.Appendix D), curriculum development process, content, learning theory, assessment, and student development and knows how to incorporate this knowledge in planning differentiated instruction; 3B) understands how to develop short- and long-range plans, including transition plans, consistent with curriculum goals, student diversity, and learning theory; 3C) understands cultural, linguistic, cognitive, physical, and social and emotional differences, and considers the needs of each student when planning instruction; 3D) understands when and how to adjust plans based on outcome data, as well as student needs, goals, and responses; 3E) understands the appropriate role of technology, including assistive technology, to address student needs, as well as how to incorporate contemporary tools and resources to maximize student learning; 3 3F) understands how to co-plan with other classroom teachers, parents or guardians, paraprofessionals, school specialists, and community representatives to design learning experiences; and 3G) understands how research and data guide instructional planning, delivery, and adaptation. Performance Indicators â The competent teacher: 3H) establishes high expectations for each studentâs learning and behavior; 3I) creates short-term and long-term plans to achieve the expectations for student learning; 3J) uses data to plan for differentiated instruction to allow for variations in individual learning needs; 3K) incorporates experiences into instructional practices that relate to a studentâs current life experiences and to future life experiences; 3L) creates approaches to learning that are interdisciplinary and that integrate multiple content areas; 3M) develops plans based on student responses and provides for different pathways based on student needs; 3N) accesses and uses a wide range of information and instructional technologies to enhance a studentâs ongoing growth and achievement; 3O) when planning instruction, addresses goals and objectives contained in plans developed under Section 504 of the Rehabilitation Act of 1973 (29 USC 794), individualized education programs (IEP) (see 23 Ill. Adm. Code 226 (Special Education)) or individual family service plans (IFSP) (see 23 Ill. Adm. Code 226 and 34 CFR 300.24; 2006); 3P) works with others to adapt and modify instruction to meet individual student needs; and 3Q) develops or selects relevant instructional content, materials, resources, and strategies (e.g., project-based learning) for differentiating instruction. Standard 4 - Learning Environment â The competent teacher structures a safe and healthy learning environment that facilitates cultural and linguistic responsiveness, emotional well-being, self-efficacy, positive social interaction, mutual respect, active engagement, academic risk-taking, self-motivation, and personal goal-setting. Knowledge Indicators â The competent teacher: 4A) understands principles of and strategies for effective classroom and behavior management; 4B) understands how individuals influence groups and how groups function in society; 4C) understands how to help students work cooperatively and productively in groups; 4D) understands factors (e.g., self-efficacy, positive social interaction) that influence motivation and engagement; 4E) knows how to assess the instructional environment to determine how best to meet a studentâs individual needs; 4F) understands laws, rules, and ethical considerations regarding behavior intervention planning and behavior management (e.g., bullying, crisis intervention, physical restraint); 4G) knows strategies to implement behavior management and behavior intervention planning to ensure a safe and productive learning environment; and 4H) understands the use of student data (formative and summative) to design and implement behavior management strategies. Performance Indicators â The competent teacher: 4I) creates a safe and healthy environment that maximizes student learning; 4J) creates clear expectations and procedures for communication and behavior and a physical setting conducive to achieving classroom goals; 4K) uses strategies to create a smoothly functioning learning community in which students assume responsibility for themselves and one another, participate in decision-making, work collaboratively and independently, use appropriate technology, and engage in purposeful learning activities; 4 4L) analyzes the classroom environment and makes decisions to enhance cultural and linguistic responsiveness, mutual respect, positive social relationships, student motivation, and classroom engagement; 4M) organizes, allocates, and manages time, materials, technology, and physical space to provide active and equitable engagement of students in productive learning activities; 4N) engages students in and monitors individual and group-learning activities that help them develop the motivation to learn; 4O) uses a variety of effective behavioral management techniques appropriate to the needs of all students that include positive behavior interventions and supports; 4P) modifies the learning environment (including the schedule and physical arrangement) to facilitate appropriate behaviors and learning for students with diverse learning characteristics; and 4Q) analyzes student behavior data to develop and support positive behavior. Standard 5 - Instructional Delivery â The competent teacher differentiates instruction by using a variety of strategies that support critical and creative thinking, problem-solving, and continuous growth and learning. This teacher understands that the classroom is a dynamic environment requiring ongoing modification of instruction to enhance learning for each student. Knowledge Indicators â The competent teacher: 5A) understands the cognitive processes associated with various kinds of learning; 5B) understands principles and techniques, along with advantages and limitations, associated with a wide range of evidence-based instructional practices; 5C) knows how to implement effective differentiated instruction through the use of a wide variety of materials, technologies, and resources; 5D) understands disciplinary and interdisciplinary instructional approaches and how they relate to life and career experiences; 5E) knows techniques for modifying instructional methods, materials, and the environment to facilitate learning for students with diverse learning characteristics; 5F) knows strategies to maximize student attentiveness and engagement; 5G) knows how to evaluate and use student performance data to adjust instruction while teaching; and 5H) understands when and how to adapt or modify instruction based on outcome data, as well as student needs, goals, and responses. Performance Indicators â The competent teacher: 5I) uses multiple teaching strategies, including adjusted pacing and flexible grouping, to engage students in active learning opportunities that promote the development of critical and creative thinking, problem-solving, and performance capabilities; 5J) monitors and adjusts strategies in response to feedback from the student; 5K) varies his or her role in the instructional process as instructor, facilitator, coach, or audience in relation to the content and purposes of instruction and the needs of students; 5L) develops a variety of clear, accurate presentations and representations of concepts, using alternative explanations to assist studentsâ understanding and presenting diverse perspectives to encourage critical and creative thinking; 5M) uses strategies and techniques for facilitating meaningful inclusion of individuals with a range of abilities and experiences; 5N) uses technology to accomplish differentiated instructional objectives that enhance learning for each student; 5O) models and facilitates effective use of current and emerging digital tools to locate, analyze, evaluate, and use information resources to support research and learning; 5P) uses student data to adapt the curriculum and implement instructional strategies and materials according to the characteristics of each student; 5 5Q) uses effective co-planning and co-teaching techniques to deliver instruction to all students; 5R) maximizes instructional time (e.g., minimizes transitional time); and 5S) implements appropriate evidence-based instructional strategies. Standard 6 - Reading, Writing, and Oral Communication â The competent teacher has foundational knowledge of reading, writing, and oral communication within the content area and recognizes and addresses student reading, writing, and oral communication needs to facilitate the acquisition of content knowledge. Knowledge Indicators â The competent teacher: 6A) understands appropriate and varied instructional approaches used before, during, and after reading, including those that develop word knowledge, vocabulary, comprehension, fluency, and strategy use in the content areas; 6B) understands that the reading process involves the construction of meaning through the interactions of the reader's background knowledge and experiences, the information in the text, and the purpose of the reading situation; 6C) understands communication theory, language development, and the role of language in learning; 6D) understands writing processes and their importance to content learning; 6E) knows and models standard conventions of written and oral communications; 6F) recognizes the relationships among reading, writing, and oral communication and understands how to integrate these components to increase content learning; 6G) understands how to design, select, modify, and evaluate a wide range of materials for the content areas and the reading needs of the student; 6H) understands how to use a variety of formal and informal assessments to recognize and address the reading, writing, and oral communication needs of each student; and 6I) knows appropriate and varied instructional approaches, including those that develop word knowledge, vocabulary, comprehension, fluency, and strategy use in the content areas. Performance Indicators â The competent teacher: 6J) selects, modifies, and uses a wide range of printed, visual, or auditory materials, and online resources appropriate to the content areas and the reading needs and levels of each student (including ELLs, and struggling and advanced readers); 6K) uses assessment data, student work samples, and observations from continuous monitoring of student progress to plan and evaluate effective content area reading, writing, and oral communication instruction; 6L) facilitates the use of appropriate word identification and vocabulary strategies to develop each studentâs understanding of content; 6M) teaches fluency strategies to facilitate comprehension of content; 6N) uses modeling, explanation, practice, and feedback to teach students to monitor and apply comprehension strategies independently, appropriate to the content learning; 6O) teaches students to analyze, evaluate, synthesize, and summarize information in single texts and across multiple texts, including electronic resources; 6P) teaches students to develop written text appropriate to the content areas that utilizes organization (e.g., compare/contrast, problem/solution), focus, elaboration, word choice, and standard conventions (e.g., punctuation, grammar); 6Q) integrates reading, writing, and oral communication to engage students in content learning; 6R) works with other teachers and support personnel to design, adjust, and modify instruction to meet studentsâ reading, writing, and oral communication needs; and 6S) stimulates discussion in the content areas for varied instructional and conversational purposes. Standard 7 - Assessment â The competent teacher understands and uses appropriate formative and summative assessments for determining student needs, monitoring student progress, measuring student 6 growth, and evaluating student outcomes. The teacher makes decisions driven by data about curricular and instructional effectiveness and adjusts practices to meet the needs of each student. Knowledge Indicators â The competent teacher: 7A) understands the purposes, characteristics, and limitations of different types of assessments, including standardized assessments, universal screening, curriculum-based assessment, and progress monitoring tools; 7B) understands that assessment is a means of evaluating how students learn and what they know and are able to do in order to meet the Illinois Learning Standards; 7C) understands measurement theory and assessment-related issues, such as validity, reliability, bias, and appropriate and accurate scoring; 7D) understands current terminology and procedures necessary for the appropriate analysis and interpretation of assessment data; 7E) understands how to select, construct, and use assessment strategies and instruments for diagnosis and evaluation of learning and instruction; 7F) knows research-based assessment strategies appropriate for each student; 7G) understands how to make data-driven decisions using assessment results to adjust practices to meet the needs of each student; 7H) knows legal provisions, rules, and guidelines regarding assessment and assessment accommodations for all student populations; and 7I) knows assessment and progress monitoring techniques to assess the effectiveness of instruction for each student. Performance Indicators â The competent teacher: 7J) uses assessment results to determine student performance levels, identify learning targets, select appropriate research-based instructional strategies, and implement instruction to enhance learning outcomes; 7K) appropriately uses a variety of formal and informal assessments to evaluate the understanding, progress, and performance of an individual student and the class as a whole; 7L) involves students in self-assessment activities to help them become aware of their strengths and needs and encourages them to establish goals for learning; 7M) maintains useful and accurate records of student work and performance; 7N) accurately interprets and clearly communicates aggregate student performance data to students, parents or guardians, colleagues, and the community in a manner that complies with the requirements of the Illinois School Student Records Act [105 ILCS 10], 23 Ill. Adm. Code 375 (Student Records), the Family Educational Rights and Privacy Act (FERPA) (20 USC 1232g) and its implementing regulations (34 CFR 99; December 9, 2008); 7O) effectively uses appropriate technologies to conduct assessments, monitor performance, and assess student progress; 7P) collaborates with families and other professionals involved in the assessment of each student; 7Q) uses various types of assessment procedures appropriately, including making accommodations for individual students in specific contexts; and 7R) uses assessment strategies and devices that are nondiscriminatory, and take into consideration the impact of disabilities, methods of communication, cultural background, and primary language on measuring knowledge and performance of students. Standard 8 - Collaborative Relationships â The competent teacher builds and maintains collaborative relationships to foster cognitive, linguistic, physical, and social and emotional development. This teacher works as a team member with professional colleagues, students, parents or guardians, and community members. Knowledge Indicators â The competent teacher: 8A) understands schools as organizations within the larger community context; 7 8B) understands the collaborative process and the skills necessary to initiate and carry out that process; 8C) collaborates with others in the use of data to design and implement effective school interventions that benefit all students; 8D) understands the benefits, barriers, and techniques involved in parent and family collaborations; 8E) understands school- and work-based learning environments and the need for collaboration with all organizations (e.g., businesses, community agencies, nonprofit organizations) to enhance student learning; 8F) understands the importance of participating on collaborative and problem-solving teams to create effective academic and behavioral interventions for all students; 8G) understands the various models of co-teaching and the procedures for implementing them across the curriculum; 8H) understands concerns of families of students with disabilities and knows appropriate strategies to collaborate with students and their families in addressing these concerns; and 8I) understands the roles and the importance of including students with disabilities, as appropriate, and all team members in planning individualized education programs (i.e, IEP, IFSP, Section 504 plan) for students with disabilities. Performance Indicators â The competent teacher: 8J) works with all school personnel (e.g., support staff, teachers, paraprofessionals) to develop learning climates for the school that encourage unity, support a sense of shared purpose, show trust in one another, and value individuals; 8K) participates in collaborative decision-making and problem-solving with colleagues and other professionals to achieve success for all students; 8L) initiates collaboration with others to create opportunities that enhance student learning; 8M) uses digital tools and resources to promote collaborative interactions; 8N) uses effective co-planning and co-teaching techniques to deliver instruction to each student; 8O) collaborates with school personnel in the implementation of appropriate assessment and instruction for designated students; 8P) develops professional relationships with parents and guardians that result in fair and equitable treatment of each student to support growth and learning; 8Q) establishes respectful and productive relationships with parents or guardians and seeks to develop cooperative partnerships to promote student learning and well-being; 8R) uses conflict resolution skills to enhance the effectiveness of collaboration and teamwork; 8S) participates in the design and implementation of individualized instruction for students with special needs (i.e., IEPs, IFSP, transition plans, Section 504 plans), ELLs, and students who are gifted; and 8T) identifies and utilizes community resources to enhance student learning and to provide opportunities for students to explore career opportunities. Standard 9 - Professionalism, Leadership, and Advocacy â The competent teacher is an ethical and reflective practitioner who exhibits professionalism; provides leadership in the learning community; and advocates for students, parents or guardians, and the profession. Knowledge Indicators â The competent teacher: 9A) evaluates best practices and research-based materials against benchmarks within the disciplines; 9B) knows laws and rules (e.g., mandatory reporting, sexual misconduct, corporal punishment) as a foundation for the fair and just treatment of all students and their families in the classroom and school; 9C) understands emergency response procedures as required under the School Safety Drill Act [105 ILCS 128/1], including school safety and crisis intervention protocol, initial response 8 actions (e.g., whether to stay in or evacuate a building), and first response to medical emergencies (e.g., first aid and life-saving techniques); 9D) identifies paths for continuous professional growth and improvement, including the design of a professional growth plan; 9E) is cognizant of his or her emerging and developed leadership skills and the applicability of those skills within a variety of learning communities; 9F) understands the roles of an advocate, the process of advocacy, and its place in combating or promoting certain school district practices affecting students; 9G) understands local and global societal issues and responsibilities in an evolving digital culture; and 9H) understands the importance of modeling appropriate dispositions in the classroom. Performance Indicators â The competent teacher: 9I) models professional behavior that reflects honesty, integrity, personal responsibility, confidentiality, altruism and respect; 9J) maintains accurate records, manages data effectively, and protects the confidentiality of information pertaining to each student and family; 9K) reflects on professional practice and resulting outcomes; engages in self-assessment; and adjusts practices to improve student performance, school goals, and professional growth; 9L) communicates with families, responds to concerns, and contributes to enhanced family participation in student education; 9M) communicates relevant information and ideas effectively to students, parents or guardians, and peers, using a variety of technology and digital-age media and formats; 9N) collaborates with other teachers, students, parents or guardians, specialists, administrators, and community partners to enhance studentsâ learning and school improvement; 9O) participates in professional development, professional organizations, and learning communities, and engages in peer coaching and mentoring activities to enhance personal growth and development; 9P) uses leadership skills that contribute to individual and collegial growth and development, school improvement, and the advancement of knowledge in the teaching profession; 9Q) proactively serves all students and their families with equity and honor and advocates on their behalf, ensuring the learning and well-being of each child in the classroom; 9R) is aware of and complies with the mandatory reporter provisions of Section 4 of the Abused and Neglected Child Reporting Act [325 ILCS 5/4]; 9S) models digital etiquette and responsible social actions in the use of digital technology; and 9T) models and teaches safe, legal, and ethical use of digital information and technology, including respect for copyright, intellectual property, and the appropriate documentation of sources.
Caratteristiche e funzionalitĂ degli standard europei per la posta elettronica certificata Con oltre 14 milioni e 600 mila caselle attive nel terzo bimestre 2022 (fonte AgID), la posta elettronica certificata continua a dimostrarsi uno strumento chiave per lâinnovazione digitale in Italia. Ecco perchĂŠ si guarda alla PEC europea come a un ulteriore traguardo per creare un sistema di comunicazione qualificata tra cittadini e imprese e anche tra privati e Pubblica Amministrazione. La nuova PEC europea ha iniziato il suo iter a gennaio 2022 e nel corso dello stesso anno ha visto il rilascio dello standard ETSI (Istituto Europeo per le norme di Telecomunicazioni), fondamentale per la realizzazione di un servizio di posta elettronica conforme al Regolamento europeo n. 910/2014 â eIDAS. Adesso, la parola dâordine nel settore è interoperabilitĂ , ovvero la possibilitĂ di scambiare in modo sicuro comunicazioni elettroniche di valore probatorio, attraverso un processo di standardizzazione europeo. Dal 2024 la PEC in Italia lascerĂ quindi il posto alla Registered Electronic Mail (REM), la PEC europea. Nuovo standard PEC europea: quali sono i principi? Lo standard europeo ETSI EN 319 532-4 specifica le caratteristiche della CSI (Common Service Interface): lâinterfaccia tecnologica condivisa che permette lo scambio sicuro tra i gestori e tra gli utilizzatori di servizi di recapito qualificato. Tale infrastruttura si basa su due elementi: ⢠ERDS (Electronic Registered Delivery Services) ⢠REM (Registered Electronic Mail) Le funzionalitĂ di ERDS e REM hanno come obiettivo il settaggio di requisiti tecnici necessari per verificare e certificare: IdentitĂ del cittadino UE possessore di un indirizzo di posta certificata; IntegritĂ del contenuto; Data e ora dâinvio e di ricezione del messaggio. In sintesi, lo standard ETSI EN 319 532-4 amplia i confini della PEC che diventa un sistema di comunicazione qualificata a livello europeo. Posta certificata europea: cosa cambia? Il cambiamento piĂš sostanziale che riguarda le caselle PEC attivate in Italia è lâintegrazione dei requisiti SERC (Servizio Elettronico di Recapito Certificato) con quelli SERCQ (Servizio Elettronico di Recapito Certificato Qualificato). In altre parole, la PEC italiana come è oggi conferisce alle comunicazioni requisiti di valore legale, tanto da essere equiparabile alla tradizionale raccomandata con avviso di ricezione, ma non certifica lâidentitĂ del titolare della casella. Motivo per cui è necessario adeguare la casella PEC agli standard europei attraverso due step: il riconoscimento del titolare della casella e lâattivazione della verifica in 2 passaggi. Come funziona lâadeguamento PEC agli standard europei? Per allinearsi ai requisiti sanciti dallo standard ETSI sul servizio di recapito certificato qualificato, il titolare di una casella PEC dovrĂ procedere in questo modo. 1. Riconoscimento dellâidentitĂ Tale passaggio è necessario per garantire lâattendibilitĂ del mittente, persona fisica o rappresentante legale di una persona giuridica. La verifica dellâidentitĂ può essere fatta attraverso uno degli strumenti di identificazione elettronica riconosciuti dalla Commissione europea: IdentitĂ digitale SPID; Tessera Sanitaria / Carta Nazionale dei Servizi; Firma digitale anche remota; Carta dâIdentitĂ Elettronica (CIE 3.0); Piattaforma DVO (De Visu Online) con operatore. 2. Verifica in 2 passaggi (2FA) Lâautenticazione a 2 fattori rafforza il livello di sicurezza dellâaccount di posta attraverso il doppio controllo di accesso al servizio: inserimento delle credenziali (indirizzo PEC e password) e codice di autenticazione. Il codice viene inviato su un dispositivo precedentemente verificato e secondo la modalitĂ di ricezione che si è scelta: Notifica PUSH tramite app su dispositivo mobile; Token OTP tramite app; Token OTP via SMS. Dopo che la verifica in 2 passaggi è stata attivata, per consultare la casella PEC sarĂ necessario inserire la password e autorizzare lâaccesso o con la conferma della notifica PUSH, o con lâinserimento dellâOTP (One Time Password). Come si attiva la PEC europea obbligatoria? Le fasi di implementazione del processo sono ancora in attesa del DPCM normativo, ma nel frattempo i provider di PEC Legalmail stanno giĂ cominciando ad abilitare i sistemi di verifica. Fra i gestori riconosciuti da AgID, Infocert PEC permette giĂ adesso di effettuare lâupgrade della casella Legalmail identificando il titolare in pochi semplici step e mantenendo integre tutte le funzionalitĂ del servizio.
Good day this is Chris today we will be doing a quick walkthrough on ISO 14001 2015 Environmental Management System and its main clauses let's get started ISO 14001 2015 Environmental Management System is a globally recognized standard for environment Management systems or EMS an EMS is a framework that organizations use to manage their environmental impact comply with regulations and improve their environmental performance the standard outlines are requirements for an EMS including the development of an environmental policy the identification of environmental aspects and impacts the establishment of objectives and targets the implementation of operational control monitoring and measurement systems and the ongoing review and Improvement of the system ISO 14001 is a flexible standard that can be used by organizations of any size or type regardless of their environment impact or level of environment performance it provides a practical framework for organizations to manage their environmental impact reduce environment risks and demonstrate their commitment on sustainability to their stakeholders here is the standard that provides a structured approach to develop an EMS which includes several key steps one organizations must develop an environmental policy that outlines their commitment to environmental sustainability this policy should be communicated to all employees and stakeholders two organizations must identify their environmental aspects and impacts this involves identifying the activities products and services that have an impact on the environment as well as the potential environmental consequences of those impacts three once the environmental aspects and the impacts have been identified organizations must establish environmental objectives and targets these objectives and targets should be specific measurable achievable relevant and time-bound 4. after setting objectives and targets organizations must Implement operational controls and establish monitoring and measurement systems to ensure that they are meeting their objectives and targets finally organizations must review and continually improve their EMS this involves conducting regular audits reviewing the EMS to ensure that it remains relevant and effective and making any necessary changes or improvements the main Clause of iso 14001 2015 apart from its scope normative references and terms and conditions that the main Clauses of iso 14001 2015 can be listed as context of the organization leadership planning support operation performance evaluation and Improvement Clause 4.0 context of the organization is about understanding the organization and its context understanding the needs and expectations of the interested parties determining the scope of the Environmental Management System EMS and Environmental Management System itself Clause 5.0 talks about leadership and commitment Environmental Policy organizational roles responsibility and authorities Clause 6.0 planning focuses on actions to address risk and opportunities as well as environmental objectives and planning to achieve them Clause 7.0 support are detailed requirements on resources competence awareness communication that includes external and internal communication documented information that involves creating updating in control of documented information Clause 8.0 operation talks about operational planning and control as well as emergency preparedness and response overall the design of iso 14001 2015 provides guidelines to form a system that is structured to cater the requirements of stakeholder needs and expectations to drive life cycle perspective and Energy Efficiency as pictured here Clause 9.0 performance evaluation provides guidelines to monitoring measurement analysis and evaluation evaluation compliance and management review an additional note here is that ISO 19011 2018 guidelines for auditing Management Systems which is an audit process that will determine the scope to establish the audit criteria by collecting evidence evaluating the evidence and then draw a conclusion based on the findings as pictured here [Music] finally Clause 10.0 Improvement talks about how Improvement is an integral factor to an effective Environmental Management system through General non-conformity and corrective action and continual Improvement talking about Improvement it is always continual in putting efforts towards the betterment of the existing system here is a snapshot of the main Clauses of iso 14001 2015 [Music] I hope you find this video useful we are industry experts specialized in management system consultancy and Industry relevant corporate training give us a call and let us help you drive your business excellence and upskill your employees to elevate workplace efficiency [Music] CREATE 10 MCQ AND 2 SAQ QUESTIONS BASED ON THE ABOVE PARAGRAPH
âThereâs No Such Thing as Sound Scienceâ by By Christie Aschwanden was a lead science writer for FiveThirtyEight. FiveThirtyEight, Science, Dec. 6, 2017 Science is being turned against itself. For decades, its twin ideals of transparency and rigor have been weaponized by those who disagree with results produced by the scientific method. Under the Trump administration, that fight has ramped up again. In a move ostensibly meant to reduce conflicts of interest, Environmental Protection Agency Administrator Scott Pruitt has removed a number of scientists from advisory panels and replaced some of them with representatives from industries that the agency regulates. Like many in the Trump administration, Pruitt has also cast doubt on the reliability of climate science. For instance, in an interview with CNBC, Pruitt said that âmeasuring with precision human activity on the climate is something very challenging to do.â Similarly, Trumpâs pick to head NASA, an agency that oversees a large portion the nationâs climate research, has insisted that research into human influence on climate lacks certainty, and he falsely claimed that âglobal temperatures stopped rising 10 years ago.â Kathleen Hartnett White, Trumpâs nominee to head the White House Council on Environmental Quality, said in a Senate hearing last month that she thinks we âneed to have more precise explanations of the human role and the natural roleâ in climate change. The same entreaties crop up again and again: We need to root out conflicts. We need more precise evidence. What makes these arguments so powerful is that they sound quite similar to the points raised by proponents of a very different call for change thatâs coming from within science. This other movement strives to produce more robust, reproducible findings. Despite having dissimilar goals, the two forces espouse principles that look surprisingly alike: Science needs to be transparent. Results and methods should be openly shared so that outside researchers can independently reproduce and validate them. The methods used to collect and analyze data should be rigorous and clear, and conclusions must be supported by evidence. These are the arguments underlying an âopen scienceâ reform movement that was created, in part, as a response to a âreproducibility crisisâ that has struck some fields of science.1 But theyâre also used as talking points by politicians who are working to make it more difficult for the EPA and other federal agencies to use science in their regulatory decision-making, under the guise of basing policy on âsound science.â Scienceâs virtues are being wielded against it. What distinguishes the two calls for transparency is intent: Whereas the âopen scienceâ movement aims to make science more reliable, reproducible and robust, proponents of âsound scienceâ have historically worked to amplify uncertainty, create doubt and undermine scientific discoveries that threaten their interests. âOur criticisms are founded in a confidence in science,â said Steven Goodman, co-director of the Meta-Research Innovation Center at Stanford and a proponent of open science. âThatâs a fundamental difference â weâre critiquing science to make it better. Others are critiquing it to devalue the approach itself.â Calls to base public policy on âsound scienceâ seem unassailable if you donât know the termâs history. The phrase was adopted by the tobacco industry in the 1990s to counteract mounting evidence linking secondhand smoke to cancer. A 1992 Environmental Protection Agency report identified secondhand smoke as a human carcinogen, and Philip Morris responded by launching an initiative to promote what it called âsound science.â In an internal memo, Philip Morris vice president of corporate affairs Ellen Merlo wrote that the program was designed to âdiscredit the EPA report,â âprevent states and cities, as well as businesses from passing smoking bansâ and âproactivelyâ pass legislation to help their cause. The sound science tactic exploits a fundamental feature of the scientific process: Science does not produce absolute certainty. Contrary to how itâs sometimes represented to the public, science is not a magic wand that turns everything it touches to truth. Instead, itâs a process of uncertainty reduction, much like a game of 20 Questions. Any given study can rarely answer more than one question at a time, and each study usually raises a bunch of new questions in the process of answering old ones. âScience is a process rather than an answer,â said psychologist Alison Ledgerwood of the University of California, Davis. Every answer is provisional and subject to change in the face of new evidence. Itâs not entirely correct to say that âthis study proves this fact,â Ledgerwood said. âWe should be talking instead about how science increases or decreases our confidence in something.â The tobacco industryâs brilliant tactic was to turn this baked-in uncertainty against the scientific enterprise itself. While insisting that they merely wanted to ensure that public policy was based on sound science, tobacco companies defined the term in a way that ensured that no science could ever be sound enough. The only sound science was certain science, which is an impossible standard to achieve. âDoubt is our product,â wrote one employee of the Brown & Williamson tobacco company in a 1969 internal memo. The note went on to say that doubt âis the best means of competing with the âbody of factââ and âestablishing a controversy.â These strategies for undermining inconvenient science were so effective that theyâve served as a sort of playbook for industry interests ever since, said Stanford University science historian Robert Proctor. The sound science push is no longer just Philip Morris sowing doubt about the links between cigarettes and cancer. Itâs also a 1998 action plan by the American Petroleum Institute, Chevron and Exxon Mobil to âinstall uncertaintyâ about the link between greenhouse gas emissions and climate change. Itâs industry-funded groupsâ late-1990s effort to question the science the EPA was using to set fine-particle-pollution air-quality standards that the industry didnât want. And then there was the more recent effort by Dow Chemical to insist on more scientific certainty before banning a pesticide that the EPAâs scientists had deemed risky to children. Now comes a move by the Trump administrationâs EPA to repeal a 2015 rule on wetlands protection by disregarding particular studies. (To name just a few examples.) Doubt merchants arenât pushing for knowledge, theyâre practicing what Proctor has dubbed âagnogenesisâ â the intentional manufacture of ignorance. This ignorance isnât simply the absence of knowing something; itâs a lack of comprehension deliberately created by agents who donât want you to know, Proctor said.2 In the hands of doubt-makers, transparency becomes a rhetorical move. âItâs really difficult as a scientist or policy maker to make a stand against transparency and openness, because well, who would be against it?â said Karen Levy, researcher on information science at Cornell University. But at the same time, âyou can couch everything in the language of transparency and it becomes a powerful weapon.â For instance, when the EPA was preparing to set new limits on particulate pollution in the 1990s, industry groups pushed back against the research and demanded access to primary data (including records that researchers had promised participants would remain confidential) and a reanalysis of the evidence. Their calls succeeded and a new analysis was performed. The reanalysis essentially confirmed the original conclusions, but the process of conducting it delayed the implementation of regulations and cost researchers time and money. Delay is a time-tested strategy. âGridlock is the greatest friend a global warming skeptic has,â said Marc Morano, a prominent critic of global warming research and the executive director of ClimateDepot.com, in the documentary âMerchants of Doubtâ (based on the book by the same name). Moranoâs site is a project of the Committee for a Constructive Tomorrow, which has received funding from the oil and gas industry. âWeâre the negative force. Weâre just trying to stop stuff.â Some of these ploys are getting a fresh boost from Congress. The Data Quality Act (also known as the Information Quality Act) was reportedly written by an industry lobbyist and quietly passed as part of an appropriations bill in 2000. The rule mandates that federal agencies ensure the âquality, objectivity, utility, and integrity of informationâ that they disseminate, though it does little to define what these terms mean. The law also provides a mechanism for citizens and groups to challenge information that they deem inaccurate, including science that they disagree with. âIt was passed in this very quiet way with no explicit debate about it â that should tell you a lot about the real goals,â Levy said. But whatâs most telling about the Data Quality Act is how itâs been used, Levy said. A 2004 Washington Post analysis found that in the 20 months following its implementation, the act was repeatedly used by industry groups to push back against proposed regulations and bog down the decision-making process. Instead of deploying transparency as a fundamental principle that applies to all science, these interests have used transparency as a weapon to attack very particular findings that they would like to eradicate. Now Congress is considering another way to legislate how science is used. The Honest Act, a bill sponsored by Rep. Lamar Smith of Texas,3 is another example of what Levy calls a âTrojan horseâ law that uses the language of transparency as a cover to achieve other political goals. Smithâs legislation would severely limit the kind of evidence the EPA could use for decision-making. Only studies whose raw data and computer codes were publicly available would be allowed for consideration. That might sound perfectly reasonable, and in many cases it is, Goodman said. But sometimes there are good reasons why researchers canât conform to these rules, like when the data contains confidential or sensitive medical information.4 Critics, which include more than a dozen scientific organizations, argue that, in practice, the rules would prevent many studies from being considered in EPA reviews.5 It might seem like an easy task to sort good science from bad, but in reality itâs not so simple. âThereâs a misplaced idea that we can definitively distinguish the good from the not-good science, but itâs all a matter of degree,â said Brian Nosek, executive director of the Center for Open Science. âThere is no perfect study.â Requiring regulators to wait until they have (nonexistent) perfect evidence is essentially âa way of saying, âWe donât want to use evidence for our decision-making,ââ Nosek said. Most scientific controversies arenât about science at all, and once the sides are drawn, more data is unlikely to bring opponents into agreement. Michael Carolan, who researches the sociology of technology and scientific knowledge at Colorado State University, wrote in a 2008 paper about why objective knowledge is not enough to resolve environmental controversies. âWhile these controversies may appear on the surface to rest on disputed questions of fact, beneath often reside differing positions of value; values that can give shape to differing understandings of what âthe factsâ are.â Whatâs needed in these cases isnât more or better science, but mechanisms to bring those hidden values to the forefront of the discussion so that they can be debated transparently. âAs long as we continue down this unabashedly naive road about what science is, and what it is capable of doing, we will continue to fail to reach any sort of meaningful consensus on these matters,â Carolan writes. The dispute over tobacco was never about the science of cigarettesâ link to cancer. It was about whether companies have the right to sell dangerous products and, if so, what obligations they have to the consumers who purchased them. Similarly, the debate over climate change isnât about whether our planet is heating, but about how much responsibility each country and person bears for stopping it. While researching her book âMerchants of Doubt,â science historian Naomi Oreskes found that some of the same people who were defending the tobacco industry as scientific experts were also receiving industry money to deny the role of human activity in global warming. What these issues had in common, she realized, was that they all involved the need for government action. âNone of this is about the science. All of this is a political debate about the role of government,â she said in the documentary. These controversies are really about values, not scientific facts, and acknowledging that would allow us to have more truthful and productive debates. What would that look like in practice? Instead of cherry-picking evidence to support a particular view (and insisting that the science points to a desired action), the various sides could lay out the values they are using to assess the evidence. For instance, in Europe, many decisions are guided by the precautionary principle â a system that values caution in the face of uncertainty and says that when the risks are unclear, it should be up to industries to show that their products and processes are not harmful, rather than requiring the government to prove that they are harmful before they can be regulated. By contrast, U.S. agencies tend to wait for strong evidence of harm before issuing regulations. Both approaches have critics, but the difference between them comes down to priorities: Is it better to exercise caution at the risk of burdening companies and perhaps the economy, or is it more important to avoid potential economic downsides even if it means that sometimes a harmful product or industrial process goes unregulated? In other words, under what circumstances do we agree to act on a risk? How certain do we need to be that the risk is real, and how many people would need to be at risk, and how costly is it to reduce that risk? Those are moral questions, not scientific ones, and openly discussing and identifying these kinds of judgment calls would lead to a more honest debate. Science matters, and we need to do it as rigorously as possible. But science canât tell us how risky is too risky to allow products like cigarettes or potentially harmful pesticides to be sold â those are value judgements that only humans can make.
Chapter One: Management Today The challenges of working in the new economy recognize: 1.1 Working Today Talent Talented people- What they know, what they learn and what they can achive The source of organisational performance Develop skills and improve What is intellectual capital The combined brain power and shared knowledge of an organization's employees TO orginzations: Intellectual capital resents a strategic asset as human creativity, insight and decision making can be converted into superior performance To individuals: Intellectual capital is a personal asset, one to be nurtured and continually updated Things evolve, make sure we keep updated Intellectual capital: The package on intellect skills and capabilities that set us apart making us valable to potential employers Maintaining your talent: There is no escaping the fact that your career success will require a lot of initiative, self awareness and continuous learning Technology Tech is in our everyday lives Latest developments Smart phone, smart apparel, smart cars, smart homes We struggle to keep up with social media ana staying connected with messaging, full of email and voicemail What happenings as younger workers advance into management Flexibility Work ethic It is critical to build and maintain a high Tech IQ! What is Tech IQ: The ability to use current technologies at work and in your personal life, combined with the commitment to keep yourself updated as technology continues to evolve Intellectual capi5la is a combination of: Commitment x Competency = Intellectual capital How to make the world a better place Globalisation The worldwide interdependence of resources flows, product markets and business competition Under the influence, government leaders worry and about the competitiveness of nations just as corporate leaders worry about business competitiveness Emerging markets will power global growth over the next 20 years. By 2025 overall global consumption is forecast to reach $62 trillion, twice its 2013 level and fully half of this increase will come from the emerging world Consequence: Going to fast in uses resources, inflation, corporate greed It's cheaper to have things made in different countries (wages are low and going down) Shamrock organization 1 leaf - full time employees- standard career paths 2 leaf - âfreelancersâ 3 leaf - Part times without benefits (first to lose their jobs when employers face economic difficulties) The rising of emerging markets Now account for 60% of all low and medium technology manufacturing worldwide Total value add in high tech manufacturing from a low 26% in the 1970s to 48% at present China strategy to upgrade its industries and move the manufacturing value ching by prioritising 10 sectors Information technology, robotic, aerospace, maritime equipment, modern railway equipment, alternative energy vehicles, power equipment, agriculture equipment, advanced materials, biopharma and medical products Ethics A code of moral principa;s that sets standards for conduct that is âgoodâ and ârightâ as well as âbadâ and âwrongâ Enron company huge corruption even in elections same thing happened with The Mechanism 1.2 - Organizations Organizational Purpose An orgnizations is a collection of people working together to achieve a common purpose Unique social phenomenon that enables its members to perform tasks far beyond the reach of individual accomplishment (synergy) The broad purpose of any orginzation is to provide goods or services of value to customers and clients A clear sense of purpose tied to: Quality of products and services Customer satisfaction Social responsibility Can be an important source of organisational strength and performance advantage All organisations are open systems (Systems that interact with its environment for renewal and growth) Organizations as systems All organizations are open systems that interact with their environment Continual process of obtaining resource inputs-people, information, resources and capital- and transforming them into outputs in the form of finished goods and services for customers One simple way to assess the impact of any organisation is to ask the question: How is the world different because it existed Value Creation: Organisations create value when they use resources well to produce good products and take care of their customers One simple way to assess the impact of any organization is to ask the questions: How is the world different because it existed? The 3 Ps of organizational performance Profit - is the decision economically sound? People - Does the decision treat people with respect and dignity? Planet - Is the decision good for the environment? Productivity: An overall measure of the quantity and quality of work performance with recourse utilisation taken into account Performance effectiveness: An output measure of task or goal accomplishment Performance efficiency: An input measure of the resource costs associated with goal accomplishment. Workplace changes that impact management Focus on valuing human capital Demise of âCommand and controlâ Emphasis on teamwork Pre-eminence of technology New workforce expectations Importance of networking Concern for sustainability 1.3 Managers Importance of human resources and manger People are not âcosts to be controlledâ High performing organizations treat people as valuable strategic assets Three takeaways 1. Give leaders broad authority 2. Encourage them to think like CEO 3. Challenge strong performers ealy with big opportunities Direct support, supervise and help activate the work efforts of others The people who managers help are the ones whose contributions represent the real work of the organisation Types of managers Line managers are responsible for work activities that directly affect organizationâs output Staff managers use technical expertise to advise and support the efforts of line workers Functional managers are responsible for a single area of activity Quality of work life (QWL) An indicator of the overall quality of human experiences in the workplace QWL Indicators Respect Fair pay Safe working conditions Opportunities to learn and use new skills Room to grow and progress in a career Protection of individuals rights The organization as an upside-down pyramid A managerâs job is to support workerâs efforts The best managers are known for helping and supporting Customers at the top served by worker who are supported by managers 1.4 The management Process Managers achieve high performance for their organizations by best utilizing its humans and material resources Management is the process of planning, organizing, leading and controlling the use of resources to accomplish performance goals All managers are responsible for the four functions The functions are carried on continually Characteristics of managerial work Long hours Intense pace Fragmented and varied tasks Many communication media Filled with interpersonal relationships Managerial agendas and networks Agenda setting Develops action priorities for accomplishing goals and plans Networking Process of building and maintaining positive relationships with people who can help advance agendas Social Capital Capacity to attract support and help from others Learning The change in a behaviour that results from experience Lifelong learning The process of continuously learning from daily experiences and opportunities
The challenges of working in the new economy recognize: 1.1 Working Today Talent Talented people- What they know, what they learn and what they can achive The source of organisational performance Develop skills and improve What is intellectual capital The combined brain power and shared knowledge of an organization's employees TO orginzations: Intellectual capital resents a strategic asset as human creativity, insight and decision making can be converted into superior performance To individuals: Intellectual capital is a personal asset, one to be nurtured and continually updated Things evolve, make sure we keep updated Intellectual capital: The package on intellect skills and capabilities that set us apart making us valable to potential employers Maintaining your talent: There is no escaping the fact that your career success will require a lot of initiative, self awareness and continuous learning Technology Tech is in our everyday lives Latest developments Smart phone, smart apparel, smart cars, smart homes We struggle to keep up with social media ana staying connected with messaging, full of email and voicemail What happenings as younger workers advance into management Flexibility Work ethic It is critical to build and maintain a high Tech IQ! What is Tech IQ: The ability to use current technologies at work and in your personal life, combined with the commitment to keep yourself updated as technology continues to evolve Intellectual capi5la is a combination of: Commitment x Competency = Intellectual capital How to make the world a better place Globalisation The worldwide interdependence of resources flows, product markets and business competition Under the influence, government leaders worry and about the competitiveness of nations just as corporate leaders worry about business competitiveness Emerging markets will power global growth over the next 20 years. By 2025 overall global consumption is forecast to reach $62 trillion, twice its 2013 level and fully half of this increase will come from the emerging world Consequence: Going to fast in uses resources, inflation, corporate greed It's cheaper to have things made in different countries (wages are low and going down) Shamrock organization 1 leaf - full time employees- standard career paths 2 leaf - âfreelancersâ 3 leaf - Part times without benefits (first to lose their jobs when employers face economic difficulties) The rising of emerging markets Now account for 60% of all low and medium technology manufacturing worldwide Total value add in high tech manufacturing from a low 26% in the 1970s to 48% at present China strategy to upgrade its industries and move the manufacturing value ching by prioritising 10 sectors Information technology, robotic, aerospace, maritime equipment, modern railway equipment, alternative energy vehicles, power equipment, agriculture equipment, advanced materials, biopharma and medical products Ethics A code of moral principa;s that sets standards for conduct that is âgoodâ and ârightâ as well as âbadâ and âwrongâ Enron company huge corruption even in elections same thing happened with The Mechanism 1.2 - Organizations Organizational Purpose An orgnizations is a collection of people working together to achieve a common purpose Unique social phenomenon that enables its members to perform tasks far beyond the reach of individual accomplishment (synergy) The broad purpose of any orginzation is to provide goods or services of value to customers and clients A clear sense of purpose tied to: Quality of products and services Customer satisfaction Social responsibility Can be an important source of organisational strength and performance advantage All organisations are open systems (Systems that interact with its environment for renewal and growth) Organizations as systems All organizations are open systems that interact with their environment Continual process of obtaining resource inputs-people, information, resources and capital- and transforming them into outputs in the form of finished goods and services for customers One simple way to assess the impact of any organisation is to ask the question: How is the world different because it existed Michal Porter - Value Chain Value Creation: Organisations create value when they use resources well to produce good products and take care of their customers One simple way to assess the impact of any organization is to ask the questions: How is the world different because it existed? Triple Bottom Line The 3 Ps of organizational performance Profit - is the decision economically sound? People - Does the decision treat people with respect and dignity? Planet - Is the decision good for the environment? Organizational Performance Productivity: An overall measure of the quantity and quality of work performance with recourse utilisation taken into account Performance effectiveness: An output measure of task or goal accomplishment Performance efficiency: An input measure of the resource costs associated with goal accomplishment. Workplace changes that impact management Focus on valuing human capital Demise of âCommand and controlâ Emphasis on teamwork Pre-eminence of technology New workforce expectations Importance of networking Concern for sustainability 1.3 Managers Importance of human resources and manger People are not âcosts to be controlledâ High performing organizations treat people as valuable strategic assets Three takeaways 1. Give leaders broad authority 2. Encourage them to think like CEO 3. Challenge strong performers easily with big opportunities Direct support, supervise and help activate the work efforts of others The people who managers help are the ones whose contributions represent the real work of the organisation Levels of management Types of managers Line managers are responsible for work activities that directly affect organizationâs output Staff managers use technical expertise to advise and support the efforts of line workers Functional managers are responsible for a single area of activity Quality of work life (QWL) An indicator of the overall quality of human experiences in the workplace QWL Indicators Respect Fair pay Safe working conditions Opportunities to learn and use new skills Room to grow and progress in a career Protection of individuals rights The organization as an upside-down pyramid A managerâs job is to support workerâs efforts The best managers are known for helping and supporting Customers at the top served by worker who are supported by managers 1.4 The management Process Managers achieve high performance for their organizations by best utilizing its humans and material resources Management is the process of planning, organizing, leading and controlling the use of resources to accomplish performance goals All managers are responsible for the four functions The functions are carried on continually Four functions: Planning,organizing, leading and controlling Mintzbergâs 10 Managerial Roles Characteristics of managerial work Long hours Intense pace Fragmented and varied tasks Many communication media Filled with interpersonal relationships Managerial agendas and networks Agenda setting Develops action priorities for accomplishing goals and plans Networking Process of building and maintaining positive relationships with people who can help advance agendas Social Capital Capacity to attract support and help from others Learning The change in a behaviour that results from experience Lifelong learning The process of continuously learning from daily experiences and opportunities Katzâ Essential Managerial Skills