1. What information does the Income Statement, Balance Sheet and Cash Flow Statement provide to various users? Why is the Income Statement constructed first and the Cash Flow Statement contructed last? What type of accounts are in each statement?
2. What is the difference between an accrual basis and cash basis of accounting? What type of companies might use each basis and why? What is GAAP and who determines GAAP? What is IFERs and what impact might it have in the future towards U.S. GAAP?
3. What is the accounting cycle? What types of accounting records are needed within this accounting cycle? How might an accounting system be expanded beyond the basic accounting records? What types of accounting checks are available to make sure we are constructing the statements accurately?
4. Identify and explain five theoritical concepts, assumptions and/or constraints that might be within an accrual basis of accounting, (i.e. matching concept). Give an example of an account affected by each theory you mention. What are some differences with U.S. GAAP and IFERs in certain financail accounting areas?
5. Identify five different accounts that might be affected by different accounting treatments, (i.e. inventory could be accounted for by the LIFO or FIFO cost flow assumptions).
6. How does the type of company, (service, merchandise or manufacturing) affect the accounting records?
7. How does the ownership of a company, (sole proprietorship, partnership or corporation affect the accounting records?
8. What limitations are present in the financial statements for various users? Be as specific as possible.
In: Accounting
In: Mechanical Engineering
1. What is the function of skeletal muscle?
2. Describe the major components of skeletal muscle cels:
3. How does skeletal muscle produce movement?
4. How do actin and myosin interact in a sarcomere to bring about muscle contraction? What roles do ATP and calcium play?
5. What is the functiion of the sarcoplasmic reticulum in muscle cell contraction?
6. Explain why calcium ions and ACh are vitals for muscle contraction.
7. What is a motor unit? Why does a rapid series of muscle twitches yield a stronger overall contraction than a single twitch?
8. What are the structural and functional differences between slow and fast muscle?
9. The__________and__________systems work together to move the body and specific body parts.
10. The 3 types of muscle tissue are:
11. Muscle fibers shorten when__________slides over__________
a. myosin, actin b. actin, myosin c. myoglobin, actin d. myosin, sarcomeres
12. The__________is the basic unit of muscle contraction.
a. myofibril b. sarcomere c. muscle fiber d. myosin filament
13. Skeletal muscle contraction requires__________
a. calcium ions b. ATP c. arrival of a nerve impulse d. all of the above
14. Nerve impulses first stimulate a skeletal muscle fiber at___________
a. T tubules b. sarcomeres c. neuromuscular junctions d. actin binding sites
15. Mention the muscles located in:
In: Biology
Give more details on the following answer
Question:
Give a detailed explanation about what is happening with the oil prices.
mention coronavirus, OPEC, Saudi Arabia.
give references
Answer:
Oil prices is dropping.Major causes behind the fall is given below:
The price of oil sunk to levels not seen since 2002 as demand for crude collapses amid the coronavirus pandemic.Oil prices have fallen by more than half during the past month as companies cut back or close production.Oil prices failed to keep pace,with growing (coronavirus)lock down measures and that could drive global demand down 20%,potentially pushing the world to run out of storage capacity.
Organization of petroleum exporting countries (OPEC) controls almost 80%of the world's oil reserves.OPEC is the main influencer in fluctuations in oil prices.OPEC and its allies due to covid 19 outbreak,agreed to historic production cuts to stabilize prices,but they dropped to 20 years lows.Supply and demand influences oil prices to change.From global perspective,political instability in middle east causes oil prices to change.
Saudi Arabia is the second largest oil producer in the world.It will suffer financially from cheap oil.It can afford temporary falls in oil prices because they have substantial reserves.If low prices persist,Saudi Arabia may have to cut back on some of the social programms.
References:
BBC News(30 March 2020) Coronavirus:oil price collapses to lowest level for 18 years
In: Economics
Q1. Explain what companies should do to make employees contribute towards the strategic management process in the organization.
Q2. Why do many organizations fail to implement plans successfully?
Q 3&4 : Case: Maestro Pizza
Entering the food industry nowadays became harder than before. The people now pay extra attention to even small details when it comes to food. The variety of food kinds, the way the food being served, the quality of food, the price, and even the place decoration! Furthermore, there are tons of restaurants (competitors) those being in the food industry for decades which makes it even harder to compete with them. Not to mention if a new restaurant will serve one kind of food that already being served by other expert restaurants.
Here we talk about a new restaurant in Saudi Arabia that successfully entered the food industry and managed to compete existed restaurants who are serving the same kind of food for a long time and even considered the best in the world of serving such food! The restaurant's name is Maestro Pizza which is locally founded and operated by Saudi people. This restaurant has successfully dominated the market and stole the throne from underneath of many other pizza restaurants like Pizza Hut and Domino’s Pizza and others.
In the context of the above case analyze and provide solutions to the following questions:
Q3. Bargaining power of consumers.
Q4. Suggest strategies to differentiate Maestro Pizza products and services with its competitors.
In: Operations Management
Case Study
ABC Company observes that the confidentiality of their workers is
compromised while using the eservices provided by the partner
company. Further investigation has highlighted that whenever a user
uses their unified profiles to access the partner’s company
services from the relevant mobile application, their
confidentiality is compromised and data theft patterns are
observed. The situation is alarming and makes them focus on how the
mobile application that gives access to partner’s eservices are
vulnerable. Further investigation is done in this regard and it is
found out that whenever a user sends a request to use any of the
partner company’s eservice, only at that instance the
confidentiality is being compromised. This may mean that the
gateway at either one of the party’s end has already been compromised. Further
investigation highlights that the cause is not the gateway but the
common reusable APIs used in their mobile application. It is also
noted that the same mobile application is working fine for the
internal accessible services but start malfunctioning when partner
company’s eservices are accessed. A team of researchers is hired to
establish a framework of utilizing the known reusable component for
unified service consumption from multiple sources considering the
security dynamics of ABC country.
A : Identify the problem area from the above Case study description
and elaborate how this problem area can be resolved using the
current world technical solutions or tools.
B: Highlight the titles of SIX (6) possible generic
research design phases applied for any research.
-Mention which of these highlighted phases are applicable in this
case.
-Also highlight whether the research methodology be quantitative
or qualitative in this case.
In: Operations Management
For C++
Consider the following code defining classes for assets and office equipment:
#include<string>
#include<iostream>
using namespace std;
// class definition for asset
class Asset{
protected:
int value; // value of asset in cents
public:
Asset(int value); // constructor
int get_value(); // get the value
};
Asset::Asset(int val){ // implementation of constructor
value=val;
}
int Asset::get_value(){ // implementation of get_value
return value;
}
// abstract class for office equipment
class OfficeEquipment:public Asset{
public:
OfficeEquipment(int val); // constructor
virtual void use_item() =0; // not implemented here
};
// constructor
OfficeEquipment::OfficeEquipment(int val):Asset(val){
return; // nothing more to do
}
class Pen:public OfficeEquipment{
public:
Pen(int val); // constructor
virtual void use_item(); // will define
};
Pen::Pen(int val):OfficeEquipment(val){
return; // nothing more to do
}
void Pen::use_item(){
cout << "scribble, scribble" << endl;
}
class Laptop:public OfficeEquipment{
public:
Laptop(int val); // constructor
virtual void use_item(); // will define
};
Laptop::Laptop(int val):OfficeEquipment(val){
return; // nothing more to do
}
void Laptop::use_item(){
cout << "tappity, tap, tap" << endl;
}
int main(){
//collection of assets
int len=4;
Asset* my_things[len];
// complete the code below
// (1)fill the assets up with 2 pens and two laptops (different values for each)
// (2)calculate the total value of all assets in my_things and print it out
// (3) call use_item on each of the items in my_things
}
The code in the main() function is incomplete. Write code as described in each of the comments marked (1), (2) and (3) above. Your code for (2) and (3) should take advantage of polymorphism to keep the code simple and short.
In: Computer Science
Please don't copy from other source
1.. On October 15th, a Congressional campaign orders a quantity of campaign literature from a local printer. The stated time of delivery is November 2 but there is nothing in the contract saying time is of the essence. November 8 is Election Day. The printer does not deliver the literature until November 9. When the bill arrives, the campaign refuses to pay the printer one cent. The printer contacts you and asks you to file a lawsuit to collect the bill. Explain to the printer what the legal issue is in the case? Apply the law and advise the printer of the best course of action (conclusion).
2.. Allen and Bob complete an oral contract for the sale of land from Allen to Bob for $100,000. Bob pays Allen the $100,000 and then begins to build a home on the land. At this point, Allen says that the deal is off and refuses to convey the deed to Bob. In doing so, Allen relies on the statute of frauds as a defense saying that contracts for the sale of land must be in writing and since this contract is not in writing it is unenforceable. First, explain the application of the statute of frauds to land sales. Second, state the legal issue, apply the law and reach a conclusion as to what will happen. Answer completely.
3.. Amy contracts to have her portrait painted by Herbert for $10,000. Herbert is a well known abstract artist and all of Amy’s friends have had their portrait painted by him. Herbert decides to go to Greece for the summer so he assigns the contract without talking to Amy, to Donald. Donald is another artist with a totally different style than Herbert. Amy is very upset when she finds out about the assignment and sues Herbert for breach of contract. What is the legal issue. Present both sides of the argument from a legal perspective. Reach a conclusion. What is a Judge going to do with Amy's lawsuit?
In: Operations Management
Problem/Solution Research Essay
Writing Task: Write about racial discrimination in the workplace and offer potential solutions to alleviate the problem.
WRITE A RESEARCH PROPOSAL
Abstract: Summarize your project/paper in fifty to one hundred words. Explain and define your topic and include the answers to the following questions:
Purpose Statement: This section will consist of two parts.
The first part will be a thesis statement that provides the rationale for the project. The thesis statement should be labeled “Thesis:” Argument and 3 reasons
You will need to analyze your audience. Label this section “Audience Analysis:” List all individuals or groups that you think will be a part of your audience; then, list what you assume each group already knows about your topic and what each group feels or believes about your topic. Next, describe what types of information each group will need to know in order to better judge your argument. Be specific.
Statement of Qualification: Explain your experience and any special qualities or perspectives you bring to the argument. If you do not have direct experience with the topic, describe your interest in choosing this specific area of discussion and what you think your lack of experience can bring to the paper.
Review of Literature: When constructing your thesis, you should have decided on three to four initial points for discussion within your paper. Provide one source for each of these points and summarize them. Include the MLA citation with the accompanying summary (same format as usual).
Use the following format to guide you:
Review of Literature
Point One: Identify Point One here.
EXAMPLE: Smith, Ann. Treatment is Possible. New York: Straten Publishing, 1999.
This article deals with…
In: Operations Management
Implement a Factory Design Pattern for the code below:
MAIN:
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
public class Main {
public static void main(String[] args) {
Character char1 = new Orc("Grumlin");
Character char2 = new Elf("Therae");
int damageDealt = char1.attackEnemy();
System.out.println(char1.name + " has attacked an enemy " +
"and dealt " + damageDealt + " damage");
char1.hasCastSpellSkill = true;
damageDealt = char1.attackEnemy();
System.out.println(char1.name + " has attacked an enemy " +
"and dealt " + damageDealt + " damage");
int damageTaken = char2.takeHit();
System.out.println(char2.name + " has taken a hit and " +
"been dealt " + damageTaken + " damage");
char2.hasDodgeAttackSkill = true;
damageTaken = char2.takeHit();
System.out.println(char2.name + " has taken a hit and " +
"been dealt " + damageTaken + " damage");
}
}
CHARACTER:
import java.util.Random;
public abstract class Character {
protected String name;
protected int strength;
protected int resilience;
protected boolean hasCastSpellSkill;
protected boolean hasDodgeAttackSkill;
public int attackEnemy() {
Random random = new Random();
int damageDealt;
if (hasCastSpellSkill) {
int spellDamage = random.nextInt(5);
damageDealt = this.strength + spellDamage;
} else {
damageDealt = strength;
}
return damageDealt;
}
public int takeHit() {
Random random = new Random();
int damageDealt = random.nextInt(15);
int damageTaken;
if (hasDodgeAttackSkill) {
double chanceToDodge = random.nextDouble();
if (chanceToDodge > 0.50) {
damageTaken = 0;
} else {
damageTaken = damageDealt - resilience;
}
} else {
damageTaken = damageDealt - resilience;
}
if (damageTaken < 0) {
damageTaken = 0;
}
return damageTaken;
}
}
ELF:
public class Elf extends Character {
public Elf(String name) {
this.name = name;
this.strength = 4;
this.resilience = 2;
}
}
ORC:
public class Orc extends Character {
public Orc(String name) {
this.name = name;
this.strength = 10;
this.resilience = 9;
}
}
In: Computer Science