SQL
This assignment aligns with the following objectives:
Deli has hired you as a consultant to design a database for the deli. They have provided you with the following information:
The deli has these four departments:
You are provided the following additional information, which should be inserted into the database using SQL queries (not using any GUI interfaces, such as PhpMyAdmin):
Helpful Hints:
Please do not assume that the database should be structured in the way this data is provided. Your database should be structured such that constraints such as “Each dept. has exactly one employee as a manager” can be enforced.
There should not be a separate table for Deli – the entire database represents the deli. There should be a table for each major entity mentioned in the specifications. Relations between entities (such as, who works in which department) should be their own tables. Primary keys for each table should be chosen to enforce constraints.
In: Computer Science
|
CONSOLIDATED BALANCE SHEET (millions of dollars) |
2016 |
2015 |
|
Assets |
2016 |
2015 |
|
Current assets |
2016 |
2015 |
|
Cash and cash equivalents |
3,657 |
3,705 |
|
Notes and accounts receivable |
21,394 |
19,875 |
|
Inventories: Crude oil, products and merchandise |
10,877 |
12,037 |
|
Materials and supplies |
4,203 |
4,208 |
|
Other current assets |
1,285 |
2,798 |
|
Total current assets |
41,416 |
42,623 |
Crude oil, products and merchandise inventories are carried at the lower of current market value or cost (generally determined under the last-in, first-out method – LIFO). Inventory costs include expenditures and other charges (including depreciation) directly and indirectly incurred in bringing the inventory to its existing condition and location.
In 2016, 2015 and 2014, net income included losses of $295 million and $186 million, and a gain of $187 million, respectively, attributable to the combined effects of LIFO inventory accumulations and drawdowns. The aggregate replacement cost of inventories was estimated to exceed their LIFO carrying values by $8.1 billion and $4.5 billion at December 31, 2016, and 2015, respectively.
Crude oil, products and merchandise as of year-end 2016 and 2015 consist of the following:
|
Crude oil, products and merchandise as of year-end 2016 and 2015 consist of the following (billions of dollars): |
2016 |
2015 |
|
Crude oil |
3.9 |
4.2 |
|
Petroleum products |
3.7 |
4.1 |
|
Chemical products |
2.8 |
2.7 |
|
Gas |
0.5 |
1.0 |
|
Total |
10.9 |
12.0 |
|
(millions of dollars) |
2016 |
2015 |
2014 |
|
Total revenues |
226,094 |
268,882 |
411,939 |
|
Cost of Goods Sold |
136,098 |
165,590 |
266,831 |
|
Net income |
7,840 |
16,150 |
32,520 |
5.3 If ExxonMobil had used FIFO in 2016, what would be the value of the inventory?
|
$10,877 |
||
|
$18,977 |
||
|
$8,100 |
||
|
$2,777 |
In: Accounting
U(x, y) = ½ [φ(x+iy) + φ(x-iy)] and V(x, y) = i/2 [φ(x+iy) –φ(x-iy)]
A) For φ(z) = z2 find U and V and their induced vector fields E =▼U and
F =▼V also show that ▼2U = ▼2V = 0
B) Repeat for f(z) = z3
C) For f(z) = ln z we get U(x, y) = ½ ln (x2+y2) and V(x, y) = arctan (y/x) Find ▼U (electrostatic field) and ▼V (magnetic field) . Also, show that ▼2U = ▼2V = 0 for x2+y2 ǂ 0.
In: Physics
a 2d collision
Perform a linear fit, of the form x = A*t + B, to each graph and determine the initial velocity v1 and the final velocities v′1x, v′1y, v′2x, and v′2y. How do I find the v′1y
if: time (sec)= 0.400, 0.460, 0.500, 0.530, 0.560, 0.600, 0.630, 0.670, 0.700, 0.730, 0.700,0.800, 0.830, 0.867, 0.900
position (m) in y dxn= 85, 100, 120, 140, 160, 180, 190, 210, 230, 240, 260, 270, 290, 300, 320
position (m) in x dxn= 800, 850, 920, 980, 1000, 1080, 1140, 1190, 1230, 1280, 1300, 1400, 1440, 1490, 1500
In: Physics
a) Calculate the cell potential at 25°C for the cell
Fe(s) I (Fe2+ (0.100 M) II Pd2+ (1.0 × 10-5 M) I Pd(s)
given that the standard reduction potential for Fe2+/Fe is -0.45 V and for Pd2+/Pd is +0.95 V. - Please show the steps
|
b) Based on the half-reactions and their respective standard reduction potentials below, the strongest reducing agent is ________, and the strongest oxidizing agent is ________. Ag+ (aq) + e- → Ag(s) 0.80 V 2 H+ (aq) + 2 e- → H2 (g) 0.00 V Cd2+ (aq) + 2 e- → Cd(s) -0.40 V The answer is Cd, Ag+ Can you please explain to me why this is the right answer. |
In: Chemistry
The Banana Republic’s stock of capital at the end of 2015 was $200 billions. The Republic’s investment during the year 2016 was $ 40 billions. The depreciation rate in the Republic was 10%.
1. Depreciation of the capital during the year 2016 was _______
2. The net investment during the 2016 in the Republic was _______
3. The stock of capital at the end of 2016 was _________
In: Economics
public class ProductThread {
static class ProductThreads extends Thread{
private int begin, end;
int[] v1, v2;
long ris;
public ProductThreads(String name, int [] v1, int [] v2, int begin, int end) {
setName(name);
this.v1 = v1;
this.v2 = v2;
this.begin = begin;
this.end = end;
this.ris = 0;
}
public void run() {
System.out.println("Thread " + Thread.currentThread().getName() + "[" + begin + "," + end + "] started");
ris = 1;
for(int i = begin; i <= end; i++)
ris *= v1[i] * v2[i];
System.out.println("Thread " + Thread.currentThread().getName() + "[" + begin + "," + end + "] completed");
}//run
public long getResult() {
return ris;
}
}//ProductThread
public static void main(String[] args) throws InterruptedException {
int [] a = {1,2,3,4,5,6,7,8,9,10};
int [] b = {1,2,3,4,5,6,7,8,9,19};
System.out.print("A = " );
print(a);
System.out.print("B = " );
print(b);
System.out.println();
//create threads
ProductThreads t0 = new ProductThreads("T0", a, b, 0, 2);
ProductThreads t1 = new ProductThreads("T1", a, b, 3, 5);
ProductThreads t2 = new ProductThreads("T1", a, b, 6, 9);
//start threads
t0.start();
t1.start();
t2.start();
//wait for completion of threads
t0.join();
t1.join();
t2.join();
//computation of final result
long result = 1;
System.out.println("T0 result= " + t0.getResult());
System.out.println("T1 result= " + t1.getResult());
System.out.println("T2 result= " + t2.getResult());
result *= t0.getResult() * t1.getResult() * t2.getResult();
System.out.println();
//final statement to be printed
System.out.println("Final Results = " + t0.getResult() + " * " + t1.getResult() + " * " + t2.getResult() + "= " + result);
}
static void print(int[] v) {
System.out.print("[");
for (int i = 0; i < v.length; i++) {
System.out.print(v[i] + " ");
System.out.println("]");
}
}
}
Using the same type of multithreading, I need to create a simple program that generates the factorial of a number, but splits up the calculation in multiple threads.
For instance, 5! = 5 * 4 * 3 * 2 * 1 so the threads would split the calculation up. Ex: T1 = 5 * 4 * 3 + T2 = 2 * 1
In: Computer Science
Lab 5: Practice Dilution Problems
You have a stock solution that contains 24 mg/ml of protein. You want to make a set of standards with the following concentrations:
8 mg/ml
4 mg/ml
2 mg/ml
You need a minimum of 300 ul of each standard.
Using the technique of serial dilution, explain how you would make your standards by filling in the chart below.
|
Standard 1 |
Standard 2 |
Standard 3 |
|
|
concentration |
8 mg/ml |
4 mg/ml |
2 mg/ml |
|
dilution factor/ from |
|||
|
ml of concentrate |
|||
|
ml of diluent |
|||
|
final dilution of stock |
|||
|
final volume/tube |
You have a stock solution that contains 200 mg/ml of protein. You want to make a set of standards with the following concentrations :
100 mg/ml 12.50 mg/ml
50 mg/ml 6.25 mg/ml
25 mg/ml 3.125 mg/ml
You need a minimum of 300 ul of each standard.
Using the technique of serial dilution, explain how you would make your standards by filling in the chart below.
|
Std 1 |
Std 2 |
Std 3 |
Std 4 |
Std 5 |
Std 6 |
|
|
concentration |
||||||
|
dilution factor / from |
||||||
|
ml of concentrate |
||||||
|
ml of diluent |
||||||
|
final dilution of stock |
||||||
|
final volume/tube |
Dilute the following making sure you end up with a minimum volume of at least 10 ml.
|
stock conc |
desired conc |
dilution factor |
volume stock |
volume diluent |
|
25 mg/ml |
5 mg/ml |
|||
|
30 mg/ml |
2 mg/ml |
|||
|
50 mg/ml |
0.5 mg/ml |
|||
|
100 mg/ml |
25 mg/ml |
|||
|
5 mg/ml |
0.1 mg/ml |
|||
|
3 mg/ml |
1.5 mg/ml |
|||
|
20% (v/v) |
0.5% (v/v) |
|||
|
10x |
1x |
|||
|
5x |
1x |
|||
|
25% (w/v) |
5% (w/v) |
|||
|
106 cells/ml |
104 cells/ml |
|||
|
200 ppm |
1 ppm |
|||
|
30% (w/v) |
20% (w/v) |
|||
|
100% (v/v) |
75% (v/v) |
In: Biology
Comprehensive
Instructions
Chart of Accounts
General Journal
Labels and Amount Descriptions
Income Statement
Retained Earnings
Balance Sheet
Instructions
At the beginning of 2016, Norris Company had a deferred tax liability of $6,300, because of the use of MACRS depreciation for income tax purposes and units-of-production depreciation for financial reporting. The income tax rate is 30% for 2015 and 2016, but in 2015 Congress enacted a 38% tax rate for 2017 and future years.
Norris’s accounting records show the following pretax items of financial income for 2016: income from continuing operations, $122,300 (revenues of $353,300 and expenses of $231,000); gain on disposal of Division F, $23,000; loss from operations of discontinued Division F, $10,200; and prior period adjustment, $15,200, due to an error that understated revenue in 2015. All of these items are taxable; however, financial depreciation for 2016 on assets related to continuing operations exceeds tax depreciation by $4,000. Norris had a retained earnings balance of $160,900 on January 1, 2016, and declared and paid cash dividends of $33,600 during 2016.
Required:
| 1. | Prepare Norris’s income tax journal entry at the end of 2016. |
| 2. | Prepare Norris’s 2016 income statement. |
| 3. | Prepare Norris’s 2016 statement of retained earnings. |
| 4. | Show the related income tax disclosures on Norris’s December 31, 2016, balance sheet. |
General Journal
Prepare Norris’s income tax journal entry on December 31, 2016.
PAGE 1
GENERAL JOURNAL
| DATE | ACCOUNT TITLE | POST. REF. | DEBIT | CREDIT | |
|---|---|---|---|---|---|
|
1 |
|||||
|
2 |
|||||
|
3 |
|||||
|
4 |
|||||
|
5 |
|||||
|
6 |
Labels and Amount Descriptions
| Labels | |
| Current Assets | |
| Current Liabilities | |
| Noncurrent Liabilities | |
| Noncurrent Assets | |
| Results from discontinued operations | |
| Amount Descriptions | |
| Adjusted retained earnings, January 1, 2016 | |
| Cash dividends | |
| Deferred income taxes | |
| Expenses | |
| Income from continuing operations | |
| Net income | |
| Prior period adjustment | |
| Pretax income from continuing operations | |
| Retained earnings, December 31, 2016 | |
| Revenues | |
| Retained earnings, January 1, 2016 |
Income Statement
Prepare Norris’s 2016 income statement. Additional Instructions
|
NORRIS COMPANY |
|
Income Statement |
|
For Year Ended December 31, 2016 |
|
1 |
|||
|
2 |
|||
|
3 |
|||
|
4 |
|||
|
5 |
|||
|
6 |
|||
|
7 |
|||
|
8 |
|||
|
9 |
|||
|
10 |
Retained Earnings
Prepare Norris’s 2016 statement of retained earnings. Additional Instructions
|
NORRIS COMPANY |
|
Statement of Retained Earnings |
|
For Year Ended December 31, 2016 |
|
1 |
||
|
2 |
||
|
3 |
||
|
4 |
||
|
5 |
||
|
6 |
||
|
7 |
Balance Sheet
Show the related income tax disclosures on Norris’s December 31, 2016, balance sheet. Additional Instructions
|
NORRIS COMPANY |
|
Partial Balance Sheet |
|
December 31, 2016 |
|
1 |
||
|
2 |
||
|
3 |
||
|
4 |
In: Accounting
Jefferson Ltd is a small retail business that operates in the United Kingdom. The company was formed in December 2015 and commenced its new year on 1 January 2016 with
£25,000 in share capital. Jefferson Ltd also has £6,000 in the bank and £15,000 of finished goods stock for resale. This information had already been recorded in the accounting records of Jefferson Ltd.
The company has agreed a bank overdraft facility of up to £15,000.
The following transactions had been budgeted for the first 6 months of 2016.
Sales of goods to debtors in the 6 months to June 2016 were expected to be £160,000 in total, and transacted as follows:
|
Jan |
Feb |
Mar |
Apr |
May |
Jun |
||
|
£ |
£ |
£ |
£ |
£ |
£ |
||
|
Sales |
20,000 |
18,000 |
20,000 |
25,000 |
32,000 |
45,000 |
Gross profit margins are always 35% of sales and it was Jefferson Ltd’s policy to have sufficient finished goods stock at the end of each month to service the following month’s cost of sales. The sales forecast for July 2016 was £55,000.
Purchases of goods for resale in the six months to June 2016, based on the above information, were £114,750 and were budgeted to be as follows:
|
Jan |
Feb |
Mar |
Apr |
May |
Jun |
||
|
£ |
£ |
£ |
£ |
£ |
£ |
||
|
Purchases |
9,700 |
13,000 |
16,250 |
20,800 |
29,250 |
25,750 |
Other transactions:
Required:
The cash flow forecast must indicate the cash in hand or overdrawn at the end of each month.
In: Accounting