Answer:
The amount of amortized organizational expenses for the year 2013 would be $6,333 ( approximately )
Explanation:
First of all the important point here to note is that while calculating the amortized organizational cost we only include the legal fee for drafting the corporate charter and not the commission paid to underwriter or cost incurred while selling the stock.
In the legal fee for corporate charter too there are limitations , as only $50,000 are allowed as total expenditure to be amortized over a period of 15 years or 180 months. Where for the first year the limitation allowed is $5000 and rest of the amount would be amortized over 180 months.
So $45,000 - $5000 = $40,000
$40000 / 180 = $222.22
Now multiplying this by 6 months as the operations of company began on 1 July , 2013,
$222.22 x 6 = $1333.32
Now adding this amount to $5000 will give us the total amortized organizational expense,
$5000 + $1333.32 = $6,333.32
= $6,333 ( approximately )
Explanation:
A focus group can be defined as a qualitative marketing research method where some people with common characteristics are brought together in a group who are guided by a trainer to promote discussions on a particular topic of interest and gather information to assist in decision making.
To organize focus groups for an innovative German-style fast food restaurant, you could separate 3 groups, the first being ages 18 to 30, the second 30-45 and the third group 45 and above.
The screening criteria could be, sources of income, profession, sex, taste for food, hobbies, etc.
The questions to ask could be related to the number of times a week people eat fast food, what is your favorite German food, how much are you willing to pay for the options offered in the restaurant, what elements do you consider most attractive in a restaurant ,etc.
Answer:
// Program is implemented using Coral Programming Language
int X
int Y
int Sum
Put "Enter any two numbers" to output
x = Get next input
Y = Get next input
if Y < X
Put "Second integer can't be less than the first" to output
else
for Sum = X; Sum <= Y; Sum = Sum + 10
Put Sum to output
Explanation:
The above program is written using Coral Programming Language
The first line is a comment
The next 3 lines declares 3 integer variables
Which are X, Y and Sum
X and Y represent the two input numbers as seen on line 6 and 7
X, being the first and Y being the second
Line 8 tests the larger of the two numbers
If Y is less than X, the output is "Second integer can't be less than the first" without the quotes
Else
The last two lines perform iterative operations that assigns the addition of 10 and X to Sum
It continues printing sum as long as sum is less than the value of Y.