Clinical field experience c: reading and writing i do, we do, you do

 
With your mentor, decide on the direction you will take to provide small-group instruction to 3-4 students on a literacy topic in reading and/or writing.
Part 1: Reading and Writing: I Do, We Do, You Do Chart
Choose a reading and writing concept with a strategy that aligns to what students in your field experience classroom are currently learning.
Complete the “Reading and Writing: I Do, We Do, You Do” chart to guide appropriate instruction for the 3-4 students identified by your mentor teacher. Within the chart, identify the following to help design your lesson:

Reading and Writing Concept
I Do, We Do, You Do
Differentiation
Assessment

Upon completion of your chart, and with approval of your mentor teacher, facilitate the lesson to the students chosen.
Part 2: Reflection
Using the “Reading, Writing, and Print Concepts: I Do, We Do, You Do” chart, summarize and reflect upon your chart, strategy, and facilitation in 250-500 words. Explain how you will use your findings in your future professional practice.
Submit your “Reading and Writing: I Do, We Do, You Do” chart and reflection as one deliverable.
The lesson developed for this field experience will be used to complete your Literacy Toolkit assignment due in Topic 6. You will be asked to make revisions based on the implementation experience prior to submitting the unit plan at that time.
Prepare this assignment according to the guidelines found in the APA Style Guide, located in the Student Success Center. An abstract is not required.

Media and terrorism | Law homework help

Write a 3–4 page paper addressing standard response methodologies through a discussion of the role of the media as it relates to reporting and disseminating stories related to terrorism.

Select one past incident where the media has served as a force multiplier for terror groups.
Explain how the media actually benefited the terror organization or promoted the desired effect by the terror group.
Select an incident where the media had a positive effect in minimizing terrorist effectiveness, and explain how or why.
State what you see as the role of social networking as it relates to both enabling terrorist activity and thwarting it.

To better understand the method of response involving observational theory you must consider the “Methods for Media Analysis.” One method used by the media is frame analysis. This method forms a theory of a cultural topic to shape our understanding of current happenings without firm evidence. This type of analysis indicates how a news event can be structured to emphasize certain aspects of an event and omit others.
NOTE: This Assignment will require outside research. Use at least three credible sources beyond the text material and discuss how you evaluated the credibility of the resources used. You may consult the Library, the internet, the textbook, other course material, and any other outside resources in supporting your task, using proper citations in APA style.

PSYCH 438 University of Wisconsin Green Bay Psychology Questions

discussion post due 6/13 I will extend once I receive the discussion post peer responses due 6/16 –Peer post attached for the responsesIn some jurisdictions, mental health professionals can be held liable for not warning potential victims of violence or physical harm at the hands of their patients. In late 1969, a young California woman was murdered by a man who 2 months earlier had confided to his psychologist his intention to kill her. Although the psychologist, who was employed by the University of California, had notified campus police of the death threat, he informed no one else except his supervisor. After the murder, the woman’s parents sued the university, the psychologist, and the police for failing to warn the family and take action against the offender. This case established the well-known Tarasoff v, Regents of the University of California (1974, 1976) ruling.Answer both questions and respond to two classmates:1. To what extent should psychologists and other mental health professionals be required to report concerns about their clients to local authorities? If you were drafting a Tarasoff-like law, how would you phrase it? 2. Commentators have remarked that even without these laws, or even in jurisdictions where the Tarasoff doctrine has been explicitly rejected, mental health practitioners typically abide by the spirit of Tarasoff. Discuss how this might be done. 

Java :write a static method named joiner that accepts two arrays of

 
Array Programming
Write a static method named joiner that accepts two arrays of strings a1 and a2 as parameters and returns a new array a3 such that each element of a3 at each index i stores a new string composed of the words stored at a1[i] and a2[i] joined together with the word with the work having greater length (more characters) at the front of the concatenated string. If there is a tie, take the element from a1.
For example, if a1 and a2 store the following elements:
String[] a1 = {“star”, “pie”, “jelly bean”, “car”};
String[] a2 = {“cookie”, “fig”, “banana”, “soda”};
Then your method should return the new array:
{“cookiestar”, “piefig”, “jelly beanbanana”, “sodacar”}.
If the arrays a1 and a2 are not the same length, the result returned by your method should have as many elements as the shorter of the two arrays. For example, if a1 and a2 store the following elements:
String[] a1 = {“Splinter”, “Leo”, “April”, “Don”, “Raph”};
String[] a2 = {“Krang”, “Shredder”, “Bebop”};
Then your method should return the new array:
{“SplinterKrang”, “ShredderLeo”, “AprilBebop”}.
For full credit, do not modify the elements of a1 or a2. Do not make any assumptions about the length of a1 or a2 or the length of the strings. You may assume that neither array is null and that no element of either array is null.

Check in 4 | Sociology homework help

 
 Chapter 2: Culture
1. Define Culture and each component of culture. Give example of each from the text, and in relation  to your personal experience.  
 2. Elaborate on the contributions of five sociologists to the study of culture: key terms and research studies. 
 3. According to Robin Williams, what are ten core values of the United States?  Identify in rank order the ones you consider most important. 
  Chapter 7: Bureaucracy and Formal Organization
   1. What is the meaning of the rationalization of society?, Contrast the viewpoint  of Max Weber and Karl Marx on the rationalization of society.
    2. What are formal organizations, and how did Max Weber and Robert Michels describe them.  
   3. What are the functions of Voluntary Associations? 
    Chapter 8: Deviance and Social Control
  1.Identify and define ten key terms in the above noted          chapter and relate them to the attack on the United             Capitol, January 6,2021.
   2. Elaborate on the competing explanations of deviance:         sociobiology, psychology and sociology.
    3. Contrast the deviant theory of Emile Durkheim and             Robert Merton.
     4. Watch the video or film ” The Bad Seed” and identify          and  elaborate on select scenes that reflect the                    competing explanation of deviant behavior.   

In java array programming write a static method named

  
in java
Array Programming
Write a static method named vowelsBeforeConsonants that accepts an array of characters as a parameter and rearranges its elements so that all even vowels appear before the consonants. For example, if the following array is passed to your method:
char[] numbers = {‘r’, ‘t’, ‘a’, ‘o’, ‘p’, ‘u’};
Then after the method has been called, one acceptable ordering of the elements would be:
                {‘a’, ‘o’, ‘u’, ‘r’, ‘t’, ‘p’}
The exact order of the elements does not matter, so long as all vowels appear before all consonants. For example, the following would also be an acceptable ordering:
                {‘o’, ‘a’, ‘u’, ‘t’, ‘p’, ‘r’}
Do not make any assumptions about the length of the array or the range of values it might contain. For example, the array might contain no even vowels or no consonants. You may assume that the array is not null.
You may not use any temporary arrays to help you solve this problem. (But you may declare as many simple variables as you like, such as chars.) You also may not use any other data structures such as the ArrayList class from Chapter 10. DO NOT use Arrays.sort in your solution.
Hint: This is actually a sorting problem. In BubbleSort you tested pairs of elements and swapped them if the left element is larger than the right element. In this problem, the swap happens when the left element is a vowel and the right element is a consonant.

Wk 4 assignment | Education homework help

 
Assignment: Getting the Big Picture: The Role of the Intercultural Communication Consultant
According to a top ten list compiled by the Reed Business Information site, the top international banks are in China, Japan, The United Kingdom, Germany, and France (2013). According to the CNNMoney site, the world’s largest economies span four continents—Asia, Europe, North America, and South America (2013). Money, goods and services span the globe and drive the need for intercultural communication professionals. Developing intercultural competence increases your marketability in this global economy. Your understanding of intercultural communication helps you view situations from a global lens and makes you a valuable resource within organizations operating in international environments.
In this Assignment, you explore the business conditions involving the need for intercultural communication experts. You consider the tools, skills, and theories necessary to gain insights into real business crisis situations. You take on the role of an intercultural communication consultant as you consider alternative approaches to the issue and develop effective communication recommendations.

To prepare for this Assignment:

Review the Learning Resources for this week.
Review the Week 4 Assignment Scenarios document in this week’s Learning Resources and select one.
Review the specific resources for your selected scenario.

Do a 2 1/2- page analysis of one of the scenarios in the Week 4 Assignment Scenarios document in this week’s Learning Resources. Be sure to include all of the information mentioned in the “Your Task” section of the scenario you select.

Short journal | English homework help

CREATING A JOURNAL
You are going to create a Journal in a WORD document. The Journal will have 10 entries over the semester.  Each entry piece should be 3/4 -1 page in length.
Journal 6 – Review to date

What have you learned from the course so far? How can you apply the learning to your personal and professional life?
From the video make a list of the points the presenter made regarding the selling of a pen!  Notice how many questions you can ask relating to this simple product.
Journal 7 – sell the value
List how you can improve your value statements in your Benefit section
How might you apply this to really improve selling your product and selling yourself for a career job?

Journal 8 – Lets review what not to do in sales

Develop a checklist of the 6 you should not do!
Journal 9 – Ways to close…..and how it applies outside of pure sales

What did you learn?
?
How/where can you apply what you have learned to yourself?
Journal 10 – Final Thoughts
Review this video…..How can you apply these tips to yourself?
Were you applying them…or is this something new?

Are you gonna do it?
This assignment continues with the last one. total 5 pages

Social work in palliative care | SOCW 6205 – Medical Social Work II | Walden University

  
Palliative care refers to specialized medical care that focuses on providing relief from physical symptoms and improving the quality of life of patients and caregivers. Palliative care can be provided to patients with any medical condition at any stage of illness to relieve symptoms. It can be a patient’s primary treatment (which is often the case with end-of-life care), or it can be provided in combination with standard medical treatments. Palliative care team members work alongside a patient’s medical team and can include professionals from multiple disciplines, including doctors, nurses, social workers, and chaplains.
To prepare for this Discussion:
Review this week’s resources (See attachments). Think about the circumstances, timing, payment, and other features related to palliative care.
Assignment
Post a description of perceptions of palliative care from the perspective of a: 
Patient
Caregiver
Social Worker
Then, explain the roles of social workers in providing palliative care. Compare and contrast the fundamental differences between palliative care and hospice care. Explain medical conditions where you might consider palliative care over hospice care for a patient. Justify your position. Use examples to illustrate your case. 
Be sure to support your postings and responses with specific references to the resources and the current literature using appropriate APA format and style.

Assignment on a case study

  
This assignment will be based on the following article:
Chen, J 2019 ‘Mirrorthief Group Uses Magecart Skimming Attack to Hit Hundreds of Campus Online Stores in US and Canada’, Trend Micro Security Intelligence Blog, 3 May, <https://blog.trendmicro.com/trendlabs-security-intelligence/mirrorthief-group-uses-magecart-skimming-attack-to-hit-hundreds-of-campus-online-stores-in-us-and-canada/>
Answer the following questions in relation to the article. Assume that the audience for your responses is senior level management, who do not have a strong technical background. The word limit for this assessment item is 1,000 words.
1. Why did the adversaries encrypt the payment data using AES and encode using Base64 before exfiltration?
2. The adversaries in this attack used a compromised Javascript file hosted on the webserver to cause the client to transmit the payment data to a server which the adversaries controlled. Describe two other methods the adversaries could have used to achieve the same outcome.
3. The case study identifies at least three parties, PrismWeb/PrismRBS, 201 (individual) campus stores and the adversary group. Of the former two parties, who was primarily responsible for defending against this attack? What actions could the other (non-responsible) party have taken to mitigate against this type of vulnerability?
4. Compare and contrast the characteristics of the attack with the Dridex Financial Trojan.
   
Harvard referencing is required.

× How can I help you?