505 DISCUSSION UNIT 6

Address the topics. Your original response should be at least 350 words and should reflect the fact that you have completed the assigned readings for the week. Remember, this is your chance to illustrate not only your understanding, but also your mastery of the materials for the unit. Use your words wisely so the posting has substance and includes examples and explanations. Limit the use of direct quotes, and do your best to critically evaluate and synthesize the literature in your own words wherever possible. Make sure to include in-text citations and a reference list as appropriate.

1) Evidence of Intelligence [1 of 2]

Pick someone well-known whom you believe to be “intelligent.” Everyone has to pick someone different, so first come, first served!

But, be careful. You will also discuss in detail, using scholarly/academic resources to support your observations, why exactly you believe this person to be intelligent. What did he or she display that has been empirically linked to intelligence? What kinds of evidence would you provide for your argument that this individual is intelligent? Be sure to include references and specifics regarding your observations.

2) Cognitive Functioning [2 of 2]

In your specialty area, imagine that you received a referral from a colleague for a psychological assessment concentrating on cognitive functioning.

Create a referral question, for example, “Please assess this individual in terms of his/her ability to participate in and benefit from an inpatient substance abuse rehabilitation program.”

Pick the appropriate instrument for a specific client among the Wechsler Adult Intelligence Scale IV (WAIS-IV), the Wechsler Intelligence Scale for Children IV (WISC-IV), or the Wechsler Preschool and Primary Scale of Intelligence-III (WPPSI-III).

Describe the client’s demographics, for example, “38-year-old divorced female…”

Employing the correct instrument for the client and the referral question, briefly review each of the subscales in terms of:

  1. What are they believed to measure?

  2. How, specifically, would each score contribute information that would answer the referral question?

warranty review assignment business low assignment

Warranty Review Assignment.  Find a “warranty” pertaining to the sale of goods.  Normally, these are included in the boxes containing electronic devices, home appliances, and electrical tools.  You can also find them at tire stores—simply ask for one at the counter.  The warranty must include language that modifies the normal UCC warranties (title, fitness for a particular purpose, and/or merchantability).  Identify the location of each UCC warranty that is referred to in your warranty example, and then explain whether or not it has been modified on your form.  If it has, explain how, and also explain whether or not the modification is allowable under the UCC.  Also identify whether the Magnuson-Moss warranty has been modified, and exactly how.  Last, explain what is “left over” (in terms of warranties) after all of these modifications—in other words, what does the warranty actually cover after all of the exclusions?.  

need both media files done even if you use 2 different experts same dead line 1 answer below »

Select recent news article need done by 11 pm latest tonight

http://www.mediafire.com/view/?yp5ddp853f3omzh

http://www.mediafire.com/view/?p7mye5iagsesh7r

recursion program

Problems

 

power

  1. Write a 
    public static function named 
    power that takes in two integers, 
    a and 
    b, and returns 
    a^
    b, the first argument to the power of the second argument. You may 
    NOT use 
    Math.pow(), because that would be boring.
  2. The base case in this method is when the second argument is 0: 
    n^0 = 1, by definition.
  3. Hint: 3^5 = 3*(3^4)
  4. Why is recursion not the best solution for this problem? If you do not know, ask a TA.
    1. Create a similar method named 
      power2 that is functionally identical but does not use recursion. It should still NOT use 
      Math.pow().

fileCount

  1. Write a 
    public static function named 
    fileCount that takes as input a directory (as a File object) and returns the total number of files in all sub-directories
    1. Directories count as files, too.
  2. Your method should look through all files and sub-directories in the directory that was passed in. While searching through the directory, use the 
    java.io.File.isDirectory() method to check if the File you are looking at is a file or directory. If it is a normal file, count it. If it is a directory, count it and use a recursive call to count its contents.
  3. Hint: 
    1. What is the base case?
    2. What is the recursive step?
    3. What is the combination?
  4. You should consult the 
    java.io.File API for more information.
  5. The following directory structure has 14 files:
root_dir          1
+--dir            2
|  +--file        3
+--dir            4
|  +--dir         5
|  |  +--dir      6
|  |  |  +--file  7
|  |  +--file     8
|  +--file        9
+--dir           10
|  +--dir        11
|  |  +--file    12
|  +--file       13
+--file          14

hanoi

  1. Write a 
    public static function named 
    hanoi that recursively solves the Tower of Hanoi puzzle (see the description below).
  2. Your function should take 1 integer and 3 chars as input (in this order): 
    n
    src
    dest
    aux.
    1. n is the number of disks.
    2. src (source), 
      dest (destination), and 
      aux (auxiliary) are tower letters.
    3. For example, to solve the 3 disk puzzle, you would call 
      hanoi(3,'A','C','B');
      1. hanoi(3,'A','C','B'); means “move 3 disks from tower A to tower C using tower B”
  3. Your function should print the solution to the puzzle to standard output in the following format:
    1. “move [disk] from [tower1] to [tower2]”
      1. [disk] is the number of the disk being moved. Disks are numbered 1 to 
        n, 1 being the smallest and 
        n being the largest.
      2. [tower1] is the letter of the tower 
        from which the disk is being moved.
      3. [tower2] is the letter of the tower 
        to which the disk is being moved.
    2. For example: “move 1 from A to C” is the first step of solving the 3 disk problem.
    3. Print each step on its own line.
  4. The base case is the 0-disk problem, for which nothing must be done (just return).
    1. What is the recursive step?
    2. What is the combination?
  5. Hints:
    1. Solve the puzzle by hand (
      one of many online versions or 
      another).
    2. Divide and Conquer.
      1. How do you use the solution to the 1-disk problem to help you solve the 2-disk problem? 
      2. How about using the 2-disk solution to solve the 3-disk problem? 
      3. And so on.
    3. The whole function is just 5 lines of code.
      1. 2 of these are the base case
      2. The other 3 are the steps to use the (n-1)-disk solution to solve the n-disk problem.

About the Tower of Hanoi

There is a temple in Kashi Vishwanath which contains a large room with three time-worn posts, on which are stacked 64 golden disks. Brahmin priests, acting out the command of an ancient prophecy, have been moving these disks, in accordance with the immutable rules of the Brahma, since that time. When the last move of the puzzle is completed, the world will end. Despite the location of the legendary temple, the puzzle is most often called the Tower of Hanoi.

The objective of the puzzle is to move the entire stack of disks from the first post to the third post, obeying the following simple rules:

  1. Only one disk may be moved at a time.
  2. Each move consists of taking the upper disk from one of the stacks and placing it on top of another stack.
  3. No disk may be placed on top of a smaller disk.

mysterySeries

  1. Figure out the pattern from the table below.
  2. Write a 
    public static function named 
    mysterySeries that take integers 
    i and 
    j as input and returns the (
    i,
    j)-th mystery number (the number in the 
    i-th row and 
    j-th column).
    1. mysterySeries(6,2) should return 15
  3. Base Cases:
    1. If 
      i < 0 or 
      j < 0 or 
      i < 
      j, then A(
      i,
      j) = 0
    2. The above 3 base cases are 
      not sufficient, what other base case(s) do you need?
  4. Hint: Each element of the 
    i-th row can be computed from elements in the (
    i-1)-th row.
A(i,j … 
             
           
         
       
     
10  10     
15  20  15   
…  …  …  …  …  …  …  …  … 

55760

Write the paper from a manager's perspective and be sure to integrate and reference the information you have learned. The paper should be a formal 3 1/2 to four-page paper/essay, APA Style (APA 6), grammatically sound, and free of spelling errors. Please double-space the paper for ease of reading and include a cover page. the topic is: Define the four principles of a safety management system. Attach is an example of how it should look

54704

State legislatures continue to seek budget-friendly alternatives to incarceration of juveniles. The legislatures, however, want to ensure their money is being well spent. To that end, you have been asked to rate the effectiveness of a local or national organization/non-profit organization/after-school program that is based on the prevention of or rehabilitation of juvenile offenders. These programs can be intervention-based, in that they attempt to prevent delinquency, or they can be rehabilitative, in that they seek to rehabilitate offenders. Many community-oriented diversion programs have websites that provide more than enough information for you to complete this assignment. One common program in Texas schools is DARE, or Drug Abuse Resistance Education. As a final alternative, the federal government measures the effectiveness of many such programs and publishes the results online. Some questions to consider as you complete this assignment are: What is the intended population? What standard are you using to measure the effectiveness? Why do you think it is effective and worthy of continued funding? Why is this a better alternative than incarceration? Is this approach too soft on crime? You should complete this assignment using APA or ASA style in no fewer than 500 words. Please type your answer in a Word document (.doc or .docx)

53576

Quality of care will continue to be a major challenge across the long-term care continuum in the future.Among the following delivery sites: assisted living facilities, home care, and hospice, select two and discuss the best mechanisms to promote quality outcomes. Consider both policy mechanisms by payers and government as well as specific organizational programs long-term care administrators can initiate on their own.

can you help 1

Human Resouce homework.

Assignments to be completed by Friday July 19 at 6;45 pm.

All information is enclosed in the attachment.

Project Help

Create a 10 slide Microsoft PowerPoint presentation (not including cover and reference slide) explaining how understanding differences in values across cultures can be used by managers when interacting with employees from different countries. After reading the section in Chapter 5 on international values, select one country, then research the Internet to find additional information on that country. In your Microsoft PowerPoint presentation address the following :

Checklist:

  1. Discuss how managers can use their understanding of differences in values to communicate more effectively with employees from another culture.

  2. What do managers need to do differently when communicating with employees from the country you selected as opposed to the U.S. culture?

  3. How might you apply information regarding the differences in values of another culture to make your daily interactions outside of the work environment more successful?

 

55662

The Life-cycle Framework At least 1,100 words combined. The word requirement is listed per section below. Use One scholarly resource that relate to the topic and have been published within the last 5 years. (Review 5 sources and select 1. The remaining 4 can be used in the comparison section.) APA format, double-spaced Word file must adhere to the following format: Key Concept Explanation: Give a clear, concise overview of the essential elements relevant to understanding your key topic. In addition, explain why you are interested in this topic (e.g., academic curiosity, application to a current issue related to employment, or any other professional rationale). Comparison: Compare your research with what you have studied during the module/week in which the key topic/thread is assigned. Note differences or commonalities about your key topic, providing evidence that you have extended your understanding of this topic beyond the textbook readings. This is an opportunity for you to cite the additional articles you originally researched. This section must be at least 200 words. Article Summary: In your own words, provide a clear and concise summary of the article you selected. This section must be at least 200 words. Biblical Integration: Include at least 3 appropriate biblical references. Explain the relevance of your key topic to God’s law and how it can be applied in a Christian context. This section must be at least 100 words. Application: Specifically, state how your key topic has been applied to real-world businesses or describe the potential your key topic has to influence today’s business world. Your application must possess a professional rationale that demonstrates the significance of your key topic. This section must be at least 100 words. Annotated Bibliography: Cite the articles you researched in current APA format. An annotation must accompany each citation. Each annotation will consist of a descriptive and evaluative paragraph that is at least 100 words. The annotations are designed to help your classmates in their understanding of your topic. In addition, provide a persistent link for each article.