Questions
Glucocorticoid secretion increases in response to stress. Which of the following hormones will cause the adrenal...

Glucocorticoid secretion increases in response to stress. Which of the following
hormones will cause the adrenal gland to release glucocorticoids?
Growth hormone (GH)
adrenaline
Anti-diuretic hormone (ADH)
ACTH

During the Endocrine Ed simulation, what hormone secretion increased when the
lights were turned out allowing Ed to sleep?
a.ACTH
b.adrenaline
c.thyroid stimulating hormone (TSH)
d.melanin

During labor, the baby's head pushes against the mother's cervix causing nerve
impulses to transmitted to the brain to stimulate release of oxytocin from the
pituitary gland into the blood stream. Increased levels of oxytocin in the blood
stream stimulate uterine contractions which results in the baby's head pushing
against the mother's cervix. The process repeats causing more and more
oxytocin to be released into the blood stream stimulating stronger and more
frequent contractions.
Is this an example of negative feedback?
a.Yes
b.No

Which of the following accurately describes the typical transmission of an
electrical signal through a neuron?
a.cell body>dendrite>axon
b.axon>dendrite>cell body
c.axon>cell body>dendrite
d.dendrite>cell body>axon

Which of the following is defined as a small gap between transmitting and
receiving neurons?
a.cell body
b.axon
c.synaptic terminal
d.synaptic cleft

Fill in the blanks with the correct word(s).

In the central nervous system (CNS), neurons bundled together are called Blank 1.[ ]
. In the peripheral nervous system (PNS), neurons bundled together are
called Blank 2 [.]

When you performed the "ruler catching" experiment, which of the following
accurately describes the muscles used to catch the ruler?
a.sensory receptors
b.integration centers in the brain
c.effector cells

When a response "skips" the integration process where the brain makes a decision about
how to respond to a stimulus, how would we describe this action by the nervous system? In
other words, if a response to a stimulus is made involuntary without conscious thought,
how would the relay system used by the nervous system be described?
a.neural integration
.b.motor neuron output
c.sensory input
c.spinal reflex arc

In: Biology

The management estimates total sales for the period January, 2019 through June, 2019 based on actual...

The management estimates total sales for the period January, 2019 through June, 2019 based on actual sales from the immediate past six months. The following assumptions are made:  The Sales were $140,000 in July 2018 and then the sales grew by 2% each month in the first three months (i.e., from August to October 2018) and by 5% in the next two months (i.e., in November and December 2018). The sales are expected to grow by 1% each month thereafter.  35% of the Sales are collected in the same month. 33% of the sales are collected in the following month. 31% of the sales are collected after two months and the remainder are not collected.  The Purchases are 70% of each month’s sales and paid in the same month.  Wages and Salaries are $25,000 each month and paid in the same month.  Other administrative expenses are $15,000 and paid in the same month.  Depreciation expense is $5,000 each month.  An electrical device worth $30,000 will be purchased in April 2019. 50% of the amount due will be paid immediately and the balance will be paid in May, 2019.  The company had previously taken a loan of $125,000. The annual interest rate on the loan amount is 5%. The interest is paid twice a year in June and December each year. Assume that no principal repayments are made in this period, only interest payments are made.  The company pays rent of $3,500 quarterly (in March, June, September, and December each year).

Questions: 1. Determine the total cash inflows, the total cash outflows, and the expected change in cash for each month from January to July, 2019. Show your work in excel using excel functions. Based the findings, explain in your own words whether the company should borrow/invest and how much and in which months. [4.50 points]

2. Describe in your own words some of the short-term borrowing options that the company may adopt. Please write your answer in another tab on the same excel file, no need to upload another Word Document file or type your answer elsewhere. [0.50 points]

In: Finance

In-Class Spreadsheet Activity (Version A) Your income and expenses: JANUARY: Income $1900; Rent $600; Car payment...

In-Class Spreadsheet Activity (Version A)
Your income and expenses:
JANUARY:
Income $1900; Rent $600; Car payment $199; Groceries $125; Utilities $89.50; School Expenses $125.75; Movie Tickets $61
FEBRUARY:
Income $1950; Rent $600; School books $278.97; Groceries $79.16; Utilities $76.57; Car Payment $199.61
MARCH:
Income $1800; Rent $600; Car payment $199; Groceries $73.93; School Expenses $55.99; Medical Expense $100; Car Insurance $350; Utilities $69.51
APRIL:
Income $2100; Rent $625; IRS expenses $279.54; Car payment $199; Utilities $58.88; Groceries $88.85; Misc Expenses $15.01
Using the information above, create a budget on spreadsheet to keep track of your money. Make sure you do the following:
1) Format all numbers with currency to 2 decimal places.
2) Adjust column width appropriately.
3) Bold and center align the column headings and “merge and center” the title
4) Calculate totals for each type of expense and for each month.
5) Include a grand total for all 4 months of expenses.
6) Add another column to calculate the percentage of total expenses for each category by dividing each category total by the grand total.
7) Add another row to calculate the percentage of total expenses for each month by dividing each monthly total by the grand total.
8) Show how much is going into savings. (Total income minus total expenses)
9) Use additional tools to make the report attractive. (Possibilities include: fill colors, text colors, font and size changes, word art, etc.)
10) Make sure it all fits on one page and name your spreadsheet "BUDGET".
*Hint: Since you have fewer months than expenses you might be better off putting expenses as rows and months as columns so it’ll fit on one page.
10 points for each question. Total = 100 points.
The weight of this assignment is 5% of the course grade.

In: Finance

Write the class Complex that supports the basic complex number operations. Such operations are addition (+),...

Write the class Complex that supports the basic complex number operations. Such operations are addition (+), subtraction (-) and multiplication (*) of complex numbers, and multiplication (*) of a complex by a scalar (float or int). All methods must return (not print) the result. Class also supports the rich comparison for equality (= =)

  • - Check the doctest for object behavior examples.

  • - You must use the special methods for those 4 operators in order to override their behavior

  • - You will need other special methods to achieve a legible object representation.

  • - Multiplication by scalar and by another complex number use the same operator, so you must check the type of the object in order to decide which operation you have to perform

  • - Rich comparison returns a Boolean value

  • - The rest of the methods must return a new Complex object, this means the original

    objects should not change after the operation is performed.

  • - Test your code, this is how you ensure you get the most credit out of your work!!

  • - When returning error messages, make sure your string contains the word ‘error’

  • - You are not allowed to modify the constructor or any given code.

  • - Hint: Section 3.3.1. Basic customization (__eq__) and Full Section 3.3.8. Emulating numeric types inhttps://docs.python.org/3/reference/datamodel.html#emulating-numeric-types

    Write the property method conjugate into the Complex class. The complex conjugate of the complex number z = x + yi is given by x – yi

Remember, you are not allowed to modify the given constructor. The method conjugate must be a property method, otherwise, no credit will be given. Property methods are discussed in the video lectures!

Starting Code:

class Complex:
    '''        
        >>> a=Complex(5,-6)        
        >>> b=Complex(2,14)        
        >>> a+b        
        (7, 8i)        
        >>> a-b        
        (3, -20i)        
        >>> a*b        
        (94, 58i)        
        >>> b*5        
        (10, 70i)        
        >>> 5*b        
        (10, 70i)        
        >>> print(a)        
        5-6i        
        >>> print(b)        
        2+14i       
        >>> b        
        (2, 14i)        
        >>> isinstance(a+b, Complex)
        True
        >>> a.conjugate
        (5, 6i)
        >>> b==Complex(2,14)
        True
        >>> a==b
        False
    '''

    def __init__(self, real, imag):
        self.real = real
        self.imag = imag

In: Computer Science

--In the GSS, the original race variable was coded as: whites=1, blacks=2, others=3. Which of the...

--In the GSS, the original race variable was coded as: whites=1, blacks=2, others=3. Which of the following possibilities is the best way to recode this variable into a dichotomy with “white” as the reference category?

a.) whites=1, non-whites=2

b.) non-whites=1, whites=2

c.) whites=0, non-whites=1

d.) whites=-1, non-whites=+1

-- Another word for the reference group is:

a.) the omitted variable

b.) the omitted slope

c.) the omitted category

d.) the omitted constant

-- Here is a regression equation using GSS2008 data, people aged 21 to 29, where men were coded as 0, and women were coded as 1:

# OF TIMES GO TO BAR PER MONTH = 4.00 – 1.73 (SEX)

If women had been coded as 0, and men had been coded as 1, the regression equation would have been:

a.) # OF TIMES GO TO BAR PER MONTH = 4.00 – 1.73 (SEX)

b.) # OF TIMES GO TO BAR PER MONTH = 2.27 + 1.73 (SEX)

c.) # OF TIMES GO TO BAR PER MONTH = 5.73 – 1.73 (SEX)

d.) # OF TIMES GO TO BAR PER MONTH = 4.00 – 2.27 (SEX)

--If we wanted to use the GSS variable HEALTH (self-assessment of health: Excellent, Good, Fair, or Poor) as an independent variable in a regression model using a dummy approach, how many independent variables would we have to create (not including the reference category)?

a.) None, this variable is perfectly fine as is to use in a regression equation.

b.) 2

c.) 3

d.) 4

--A researcher creates a set of four reference-group variables to include in a regression. What can you assume about the variable from which she built these variables?

a.) It likely had three categories

b.) It likely had four categories

c.) It likely had five categories

d.) It likely had six categories

--- With which of the following variables would you most likely not use the reference-grouping technique?

a.) a nominal-level variable

b.) an ordinal-level variable

c.) a ratio-level variable

d.) all are equally likely

In: Math

For each case history provide: a diagnosis; list the criteria required for the diagnosis; and provide...

For each case history provide:

  1. a diagnosis;
  2. list the criteria required for the diagnosis; and
  3. provide examples from the case history for each of the criteria listed.
    For example, if one of the criteria for a diagnosis is "delusions", then you should list "delusions, e.g., believes he is receiving special/hidden messages from television programs that he only understands".

Emilio (DSM-IV Casebook, p. 189-190)


Emilio is a 40-year-old man who looks 10 years younger. He is brought to the hospital, his twelfth hospitalisation, by his mother because she is afraid of him. He is dressed in a ragged overcoat, bedroom slippers, and a baseball cap, and wears several medals around his neck. His affect ranges from anger at his mother ("She feeds me sh*t . . . what comes out of other people's rectums") to a giggling, obsequious seductiveness toward the interviewer. His speech and manner have a childlike quality, and he walks with a mincing step and exaggerated hip movements. His mother reports that he stopped taking his medication about a month ago, and has since begun to hear voices and to look and act more bizarrely. When asked what he has been doing, he says "Eating wires and lighting fires." His spontaneous speech is often incoherent and marked by frequent rhyming and clang associations (speech in which sounds, rather than meaningful relationships, govern word choice).


Emilio's first hospitalisation occurred after he dropped out of school at age 16, and since that time he has never been able to attend school or hold a job. He has been treated with medication during his hospitalizations, but doesn't continue to take medication when he leaves, so he quickly becomes disorganised again. He lives with his elderly mother, but sometimes disappears for several months at a time, and is eventually picked up by the police as he wanders in the streets. There is no known history of drug or alcohol abuse.

In: Psychology

QUESTION ON OFFER & ACCEPTANCE Linda has decided to sell her car and parks it outside...

QUESTION ON OFFER & ACCEPTANCE

Linda has decided to sell her car and parks it outside her house with a notice on the front windscreen stating: “For sale; pristine condition; one owner; £4,750 or near offer. Please call at 1 Farmers Road or Telephone 0201-123456. First person to agree on a price will get the car”.

On Monday at 9.00am, Eunice sees the car, but as she was running late for a dental appointment, she telephones Princess from work at 10.00am, and makes an offer of £4,500, which Linda says she would like to consider.

Eunice says that she will assume Linda has accepted her offer unless she hears from her by 9.00pm that evening, a proposal to which Linda agrees.

At 11.00am on Monday, Daniel calls at Linda’s house, but Esther, Linda’s daughter, was the only person at home. He therefore leaves a note reading; “Monday 11.00am. Please keep the car for me. Here is a cheque for £4,750, Daniel”. Maxwell leaves the cheque together with the note on a desk in Linda’s study.

At 12.15pm on that same Monday, Mark passes by the car and sees the notice, and within a few minutes, posts a first class letter of acceptance together with a cheque for £4,750, using the post box at the end of the street. Unfortunately, Mark misaddresses his letter, so it arrives on Friday.

At 3.00pm on Monday, Linda decides to accept Eunice’s offer and posts a letter of acceptance to Eunice’s business address, saying: “I agree to sell on your terms. Because of the lower price, can you pay in cash”?

At 9.30pm on Monday, Linda reads Daniel’ acceptance and immediately telephones Eunice’s business address, leaving a message on the telephone service answering machine: “Ignore the letter you will receive, deal off, Linda”. Eunice is away on business and only listens to the tape on Wednesday evening.

Please help me answer this question.   

CITING APPROPRIATE CASES & ESTABLISHED LEGAL PRINCIPLES, ADVISE THE PARTIES ON THEIR LEGAL POSITION. HAS A CONTRACT COME INTO BEING? IF YES, WITH WHO? IF NO, WHY IS THERE NO CONTRACT?

Word Limit: 2,500

In: Operations Management

Edsger Dijkstra, an early contributor to the development of software engineering, stated that Testing can only...

Edsger Dijkstra, an early contributor to the development of software engineering, stated that Testing can only show the presence of errors, not their........

Select one:

a. absence

b. None of the other options.

c. causes

d. presence

The following is an example of errors originated in the requirements analysis phase:

Select one:

a.

Defects in the used algorithms.

b. Misunderstanding of the client’s instructions.

c.

User interface and procedure errors.

d. Algorithmic and processing defects.

Fill out the missing word:

Software testing is a .............. process carried out by a specialized testing team.

Select one:

a. necesssary

b. random

c. formal

d. sufficient

In software testing, a software unit, several integrated software units or an entire software package are examined by ..................... the programs on a computer.

Select one:

a. writing

b. running

c. simulating

d. proving

There is no single testing technique that is guaranteed to find all defects in all programs.

Select one:

True

False

An exhaustive testing method is an effective testing strategy since it is guaranteed to find all possible defects.

Select one:

True

False

The main difference between debugging and testing is:

Select one:

a. Debugging use tools while testing does not.

b. Testing aims to locate source of the defect and to fix it while debugging aims to discover defects.

c. Debugging aims to locate the source of the defect and to fix it while testing aims to discover defects.

d. Debugging is a static V&V method while testing is a dynamic one.

A programmer forgets to add two numbers in the code. This is an example of a:

Select one:

a. A software failure.

b. A software error.

c. A software defect.

d. None of the other choices.

A tester finds out in a test case that the actual result differs from the expected result. This is an example of:

Select one:

a. A software defect.

b. A software failure.

c. None of the other choices.

d. A software error.

An example of a white-box testing technique is:

Select one:

a. Review.

b. Code coverage.

c. Equivalence class partitioning.

d. Inspection.

In: Computer Science

Below is a list of topics for you to select from for your Management project: Organizations...

  • Below is a list of topics for you to select from for your Management project:

  • Organizations as Open Systems
  • Measuring Job Satisfaction
  • Techniques for Changing Employee Attitudes
  • The Role of Non-work Activities in Work Behavior
  • Implications of Selective Perception for the Communication Model
  • Pay Secrecy and Employee Motivation
  • Choosing Between Individual and Group Decision Making: A Manager's Guide
  • Defense Mechanisms and Employee Behavior
  • The Contribution of the Hawthorne Studies to the Study of Management
  • Strengths and Weaknesses of Committee Decision Making
  • Methods for Overcoming resistance to Change
  • the Impact of Automation and Repetitive Tasks on Workers
  • Defining and Understanding Conflict, Cooperation, and Competition
  • Differences Between Male and Female Leadership Styles
  • "Discipline": A Dirty Word in the 2000s?
  • Drug and Alcohol Abuse in Organizations
  • Managing Interdepartmental Conflicts
  • Is There a Decline in the Motivation to Manage?
  • The Changing Work Force: Implications for Management
  • Employee Assistance Programs
  • The Changing Work Force: Impact on Human resource Management
  • The Application of Quantitative Management Theories
  • The Role of Labor Unions in the 2000s
  • Business Ethics: "Do Unto Others as You Would Have Them do Unto You" verses "Do it Before Someone Else Does"
  • Organizational Behavior Modification
  • Designing Effective Work Teams
  • Managing Resistance to Organizational Change
  • Ethical and Legal Obligations of Members of Boards of Directors
  • Ways of Determining Effective Spans of Control
  • Total Quality Management: Is it working?
  • A Study of Employee Relations in a U.S. Based Japanese-Owned Factory
  • A Review of the Japanese Concept of Lifetime Employment and the Employment of Women in Japanese Organizations

  • Management Project: Students will submit a written analysis of a selected topic. The paper will be typed, double spaced and the content of the paper will be between 3 - 5 pages in length. The title page, abstract and work cited pages do not contribute to the length. The paper must be submitted in MLA or APA format . The paper should be grammatically correct and free from typographical and spelling errors. There will be at a minimum of three (3) different references, (wikipedia and is not an acceptable reference).Footnotes and bibliography, where required must be presented in acceptable format.

In: Operations Management

Linux Fundamentals part 3 Below are questions related to the command line use of Linux. You...

Linux Fundamentals part 3

Below are questions related to the command line use of Linux.  You can use the videos, man pages, and notes to answer these questions. 

Remember that Linux is CASE SENSITIVE.  Rm and rm are NOT the same command.  I will count off totally for a question if you do not take this into account.

For each command give me the ENTIRE COMMAND SEQUENCE.  If I ask you  'What command would I use to move the file one.txt to the parent directory and rename it to two.txt?", the answer is NOT 'mv'. That is only part of the command. I want the entire command sequence.

10. Find all files under the current directory with an accessed time was more than 2 days ago.


11. I have a file called 'BackupLogs.tar.bz2' in my home directory (because you made it from Questions 4 and 8, right? Right!). I want to uncompress and unarchive the files in it. What single command would I use?


12. I have a file called BackupLogs.tar.bz2 and I want to uncompress and ONLY uncompress the file (NOT uncompress and unarchive). What command would I use?


13. I want to search for all files in the directory ~/Documents which contain the keyword "add", case sensitive, and as the whole word only. Words like addendum, addition, etc, should not be found in the results; just 'add'. Additionally, I only want to see the name(s) of the file(s) that have matches as a result of running the command. This means your result should show not the keyword hit AND surrounding text, but rather suppress that output and instead display just the file name. What command would I use? This may sound complicated, but break down each step and use the man page.


14. I have a large file named walloftext.txt and I want to view only the first 5 lines of the file. What command would I use?


15. Same as file as Question 14, but I want to view only the last 7 lines.

In: Computer Science