Questions
Suppose country Zee is a closed economy. Consider AD, SRAS and LRAS for the economy of...

Suppose country Zee is a closed economy. Consider AD, SRAS and LRAS for the economy of Zee. Tye economy begins at price level P0, with output equal potential GDP=Y*, budget is balanced.

3.1 Suppose the government of Zee increases tax, T while keeping government expenditure G unchanged. Are we having budget deficit or surplus? What would be the effect of this action on loanable funds, real interest rate, private savings and investment, and levels of debt in country Zee?

3.2 Compare the short-run and the long-run effects of the governments policy stated in 3.1. Briefly mention what dilemma does the government face in implementing this policy.

In: Economics

Description of cystic fibrosis? What has changed in cystic fibrosis to allow it to cause a...

Description of cystic fibrosis?

What has changed in cystic fibrosis to allow it to cause a genetic disorder? Explain how this differs from the gene's normal function.Is it possible for parents to not have the disorder, but pass it on to their children?

What kind of dominance pattern does cystic fibrosis show?

What problem(s) is/are caused to a person who inherits the cystic fibrosis gene? Is this typically inherited from the mother or the father?

Describe an experiment that you could use to determine if a new drug is effective at treating cystic fibrosis. Be sure to mention the independent, dependent and control variables.

How you could use the scientific method to draw conclusions about cystic fibrosis or to treat this disorder?

In: Biology

Question Four: (25 marks) (Word count 300 words) Conduct a research for any issue you chose...

Question Four: (Word count 300 words)

  1. Conduct a research for any issue you chose in real life, shortly describe the issue of your choice and explain which type of data will be collected and why? Also apply two of the investigating methods in collecting the data and mention the advantages and disadvantages of the two tools with examples of your chosen issue.
  2. Conduct a career audit for yourself whether in your current job or in a future job and apply your personal marketing plan.

Note: for part (A) the two methods are:

1.Primary data – it is a data that you, or the investigator, have collected and which did not exist before.

2.Secondary data – data that is already exist.

In: Operations Management

Apply the nursing Process to the following Hypothetical situation just answer question 6,7 Mrs. Rojas, 30...

Apply the nursing Process to the following

Hypothetical situation

just answer question 6,7


Mrs. Rojas, 30 years old, came to the emergency room with a cold two weeks ago, she presented dyspnea (difficulty breathing). It indicates that you have a fever, headache for several days, chest pain, and you have to sit up to breathe well. Also, complaints of chills have decreased fluid intake 2 days ago. On physical examination temp. 39.5C, pulse 92 reg., Strong, Resp. 22 / min. Superficial. B / P 122/80., Dry mouth mucosa, pale, hot skin, reddened cheeks. Decreased vesicular and crackling sounds on inspiration in the right upper and lower lobe. Its thoracic expansion is 3 cm., Scant cough, dense sputum of light pink color. Lethargic, weak, and fatigued appearance. The doctor suspects that this may have the diagnosis Influenza A H1N1.
After reading the situation, answer the following questions;
1.After reading and analyzing the situation, identify the estimated data, and classify them as subjective and objective.


2. Mention the problems that you infer in this situation?

3. According to the NANDA category, which nursing diagnosis applies in this situation. (It must include Problem, etiology and symptoms).

4. Develop the expected result for this Situation

5.Develop nursing interventions such as coordinating and managing
Care of this patient, include the nursing orders and justification for each intervention. (Complete the table).


                   Nursing orders                                    Justification                              

6. Mention what legal ethical implications should be considered in this condition.


7. List and define the six nursing steps and define them.

In: Nursing

A pregnant female of age 38 years, her weight is 80 Kg and her height is...

A pregnant female of age 38 years, her weight is 80 Kg and her height is 160 cm, was admitted to hospital due to unknown reason high temperature 38 ºC, she had symptoms like night sweat, general weakness, weight loss of unknown reason, also non- itchy spots on her neck. The physician advised her to admit hospital for more investigations as she is pregnant in the 3rd trimester, after blood test, WBC count was 3500 /mm3 and Hb was 9 g/dL, and she was told HIV-positive patient?

1-Would you recommend any other laboratory tests to prove she is HIV-positive patient? If yes, mention them with their normal values? (Please notice that your answer not to exceed 50 words, and list the reference you have used).

2-What are your dietary, exercise, and lifestyle recommendations for her as AIDS patient? (Please notice that your answer not to exceed 1 word page, single spaced, and list the reference you have used).

3-Do you advice her to take ART medication? If yes, Mention 2 medications used to treat AIDS? What are these medications originally used for ? What are the side effects of using these 2 medications you have mentioned, and what food- drug interaction may occur due to use these medications? (Please notice that your answer not to exceed 100 words for each question part, and list the reference you have used).

4-After delivering her baby as AIDS patient, do you advice her to breast-feed her baby? Explain?

In: Anatomy and Physiology

I wrote a code snippet to draw a bit of 'abstract art': yertle.penDown(); yertle.forward(10); yertle.right(Math.PI/2); yertle.forward(10);...

I wrote a code snippet to draw a bit of 'abstract art':

yertle.penDown();
yertle.forward(10);
yertle.right(Math.PI/2);
yertle.forward(10);
yertle.right(Math.PI/2);
yertle.forward(10);
yertle.right(Math.PI/2);
yertle.forward(10);
yertle.right(Math.PI/2);
yertle.left(Math.PI/2);
yertle.forward(20);
yertle.right(Math.PI/2);
yertle.forward(20);
yertle.right(Math.PI/2);
yertle.forward(20);
yertle.right(Math.PI/2);
yertle.forward(20);
yertle.right(Math.PI/2);
yertle.left(Math.PI/2);
yertle.forward(30);
yertle.right(Math.PI/2);
yertle.forward(30);
yertle.right(Math.PI/2);
yertle.forward(30);
yertle.right(Math.PI/2);
yertle.forward(30);
yertle.right(Math.PI/2);
yertle.left(Math.PI/2);
yertle.forward(40);
yertle.right(Math.PI/2);
yertle.forward(40);
yertle.right(Math.PI/2);
yertle.forward(40);
yertle.right(Math.PI/2);
yertle.forward(40);
yertle.right(Math.PI/2);
yertle.left(Math.PI/2);
yertle.penUp();

My instructor suggested I could get the same result from a much shorter program, but I don't see how.
What should I write instead?
(Keep it concise, and don't include anything outside the scope of the question)

In: Computer Science

Make Animal an abstract class. Create a Kennel Class Create 2-3 Dog objects Create 2-3 Cat...

Make Animal an abstract class.

  • Create a Kennel Class
    • Create 2-3 Dog objects
    • Create 2-3 Cat objects
  • Put your Dog and Cat objects in an Array of Animals
  • Loop over your Animals and print the animal with Species, Age, and the status of the appropriate vaccines.

Using the code below:

public class Animal {
    //Declaring instance variables
    private int age;
    private boolean RabiesVaccinationStatus;
    private String name;
    private String ownerName;

    //Zero argumented constructor
    public Animal() {

    }
    //Parameterized constructor
    public Animal(int age, boolean rabiesVaccinationStatus, String name,
                  String ownerName) {
        this.age = age;
        RabiesVaccinationStatus = rabiesVaccinationStatus;
        this.name = name;
        this.ownerName = ownerName;
    }

    // getters and setters
    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public boolean isRabiesVaccinationStatus() {
        return RabiesVaccinationStatus;
    }

    public void setRabiesVaccinationStatus(boolean rabiesVaccinationStatus) {
        RabiesVaccinationStatus = rabiesVaccinationStatus;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getOwnerName() {
        return ownerName;
    }

    public void setOwnerName(String ownerName) {
        this.ownerName = ownerName;
    }

    //toString method is used to display the contents of an object inside it
    public String toString() {
        return "Age :" + age + ", Rabies Vaccination Status :"
                + RabiesVaccinationStatus + ", Name :" + name
                + ", Owner Name :" + ownerName;
    }

}


// Dog.java

class Dog extends Animal {
    //Declaring instance variables
    private boolean distemperVaccinationStatus;

    //Parameterized constructor
    public Dog(boolean distemperVaccinationStatus) {
        this.distemperVaccinationStatus = distemperVaccinationStatus;
    }

    //Parameterized constructor
    public Dog(int age, boolean rabiesVaccinationStatus, String name,
               String ownerName, boolean distemperVaccinationStatus) {
        super(age, rabiesVaccinationStatus, name, ownerName);
        this.distemperVaccinationStatus = distemperVaccinationStatus;
    }

    // getters and setters
    public boolean isDistemperVaccinationStatus() {
        return distemperVaccinationStatus;
    }

    public void setDistemperVaccinationStatus(boolean distemperVaccinationStatus) {
        this.distemperVaccinationStatus = distemperVaccinationStatus;
    }

    //toString method is used to display the contents of an object inside it
    public String toString() {
        return "Dog :"+super.toString() + " Distemper Vaccination Status :"
                + distemperVaccinationStatus;
    }

    public void speak()
    {
        System.out.println("bark");
    }

}

// Cat,.java

class Cat extends Animal {
    //Declaring instance variables
    private boolean felineLeukemiaVaccinationStatus;
    private boolean declawedStatus;

    //Parameterized constructor
    public Cat(boolean felineLeukemiaVaccinationStatus, boolean declawedStatus) {
        this.felineLeukemiaVaccinationStatus = felineLeukemiaVaccinationStatus;
        this.declawedStatus = declawedStatus;
    }
    //Parameterized constructor
    public Cat(int age, boolean rabiesVaccinationStatus, String name,
               String ownerName, boolean felineLeukemiaVaccinationStatus,
               boolean declawedStatus) {
        super(age, rabiesVaccinationStatus, name, ownerName);
        this.felineLeukemiaVaccinationStatus = felineLeukemiaVaccinationStatus;
        this.declawedStatus = declawedStatus;
    }

    // getters and setters
    public boolean isFelineLeukemiaVaccinationStatus() {
        return felineLeukemiaVaccinationStatus;
    }

    public void setFelineLeukemiaVaccinationStatus(
            boolean felineLeukemiaVaccinationStatus) {
        this.felineLeukemiaVaccinationStatus = felineLeukemiaVaccinationStatus;
    }

    public boolean isDeclawedStatus() {
        return declawedStatus;
    }

    public void setDeclawedStatus(boolean declawedStatus) {
        this.declawedStatus = declawedStatus;
    }

    //toString method is used to display the contents of an object inside it
    public String toString() {
        return "Cat :"+super.toString() + " Feline Leukemia Vaccination Status :"
                + felineLeukemiaVaccinationStatus + ", Declawed Status :"
                + declawedStatus;
    }

    public void speak()
    {
        System.out.println("Meow");
    }

}

In: Computer Science

Programming Language: C# Person Class Fields - password : string Properties + «C# property, setter private»...

Programming Language: C#

Person

Class

Fields

- password : string

Properties

+ «C# property, setter private» IsAuthenticated : bool

+ «C# property, setter absent» SIN : string

+ «C# property, setter absent» Name : string

Methods

+ «Constructor» Person(name : string, sin : string)

+ Login(password : string) : void

+ Logout() : void

+ ToString() : string

Transaction

Class

Properties

+ «C# property, setter absent » AccountNumber : string

+ «C# property, setter absent» Amount : double

+ «C# property, setter absent» Originator : Person

+ «C# property, setter absent» Time : DateTime

Methods

+ «Constructor» Transaction(accountNumber : string, amount : double, endBalance : double, person : Person, time : DateTime)

+ ToString() : string

ITransaction

Interface

Methods

   Withdraw(amount : double, person : Person) : void

   Deposit(amount : double, person : Person) : void

Account

Abstract Class

Fields

# «readonly» users : List<Person>

# «readonly» transactions : List<Transaction>

$- LAST_NUMBER = 100_000: int

Properties

+ «C# property, setter absent» Number: string

+ «C# property, protected setter» Balance: double

+ «C# property, protected setter» LowestBalance : double

Methods

+ «Constructor» Account(type : string, balance : double)

+ Deposit(balance : double, person : Person) : void

+ AddUser(person : Person) : string

+ IsUser(name : string) : bool

+ «C# abstract method» PrepareMonthlyStatement() : void

+ ToString() : string

CheckingAccount

Class

→ Account, ITransaction

Fields

$- COST_PER_TRANSACTION = 0.05 : double

$- INTEREST_RATE = 0.005 : double

- hasOverdraft: bool

Methods

+ «Constructor» CheckingAccount(balance = 0 : double, hasOverdraft = false: bool)

+ Deposit(amount : double, person : Person) : void

+ Withdraw(amount : double, person : Person) : void

+ PrepareMonthlyReport(amount : double, person : Person) : void

SavingAccount

Class

→ Account, ITransaction

Fields

$- COST_PER_TRANSACTION : double

$- INTEREST_RATE : double

Methods

+ «Constructor» SavingAccount(balance = 0 : double)

+ Deposit(amount : double, person : Person) : void

+ Withdraw(amount : double, person : Person) : void

+ PrepareMonthlyReport(amount : double, person : Person) : void

In: Computer Science

Question 5 Percy Bazaar did not keep proper accounting records. She asked you to review this...

Question 5

Percy Bazaar did not keep proper accounting records. She asked you to review this informatio from her records.

ASSETS AND LIABILITIES:

31 Dec. 2018

31 Dec. 2019

Property, Plant & Equipment

40 000.00

40 000. o

Accounts receivable

10 000.00

30 000.00

Accounts payable

30 000.00

36 000.00

Accrued expense ( Telephone & internet)

0.00

6 000.00

Bank

30 000.00

30 000.00

Cash

4 000.00

2 000.00

Inventory

40 000.00

20 000.00

Capital

0.00

17 ooo.op

Long term loan ( Deutsche Bank)

60 000.00

60 000.00

The following expenses were paid during the year:

Telephone & internet N$ 8 000.00 paid by cheque.

Sundry expenses N$ 18 000.00 paid by cheque.

Telephone & internet paid by cash N$ 2 000.00.

Drawings N$ 10 000.00 by cash.

The bank statement from First National Bank Namibia indicated that:

There was N$ 50 000.00 paid b receivables and banked immediately.

Percy Bazaar received N$ 10 000 cash from one of the receivables. Payables were paid N$ 24 000.00 by cheque during the year.

You are required to:

5.1 Prepare the following General ledger accounts ( T- accounts) and balance them off properly:

Accounts receivable

[6 Marks]

Accounts Payable

[5 Marks]

5.2 Mention any two features of incomplete records.

[2 Marks]

In: Accounting

C++ Language Oriented program. Please help me out with this project !!! Banks offer various types...

C++ Language Oriented program. Please help me out with this project !!!

Banks offer various types of accounts, such as savings, checking, certificate of deposits, and money market, to attract customers as well as meet their specific needs. Two of the most commonly used accounts are savings and checking. Each of these accounts has various options. For example, you may have a savings account that requires no minimum balance but has a lower interest rate. Similarly, you may have a checking account that limits the number of checks you may write. Another type of account that is used to save money for the long term is certificate of deposit (CD).

In this programming exercise, you use abstract classes and pure virtual functions to design classes to manipulate various types of accounts. For simplicity, assume that the bank offers three types of accounts: savings, checking, and certificate of deposit, as described next.

Savings accounts: Suppose that the bank offers two types of savings accounts: one that has no minimum balance and a lower interest rate and another that requires a minimum balance and has a higher interest rate.

Checking accounts: Suppose that the bank offers three types of checking accounts: one with a monthly service charge, limited check writing, no minimum balance, and no interest; another with no monthly service charge, a minimum balance requirement, unlimited check writing and lower interest; and a third with no monthly service charge, a higher minimum requirement, a higher interest rate, and unlimited check writing.

Certificate of deposit (CD): In an account of this type, money is left for some time, and these accounts draw higher interest rates than savings or checking accounts. Suppose that you purchase a CD for six months. Then we say that the CD will mature in six months. The penalty for early withdrawal is stiff.

Note that the classes bankAccount and checkingAccount are abstract. That is, we cannot instantiate objects of these classes. The other classes in Figure 12-25 are not abstract.

bankAccount: Every bank account has an account number, the name of the owner, and a balance. Therefore, instance variables such as name, accountNumber, and balance should be declared in the abstract class bankAccount. Some operations common to all types of accounts are retrieve account owner’s name, account number, and account balance; make deposits; withdraw money; and create monthly statements. So include functions to implement these operations. Some of these functions will be pure virtual.

checkingAccount: A checking account is a bank account. Therefore, it inherits all the properties of a bank account. Because one of the objectives of a checking account is to be able to write checks, include the pure virtual function writeCheck to write a check.

serviceChargeChecking: A service charge checking account is a checking account. Therefore, it inherits all the properties of a checking account. For simplicity, assume that this type of account does not pay any interest, allows the account holder to write a limited number of checks each month, and does not require any minimum balance. Include appropriate named constants, instance variables, and functions in this class.

noServiceChargeChecking: A checking account with no monthly service charge is a checking account. Therefore, it inherits all the properties of a checking account. Furthermore, this type of account pays interest, allows the account holder to write checks, and requires a minimum balance.

highInterestChecking: A checking account with high interest is a checking account with no monthly service charge. Therefore, it inherits all the properties

Copyright 2015 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part. Due to electronic rights, some third party content may be suppressed from the eBook and/or eChapter(s). Editorial review has deemed that any suppressed content does not materially affect the overall learning experience. Cengage Learning reserves the right to remove additional content at any time if subsequent rights restrictions require it.

of a no service charge checking account. Furthermore, this type of account pays higher interest and requires a higher minimum balance than the no service charge checking account.

savingsAccount: A savings account is a bank account. Therefore, it inherits all the properties of a bank account. Furthermore, a savings account also pays interest.

highInterestSavings: A high-interest savings account is a savings account. Therefore, it inherits all the properties of a savings account. It also requires a minimum balance.

certificateOfDeposit: A certificate of deposit account is a bank account. Therefore, it inherits all the properties of a bank account. In addition, it has instance variables to store the number of CD maturity months, interest rate, and the current CD month.

In: Computer Science