Questions
Examine a specific conduct disorder, disruptive behavior disorder & substance-related disorder for a case study that...

Examine a specific conduct disorder, disruptive behavior disorder & substance-related disorder for a case study that you will create pertaining to either a child of adolescent.

1. Identify the specific diagnostic code for the disorder, and describe the etiology of the diagnosis for the case study.


***It is one case study that involves two co-occurring disorders ( One case study with two disorders). Both disorders present in one client. Please contact me should you have questions.***

***Students will select a specific mental health disorder and substance abuse disorder. Since this assignment involves distinguishing the co-occurring symptoms and treatment of two disorders, it must include one disruptive behavior disorder and one substance abuse disorder.****

In: Psychology

The business idea is Spirulina. Spirulina is a micro-algae and as such has been growing naturally...

The business idea is Spirulina.

Spirulina is a micro-algae and as such has been growing naturally in our environment for millions of years, it is a tough plant able to withstand harsh growing conditions, in fact the micro-algae cell never really dies it goes dormant when weather conditions are not favourable, and as soon as these change and the environment is once again suitable for growth, spirulina begins growing and reproducing again. Naturally growing spirulina can be found in high alkaline lakes and in general it is said that where flamingos are, spirulina is sure to be found.

Question:

Planned major goals that must be achieved for your business to succeed. Next, describe a long-term vision for this business. Identify any future products/services, as well as plans for expansion.

In: Operations Management

Activity 10: Review Comparison Operators Comparison operators allow you to test whether values are equivalent or...

Activity 10: Review
Comparison Operators
Comparison operators allow you to test whether values are equivalent or whether values are identical.


Conditional Code
Sometimes you only want to run a block of code under certain conditions. Flow control — via if and else blocks — lets you run code only under certain conditions.


Switch Statement
Rather than using a series of if/else if/else blocks, sometimes it can be useful to use a switch statement instead. [Definition:
Switch statements look at the value of a variable or expression, and run different blocks of code depending on the value.]





Loops
Loops let you run a block of code a certain number of times. Note that in Loops even though we use the keyword var before the variable name i, this does not “scope” the variable i to the loop block

For Loop
A for loop is made up of four statements and has the following structure:


The initialisation statement is executed only once, before the loop starts. It gives you an opportunity to prepare or declare any variables.
The conditional statement is executed before each iteration, and its return value decides whether or not the loop is to continue. If the conditional statement evaluates to a falsey value then the loop stops.
The iteration statement is executed at the end of each iteration and gives you an opportunity to change the state of important variables. Typically, this will involve incrementing or decrementing a counter and thus bringing the loop ever closer to its end.
The loopBody statement is what runs on every iteration. It can contain anything you want. You’ll typically have multiple statements that need to be executed and so will wrap them in a block ( {...}).

While Loop
A while loop is similar to an if statement, except that its body will keep executing until the condition evaluates to false.

An example for a while loop:




The do-while loop
This is almost exactly the same as the while loop, except for the fact that the loop’s body is executed at least once before the condition is tested.



An example for a do-while loop:



Functions
Functions contain blocks of code that need to be executed repeatedly. Functions can take zero or more arguments, and can optionally return a value.
Functions can be created in a variety of ways:

Function Declaration



Named Function Expression

A Simple Function
A Function Returns a Value


A Function that Returns another Function

A Self-executing Anonymous Function
A common pattern in JavaScript is the self-executing anonymous function. This pattern creates a function expression and then immediately executes the function. This pattern is extremely useful for cases where you want to avoid polluting the global namespace with your code — no variables declared inside of the function are visible outside of it.




Function as Arguments
In JavaScript, functions are “first-class citizens” — they can be assigned to variables or passed to other
functions as arguments. Passing functions as arguments is an extremely common idiom in jQuery.
• Passing an anonymous function as an argument


• Passing a named function as an argument


Task 1 – Write web program to calculate a class average mark. It should allow users to enter one mark at time for 3 times. See Lesson 10 slides 33-35 for references.



Task 2 – Write web program to calculate a class average mark. It should allow users to enter one mark at time for as many times as they wish to do so. It also allows user to stop by entering -1.

In: Computer Science

1. WRITE 3 ACTIVITIES AT EACH TIME MENTION (MORNING, AFTERNOON / EVENING, NIGHT) THAT YOU DO...

1. WRITE 3 ACTIVITIES AT EACH TIME MENTION (MORNING, AFTERNOON / EVENING, NIGHT) THAT YOU DO / SPEND TIME TOGETHER WITH YOUR FRIENDS.

2. DESCRIBE THE ACTIVITIES AT EACH TIME IN 7-10 SENTENCES IN A PARAGRAPH WITH RELEVANT PICTURES.

In: Computer Science

Hi! I 'm writing a code for a doubly linked list and this is the header...

Hi!

I 'm writing a code for a doubly linked list and this is the header file

#include<iostream>
#include <string>
using namespace std;

struct node
{
int data;
node *next,*prev;
node(int d,node *p=0,node *n=0)
{
data=d; prev=p; next=n;
}
};

class list
{
node *head,*tail;
public:
list();
bool is_empty();
int size();
void print();
void search();
int search2(int el);
void add_last(int el);
void add_first(int el);
bool add_pos();
bool delete_first();
bool delete_last();
void delete_pos(int pos);
void delete_el();
void add_sorted();
};

i want to write a function that split the list into 2 list from a specific number

ex. 5 4 7 2 8

if I spilt it from number 4 it will be 5 in the first list and 7 2 8 in the second list and number 4 will go to the List that contains fewer element so first list will have 5 4 and second list 7 2 8 if the have the same number of element the number that you were separated from it goes to any list it does not matter

In: Computer Science

Suppose we are interested in bidding on a piece of land and we know one other...

Suppose we are interested in bidding on a piece of land and we know one other bidder is interested. The seller announced that the highest bid in excess of $10,000 will be accepted. Assume that the competitor's bid x is a random variable that is uniformly distributed between $10,000 and $15,400.

  1. Suppose you bid $12,000. What is the probability that your bid will be accepted (to 2 decimals)?
  2. Suppose you bid $14,000. What is the probability that your bid will be accepted (to 2 decimals)?
  3. What amount should you bid to maximize the probability that you get the property (in dollars)?
  4. Suppose that you know someone is willing to pay you $16,000 for the property. You are considering bidding the amount shown in part (c) but a friend suggests you bid $13,000. If your objective is to maximize the expected profit, what is your bid?
    Select Stay with your bid in part (c); it maximizes expected profit or Bid $13000 to maximize the expected profit

    What is the expected profit for this bid (in dollars)?

In: Math

The proper mean lifetime of a muon is 2.2ms. Muons in a beam are traveling through...

The proper mean lifetime of a muon is 2.2ms. Muons in a beam are traveling through a laboratory at 0.95c.

1. What is their mean lifetime as measured the laboratory?

2. How far do they travel, on average, before they decay?

Please show expressions, work, and a proper explination!!!

In: Physics

Create an ER diagram, a Relational Schema, and tables with Data, based on the following requirements:...

Create an ER diagram, a Relational Schema, and tables with Data, based on the following requirements:

The database will keep track of students and campus organizations.

- For each student, we will keep track of his or her unique student ID, and his or her name and gender.

- For each organization, we will keep track of its unique organization ID and the location.

- Each student in the database belongs to at least one organization and can belong to multiple organizations.

- Each organization in the database has at least one student belonging to it and can have multiple students.

- For every instance of a student belonging to an organization, we will record the student's function in the organization (e.g., president, vice president, treasurer, member, etc.).

In: Computer Science

1. Wight Corporation has provided its contribution format income statement for June. The company produces and...

1. Wight Corporation has provided its contribution format income statement for June. The company produces and sells a single product.

Sales (9,600 units) $ 336,000
Variable expenses 144,000
Contribution margin 192,000
Fixed expenses 137,000
Net operating income $ 55,000

If the company sells 9,700 units, its net operating income should be closest to:

  • $57,000

  • $55,573

  • $58,500

  • $55,000

2. Krepps Corporation produces a single product. Last year, Krepps manufactured 34,080 units and sold 28,200 units. Production costs for the year were as follows:

Direct materials $ 259,008
Direct labor $ 153,360
Variable manufacturing overhead $ 269,232
Fixed manufacturing overhead $ 443,040

Sales totaled $1,494,600 for the year, variable selling and administrative expenses totaled $163,560, and fixed selling and administrative expenses totaled $224,928. There was no beginning inventory. Assume that direct labor is a variable cost.

Under absorption costing, the ending inventory for the year would be valued at:

  • $264,040

  • $194,040

  • $221,540

  • $255,540

In: Accounting

unix operating system create the scripts in your Fedora Server Virtual Machine 1- Open the file...

unix operating system

create the scripts in your Fedora Server Virtual Machine

1- Open the file lab1 located in the labs directory and create a script that prompts the user to enter name, address and phone #. All entered details are directed to file "info.txt" in the same directory

When display info.txt, it should look like this example:

Name: John Smith

Address: 31-10 Thomson Ave.

Phone: 718-482-0000

2- Open the file lab2 located in the labs directory and create a script to display the logged in user name and user UID

When you execute lab2, the output should look like this example:

Username: root

User ID: 0

In: Computer Science

The pipeline industry has approximately 100 companies, as compared to the motor carrier industry with more...

The pipeline industry has approximately 100 companies, as compared to the motor carrier industry with more than 50,000. What are the underlying economic causes for this difference, given the fact that they both carry approximately the same volume of intercity ton-miles?

In: Operations Management

3. Neurotransmitters: there are more than 130 neurotransmitters, and we will only emphasize the functions of...



3. Neurotransmitters: there are more than 130 neurotransmitters, and we will only emphasize the functions of a few of them in our course. For neurotransmitters acetylcholine and endorphin, estimate your personal level and activity of the neurotransmitters and how they may be affecting your behavior at this moment. Response:

In: Psychology

Research cyber kill chains. Is this a legit "game changer" in the IR space? How so?...

Research cyber kill chains. Is this a legit "game changer" in the IR space? How so?

Give a specific example

In: Computer Science

Given the information below for HooYah! Corporation, compute the expected share price at the end of...

Given the information below for HooYah! Corporation, compute the expected share price at the end of 2017 using price ratio analysis. Assume that the historical average growth rates will remain the same for 2017. (Do not round intermediate calculations. Round your answers to 2 decimal places. Exclude negative annual P/E and P/CFPS ratios from the average P/E and average P/CFPS ratio calculations. When computing annual growth rates, use a positive sign on the annual rate of change if the per share value increased in value and use a negative sign on the annual rate of change if the per share value deceased in value.)

Year 2011 2012 2013 2014 2015 2016
Price $ 12.00 $ 48.50 $ 120.00 $ 197.00 $ 87.00 $ 17.50
EPS −4.00 −3.29 −1.80 −0.48 0.06 0.06
CFPS −13.00 −10.50 −2.80 −0.05 0.23 0.08
SPS 9.00 17.50 20.10 23.60 27.10 25.95


Share price using:
P/E ratio:

P/CF ratio:

P/S ratio:

In: Finance

PROGRAM SIMULATION. Understand the given JAVA program and write the output. 1.     public class Places        {...

PROGRAM SIMULATION.  Understand the given JAVA program and write the output.  

1.     public class Places

       {

           public static void main(String args[])

           {

                  String place[]=new String[4];          

place[0]="Salmaniya";

place[1]="Salmabad";

place[2]="Isa Town";

place[3] = “Manama”

        System.out.println(place[3]);

        System.out.println(place[1].toLowerCase());

        System.out.println(place[2].substring(4,6);

        System.out.println(place[3].charAt(4));

        System.out.println(place[1].equals(place[2]));

           }

}   

b.    public class ChangeIt
      {
          public void doIt( int[] z )
          {              
                         z[0] = 0;
           }    
      }
 
     public class TestIt
    {
          public static void main ( String[] args )
          {
                         int[] myArray = {1, 2, 3, 4, 5} ;
                         ChangeIt.doIt(myArray );
                         for (int j=0; j<myArray.length; j++ )
                                        System.out.print( myArray[j] + " " ) ;
          }
     }

In: Computer Science