What is the Diagnostic and Statistical Manual (DSM)? How do clinicians use it? Does psychotherapy work for all disorders listed in the DSM-5? Identify the disorders that outcome research suggests have the best success rate. in 150 word or more
In: Psychology
Write a Python script that performs brute force to extract a password protected zip file named sec2.zip. The password is believed to be associated with one of the dictionary word in the 'wordlist.txt file.
a) Paste your code here
b) What is the password?
In: Computer Science
Please provide a 250-word response to the following question:
Do you think that active video gaming usage can limit emotional and social intelligence?
Please provide at least three reasons that clearly support your point of view.
In: Psychology
Define Work Related Attitudes below ( Plagiarism check, please don't copy and paste ) Minimum 500 Word. I will give you like once you're done.
In: Operations Management
Make a program to read a file, filled with words separated by new lines, from command line arguments (args[0]), print the file, and then add each word into an arraylist.
After making the arraylist, iterate through it and print its contents.
In: Computer Science
Python
Write a function str_slice(s) to slice sentence into single word by
their spaces and punctuations and returns a list.
You cannot use split(), join() method for this define
function
Example:
>>>str_slice(‘Hi, I like it!!’)
[‘Hi’, ‘, ’, 'I', ‘ ‘, ‘like’, ‘ ‘, ‘it’, ‘!!’]
In: Computer Science
Based on your reading style, how could you have learned material better, how could you apply this information? Give an example of how you did or could have applied this information. 250 word initial response.
In: Psychology
Question 2: Further Aspects of Budgeting and Variance Analysis-Sales mix and volume variance
Jack plc makes and sells three types of fan for which the following budget/standard information and actual information are available for a four-week period.
|
Model |
Budgeted sale (unit) |
Standard unit data |
||
|
Selling price ($) |
Variable cost ($) |
Actual sales (unit) |
||
|
Superb |
5,000 |
15 |
1.0 |
8,000 |
|
Excellent |
15,000 |
14 |
2.0 |
11,000 |
|
Good |
5,000 |
13 |
1.0 |
4,000 |
Budgeted fixed costs are $250,000 for the four-week period. Jack plc allocates fixed costs on the basis of budgeted units of sale in calculating expected net profit.
|
Required 2.1 Calculate the sales mix and sales quantity variances for each model for the four-week period by using expected net profit as the variance valuation basis. Your answer: Show your workings here (Use table if necessay. Expand the space as required): Sales mix variance Sales quantity variance Add/delete row or coloumn if necessary |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Required 2.2 Explain why managers need to divide sales volume variance into sales mix and sales quantity variances calculated in requirement (I). Word limit: 100 words. Note the word count at the end of your answer] Your answer (expand the space here): Word count= |
In: Accounting
Write a Java program that prompts the user to input a string and prints whether it is a palindrome. A palindrome is a string which reads the same backward as forward, such as Madam (disregarding punctuation and the distinction between uppercase and lowercase letters). The program must use the stack data structure.
The program must include the following classes:
The StackX class (or you can use the Java Stack class).
The Palindrome class which must contain a method named palindrome()
of type boolean. The method must return true if the string is a
palindrome and false otherwise.
The Test class which must contain the main method. In the main
method, you must prompt the user to input a string and print “The
string is a palindrome” if the inputted string is a palindrome.
Otherwise, you must print “The string is not a palindrome.”
Here is a sample run:
Enter a word: Madam
The string is a palindrome
Here is another sample run:
Enter a word: Able was I, ere I saw Elba.
The string is a palindrome
Here is another sample run:
Enter a word: Data Structures.
The string is not a palindrome
======================================================================================
public class StackX {
private long [] stackArray ;
private int top ;
public StackX ( int size )
{
stackArray = new long [ size ]; // create the stack
top = -1; // set the top to -1
}
public void push ( long j ) {
stackArray [++ top ] = j ; // increment top , insert item
}
public long pop ()
{
return stackArray [ top - -]; // access item , decrement top
}
In: Computer Science
|
Subjects |
Positive |
Negative |
|
1 |
500 |
490 |
|
2 |
540 |
540 |
|
3 |
340 |
350 |
|
4 |
540 |
580 |
|
5 |
480 |
500 |
|
6 |
465 |
490 |
|
7 |
400 |
450 |
|
8 |
440 |
450 |
|
9 |
430 |
420 |
|
10 |
435 |
450 |
Please resolve the following questions:
In: Statistics and Probability