Questions
Discuss in 500 words or more, the reasons for Safe Harbor under the HIPAA rules for...

Discuss in 500 words or more, the reasons for Safe Harbor under the HIPAA rules for database security.

Use at least three sources. Include at least 3 quotes from your sources enclosed in quotation marks and cited in-line by reference to your reference list. Cite your sources. Do not copy. Write in essay format not in bulleted, numbered or other list format.

In: Computer Science

4. Even though Oracle has the second market share in the database industry (33.7%, behind IBM's...

4. Even though Oracle has the second market share in the database industry (33.7%, behind IBM's 34.1% in 2004), it has chosen to let IBM'DB2 customers use their future products (iFlex, Retek and Fusion). It may seem all the more strange to form this kind of "alliance" with the competitor just ahead of them. Analyze Oracle’s strategy using the theory of lock-in and Compatibility.

In: Economics

Define the four main types of relational constraints and use the example relational database (Figure 1)...

Define the four main types of relational constraints and use the example relational database (Figure 1) to illustrate each of these constraints.

Figure 1

House(MLS, Addr, NumRooms, NumBedRooms, SellID, OfficeID, Price)

Seller(SellID, Name)

PotentialBuyer(BuyID, Name)

REOffice(OffID, Name, Addr, Phone)

Agent(AgID, OffID, Name)

Showing(AgID, MLS, BuyID, Date)

In: Computer Science

Consider the following history H: T2:R(Y), T1:R(X), T3:R(Y), T2:R(X), T2:W(Y), T2:Commit, T1:W(X), T1:Commit, T3:R(X), T3:Commit Assume...

Consider the following history H:

T2:R(Y), T1:R(X), T3:R(Y), T2:R(X), T2:W(Y), T2:Commit, T1:W(X), T1:Commit, T3:R(X), T3:Commit

Assume that each transaction is consistent.

Does the final database state satisfy all integrity constraints? Explain.

In: Computer Science

Select a Database of your own choice and apply the first three normalization processes. (1NF, 2NF...

Select a Database of your own choice and apply the first three normalization processes. (1NF, 2NF & 3NF)

• The minimum number of records in the table must be 10
• Make sure you carry the same table from 1NF to 2NF and 3NF, do not use separate tables from scratch for all the three forms.
• Brief explanation of the normalization processes must be specified

In: Computer Science

Consider the following for Executive Electronics Total Assets: 2017- 12,650,000 and 2018- 12,100,000 Noninterest-bearing current liabilities:...

Consider the following for Executive Electronics

Total Assets: 2017- 12,650,000 and 2018- 12,100,000
Noninterest-bearing current liabilities: 2017-550,000 and 2018- 572,000
Net income: 2017- 770,000 and 2018- 880,000
Interest Expense: 2017- $2,310,000 and 2018- 330,000
Tax Rate: 2017- 40% and 2018-40%
Required rate of return: 2017- 10% and 2018-12%

Evaluate the company in terms of residual income (RI) which is equivalent to EVA since there are nonadjustments for accounting distortions.

Residual income 2017:
Residual income 2018:

In: Accounting

X and Y are interested in organizing a new interior decorating business. X contributed $140,000 for...

X and Y are interested in organizing a new interior decorating business. X contributed $140,000 for 70% ownership interest and Y contributed $60,000 for 30% ownership interest. The business borrows $80,000 from a bank to pay for startup costs. They both actively manage the interior decorating business. They will not draw a salary, but the plan includes an annual total distribution of $250,000 to X ($175,000) and Y($75,000). X and Y's only source of income and deductions is from their business operations. They are both single.

a. Assuming the business plan projections are accurate in 2017, calculate the federal income tax X and Y would owe in 2017 from the interior decorating business if the business is organized as a general partnership. Please show your work and explain your calculations. Only consider income taxes in computation.

b. Assuming the business plan projections are accurate in 2017, calculate the federal income tax X and Y would owe in 2017 from the interior decorating business if the business is organized as a C corporation (both corporate and individual income taxes) . Please show your work and explain your calculations. Only consider income taxes in computation.

c. Assuming the business plan projections are accurate in 2018, calculate the federal income tax X and Y would owe in 2018 from the interior decorating business if the business is organized as a general partnership. Please show your work and explain your calculations. Only consider income taxes in computation.

d. Assuming the business plan projections are accurate in 2018, calculate the federal income tax X and Y would owe in 2018 from the interior decorating business if the business is organized as a C corporation (both corporate and individual income taxes) . Please show your work and explain your calculations. Only consider income taxes in computation.

e. Should X and Y form their business as a general partnership or C corporation? Consider how tax reform impacts your decision. Briefly explain.

f. List at least 2 non tax considerations X and Y may want to consider when choosing between a general partnership and C coporation.

In: Accounting

HighLight is an online company that sells lighting products toboth the building industry and individual...

HighLight is an online company that sells lighting products to both the building industry and individual consumers. As a result of its very competitive price schemes, HighLight has developed an extensive customer base, which is reflected in its burgeoning database of customer details, purchasing history and Web usage data. Recognising that this data is potentially valuable to third parties, HighLight’s directors discuss the prospect of selling its customer database to a large insurance company, thus allowing the insurance company to target advertising and mailouts about home and contents insurance packages to home owners. The directors are split on the issue — some view this as an exciting way to add value to their customers, through customised product offerings, while others see it as a gross misuse of information that is not in keeping with the original purpose for which the data were gathered. You have been engaged by HighLight as an ethics consultant and asked to advise the organisation on the possibilities that exist to resolve the boardroom debate. Required Work through the 5 steps of the ethical decision-making model presented in the lecture to evaluate what course of action HighLight should take.

In: Operations Management

// Base class for game configuration public abstract class DataSource {     private Graph map;    ...

// Base class for game configuration

public abstract class DataSource {

    private Graph map;

    private HashMap <String,Room> rooms;

    private ArrayList <Entity> entities;

    private Player player;

    protected HashMap < String, List<String[]> > tables;

    // constructor

    public DataSource() {

    }

   

    // Connect to the data source. Override if source is a database

    public void connect() {

    };

   

    // Load the configuration tables required to build the game world

    public abstract void load();

   

    // Build the game world

    public final void build() {

      // code omitted

// Disconnect from the data source. Override if source is a database

    public void disconnect() {

    };

    // Get a the layout of the game world

    public Graph getMap() {

       return map;

    }

   

    // Get room details. The HashMap key is the room label.

    public Map <String,Room> getRooms() {

        return rooms;

    }

   

    // Get player details

    public Player getPlayer() {

        return player;

    }

   

    // Get entity (bats, bird, monsters, wumpus) locations

    public List <Entity> getEntities() {

        return entities;

    }  

}

    }

. Explain how inheritance is intended to be used with this class. Does this represent a good use of inheritance?

In: Computer Science

factory (including the name and the name of the director) needs to establish a management database...

factory (including the name and the name of the director) needs to establish a management database to store the following information: I) A factory has a number of workshops, each workshop has the workshop number, workshop director's name, address and telephone number. II) There are more than one workers in each workshop, and each worker has a staff number, name, age, sex type of work. III) A workshop produces a variety of products, each of which has the product number and price. IV) A workshop produces a variety of parts, and one kind of parts may be manufactured by different workshops. Each part has the part number, weight and price. V) A product is consist of a variety of parts, and one kind of parts can be used to assemble a variety of products. VI) Products and parts are stored in the warehouses. VII) A factory has multiple warehouses, each of which has the warehouse number, name and phone of the warehouse director.

(1) Give the ER diagram for this management database.

(2) Mapping the ER diagram into the conceptual schema, and indicate the primary keys and foreign keys.

In: Computer Science