Answer:
A and B
Explanation:
A) income statement
insurance expense-understand net income-overstated
B) balance sheet
prepaid insurance -overstated stockholders equity -overstated
The options are:
A) reverse engineeringB) value chain extensionC) focused strategyD) niche market
Answer:
Value chain extension.
Explanation:
Value chain extension are the steps a company takes to extend the reach of their products to customers, and multiple relationships are built that impacts the bottom line.
In this instance eBay customers write a review after each purchase and the reviews are now used by buyers to evaluate the seller's.
EBay in turn gives special privileges. This is eBay creating an extended value chain in delivering it's products to customers.
The answer would be : Proactive strategy
Proactive strategy is carried out to prevent the occurrence of challenging behavior from the society towards the company. Company with proactive strategy tend to do a lot of Corporate social Responsibilities to win the crowd's favor.
Answer:
1) strong form efficient.
Explanation:
The efficient market hypothesis states that all the relevant information regarding stocks traded in a market is already included in the price of the stocks.
This investment theory argues that if all the relevant information was public, then even if a person had insider information, it would be useless since everyone should have access to the same information. Of course this model is only theoretical, since in real life information is something very valuable and not everyone has access to it.
<h2>Pre-Increment increments the value immediately, Post increment increments the value only after executing the entire line.</h2>
Explanation:
class PrePostIncOperator {
public static void main(String[] args){
int x=5;
System.out.println(x++);
System.out.println("\n"+ ++x);
}
}
Let us understand the program.
int x = 5 => Initializes the value of 5 to the variable x
System.out.println(x++); This is the post increment operator. The value of x gets incremented only after printing the value. That is first System.out.println(x) will be executed and then the increment operator takes place once it finds the ";" that is the end of the statement. The memory which holds the value of x is changed only after executing the statement.
System.out.println("\n"+ ++x);
Here the value gets incremented and immediately assigns to the memory.