A three part series of guest appearance of Samuel L. Blumenfeld on NH Cable TV “Chattin’…

A three part series of guest appearance of Samuel L. Blumenfeld on NH Cable TV “Chattin’ with Jeanine” Show discussing his latest book: “The Marlowe-Shakespeare Connection”. Parts 1,2 are on YouTube and part 3 in on Google by RemnantMan.

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Prepare journal entries to record each of the following items for Union Cable Company for 2012….

Prepare journal entries to record each of the following items for Union Cable Company for 2012. Union Cable Company uses a calendar year reporting period. Ignore income tax effects.a. Discovers on January 15, 2012, that it neglected to amortize a patent during 2011 in the amount of $12,000.b. Discovers on January 20, 2012, that it recorded the sale of a machine on December 30, 2011, for $6,000 with the following journal entry:c. Changes the depreciable life of a building as of December 31, 2012, from a total useful life of 30 years to a total of 42 years. The building has an acquisition cost of $2,400,000 and is 11 years old as of December 31, 2012. The firm has not recorded depreciation for 2012. It uses the straight-line method and zero estimated salvage value.d. The firm has used 2% of sales as its estimate of uncollectible accounts for several years.Its actual losses have averaged only 1.50% of sales. Consequently, the Allowance for Estimated Uncollectibles account has a credit balance of $25,000 at the end of 2012 before making the provision for 2012. An aging of customers’ accounts suggests that the firm needs $35,000 in the allowance account at the end of 2012 to cover estimated uncollectibles. Sales for 2012 are$1,000,000.
View Solution:
Prepare journal entries to record each of the following items

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Post 1: Analyse characteristics of exemplary business communication… 1 answer below »

Post 1: Analyse characteristics of exemplary business communication (300 words)

Instructions:

Investigate the form of business communication chosen by the facilitator and research what makes

it effective. Critically analyse specific characteristics and justify your choices. Consider using

examples to back up your statements.

Key points to consider in your initial post:

• Your post should analyse ideal characteristics of a specific type of businesscommunication.

• Include justifications for your chosen characteristics.

• Consider using one or more specific examples to add value to your post.

• You must include reference to literature.

o Use at least 2 in-text citations per post.

o Reference the book, article, or document using APA 6th style in the referencelist

Attachments:

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Why does cash payment of dividends count as financing activities, but cash received by dividends are

Why does cash payment of dividends count as financing activities, but cash received by dividends are operating activities? Could you explan with details and the logic behind, please? 

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

1. Relate Shakespeare’s admonition “Neither a borrower nor a lender be” to the goldsmiths’…

1. Relate Shakespeare’s admonition “Neither a borrower nor a lender be” to the goldsmiths’ evolutionary use of fractional reserve banking.

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

//DoubleNode class class DoubleNode { String str; DoubleNode prev, next; DoubleNode(String str) { th

//DoubleNode class class DoubleNode

{

String str;

DoubleNode prev, next; DoubleNode(String str)

{

this.str = str;

prev = null;

next = null;

} String getStr()

{

return str;

} DoubleNode getNext()

{

return next;

} void setNext(DoubleNode next)

{

this.next = next;

} DoubleNode getPrev()

{

return prev;

} void setPrev(DoubleNode prev)

{

this.prev = prev;

}

} //LinkList class

class DoublyLinkedList

{

DoubleNode head, tail; DoublyLinkedList()

{

head = null;

tail = null;

} DoubleNode getHead()

{

return head;

} DoubleNode getTail()

{

return tail;

} void addFirst(String s)

{

DoubleNode node = new DoubleNode(s);

if (head == null)

tail = node;

else

head.setPrev(node);

node.setNext(head);

head = node;

} void addLast(String s)

{

DoubleNode node = new DoubleNode(s);

if (head == null)

head = node;

else

tail.setNext(node);

node.setPrev(tail);

tail = node;

} void printList()

{

System.out.print(“The list: “);

DoubleNode node = head;

while (node != null)

{

System.out.print(node.getStr() + ” “);

node = node.getNext();

}

System.out.println();

} void printListReverse()

{

System.out.print(“The list in reverse: “);

DoubleNode node = tail;

while (node != null)

{

System.out.print(node.getStr() + ” “);

node = node.getPrev();

}

System.out.println();

} DoubleNode search(String s)

{

DoubleNode node = head;

while (node != null && !node.getStr().equals(s))

{

node = node.getNext();

}

return node;

} DoubleNode getElement(int index)

{

DoubleNode node = head;

int pos = 0;

while (node != null && pos

{

node = node.getNext();

pos++;

}

return node;

} void insert(DoubleNode node, String newElem) // insert after thatnode

// if node=null –> insert as first element

{

DoubleNode newNode = new DoubleNode(newElem);

if (node == null)

addFirst(newElem);

else

{

DoubleNode nextNode = node.getNext();

newNode.setNext(nextNode);

node.setNext(newNode);

newNode.setPrev(node);

if (nextNode == null) // or node == tail

tail = newNode;

else

nextNode.setPrev(newNode);

  

}

} void remove(DoubleNode node)

{

DoubleNode prev = node.getPrev();

DoubleNode next = node.getNext();

  

if (head == tail) // one element

{

head = null;

tail = null;

}

else if (head == node) // remove first element

{

next.setPrev(null);

head = next;

}

else if (tail == node) // remove last element

{

prev.setNext(null);

tail = prev;

}

else

{

prev.setNext(next);

next.setPrev(prev);

}

} // Creating swapping method

public void swap(DoubleNode x,DoubleNode y)

{

// Declaring temp node and swapping DoubleNode previousNodeX = x.getPrev();

DoubleNode nextNodeX = x.getNext();

DoubleNode previousNodeY = y.getPrev();

DoubleNode nextNodeY = y.getNext();

// handling null pointer exception

if((x.getPrev()== null)&& (y.getNext()==null)&&(x.getNext() != y))

{

  

y.setPrev(previousNodeX);

y.setNext(nextNodeX);

nextNodeX.setPrev(y);

x.setPrev(previousNodeY);

x.setNext(nextNodeY);

previousNodeY.setNext(x);

head = y;

tail = x;  

}

  

else if ((x.getPrev()== null) && (x.getNext() == y))

{

y.setPrev(previousNodeX);

nextNodeY.setPrev(x);

x.setNext(nextNodeY);

x.setPrev(y);

y.setNext(x);

head = y;

}

else if ((y.getNext()== null) && (x.getNext() == y))

{

previousNodeX.setNext(y);

y.setPrev(previousNodeX);

x.setNext(nextNodeY);

x.setPrev(y);

y.setNext(x);

tail = x;

}

else if ((y.getNext()== null) && (x.getNext() != y))

{

  

y.setPrev(previousNodeX);

y.setNext(nextNodeX);

previousNodeX.setNext(y);

nextNodeX.setPrev(y);

x.setPrev(previousNodeY);

x.setNext(nextNodeY);

previousNodeY.setNext(x);

tail = x;

} else if ((x.getPrev()== null) && (x.getNext() != y))

{

  

y.setPrev(previousNodeX);

y.setNext(nextNodeX);

nextNodeX.setPrev(y);

x.setPrev(previousNodeY);

x.setNext(nextNodeY);

nextNodeY.setPrev(x);

previousNodeY.setNext(x);

head = y;

}

  

   else if ((x.getPrev()!= null)&& (y.getNext()!=null)&& (x.getNext() == y) )

{

previousNodeX.setNext(y);

y.setPrev(previousNodeX);

nextNodeY.setPrev(x);

x.setNext(nextNodeY);

x.setPrev(y);

y.setNext(x);

}

else if ((x.getPrev()!= null)&& (y.getNext()!=null)&& (x.getNext() != y))

{

y.setPrev(previousNodeX);

y.setNext(nextNodeX);

nextNodeX.setPrev(y);

previousNodeX.setNext(y);

x.setPrev(previousNodeY);

x.setNext(nextNodeY);

nextNodeY.setPrev(x);

previousNodeY.setNext(x);

} } //Creating the sort method public void sort()

{

//DoubleNode newHead = new DoubleNode(head.getStr());

DoubleNode pointer = head.next;

pointer.setPrev(head.next.getPrev());

pointer.setNext(head.next.getNext());

while(pointer != null)

{

DoubleNode innerPointer = head;

//System.out.println(head.str);

innerPointer.setPrev(head.getPrev());

innerPointer.setNext(head.getNext());

DoubleNode next = pointer.getNext(); if((innerPointer.getStr()).compareTo((pointer.getStr()))>0)

{

this.swap(innerPointer,pointer );

}

else

{

while((innerPointer.getStr()).equalsIgnoreCase(pointer.getStr())==false )

{

System.out.println(“inner pointer “+innerPointer.getStr());

System.out.println(“pointer “+pointer.getStr());

if((innerPointer.getStr()).compareTo((pointer.getStr()))>0)

{

this.swap(innerPointer, pointer);

} innerPointer = innerPointer.next; // System.out.println(innerPointer.getStr());

}

//System.out.println(pointer.getStr());

}

pointer = next;

} } } //Main class calling sort public class Assignment6Q1

{

public static void main(String[] args)

{

DoublyLinkedList list = new DoublyLinkedList(); list.addFirst(“Orange”);

list.addFirst(“Grape”);

list.addFirst(“Banana”);

list.addFirst(“Kiwi”);

list.addFirst(“Apple”);

list.addFirst(“Pear”);

list.printList();

list.swap(list.head, list.head.next);

list.sort();

list.printList();

list.printListReverse();

}

  

} Please help with the Null pointer error,Here I am trying to writean insertion sort method but for some reason my code is giving menullPointerException from :- atassignment.pkg6q1.DoublyLinkedList.swap(DoublyLinkedList.java:219) atassignment.pkg6q1.DoublyLinkedList.sort(DoublyLinkedList.java:257) atassignment.pkg6q1.Assignment6Q1.main(Assignment6Q1.java:18) BUILD FAILED (total time: 0 seconds) . . .

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

International travel has its own price elasticity of between -1.2 and -1.5. The demand for internati

International travel has its own price elasticity of between -1.2 and -1.5. The demand for international travel has increased about 25% over the past year. What could be the possible price change at the same time interval? (Select all that apply)

It has increased by 20.8%

It has increased by 25%

It has declined by 18%

It has declined by 16.7%

It has declined by 20.8%

It has increased by 20%

It has declined by 25%

It has declined by 17.5%

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

In Switzerland in 2011, a legally binding referendum was held that would have banned people from… 1 answer below »

QUESTION A: Switzerland’s Gun Control Referendum [30 points]

In Switzerland in 2011, a legally binding referendum was held that would have banned people from keeping guns at home, as well as introducing stricter background checks for those wishing to purchase them. The referendum failed, with 56% of voters opposing it. For this question, suppose that the referendum is going to be repeated next year, and the pro-gun-control campaign asks for your advice.

Specifically, the campaign group want to run an advertising campaign targeted at groups who are most likely to support the new referendum, to persuade them to turn out and vote. Your job is to tell them which types of people are most supportive of gun control. To help measure the likely effectiveness of their advertising, they also want to know how much each characteristic matters in explaining support. You’ll use a survey of voters taken after the first referendum that asked about support for gun control. You need to:

i) Choose a logit model that predicts support for gun control, carefully justifying your selection of variables for the model. You must use a minimum of three independent variables.

ii) ii) Present the model’s findings in ways that clearly explain how much the variables matter in explaining support for gun control

You should present your approach and your findings in the form of a brief report. It should conclude by explaining which types of people you think the campaign should target. The dataset is called “s” and is contained in the file “swiss.Rda”. It contains the following variables for each individual in the survey:

Document Preview:

Include in your write-up all charts/plots and tables that you produce Answers should be written in complete sentences; no bulleting or outlining. You may assume the methods you have used (e.g. logit regressions, etc) are understood by the reader and do not need definitions, but you do need to say which techniques you have used and why. Both questions require you to write a brief report. It is up to you how you structure the reports, but it is advisable to keep introductory material to a minimum, given the word limit. Your reports should discuss your methods, your results and the conclusions that you draw from them. Roughly 900 words for question A QUESTION A: Switzerland’s Gun Control Referendum [30 points] In Switzerland in 2011, a legally binding referendum was held that would have banned people from keeping guns at home, as well as introducing stricter background checks for those wishing to purchase them. The referendum failed, with 56% of voters opposing it. For this question, suppose that the referendum is going to be repeated next year, and the pro-gun-control campaign asks for your advice. Specifically, the campaign group want to run an advertising campaign targeted at groups who are most likely to support the new referendum, to persuade them to turn out and vote. Your job is to tell them which types of people are most supportive of gun control. To help measure the likely effectiveness of their advertising, they also want to know how much each characteristic matters in explaining support. You’ll use a survey of voters taken after the first referendum that asked about support for gun control. You need to: Choose a logit model that predicts support for gun control, carefully justifying your selection of variables for the model. You must use a minimum of three independent variables. ii) Present the model’s findings in ways that clearly explain how much the variables matter in explaining support for gun control You should present your approach and…

Attachments:

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

A man weighs a fish with a spring scale attached to the ceiling of an elevator. While the…

A man weighs a fish with a spring scale attached to the ceiling of an elevator. While the elevator is at rest, he measures a weight of 49.0 N. What weight does the scale read if the elevator accelerates upward at 2.00m/s^2?what weight does the scale read if the elevator accelerates downward at 2.00 m/s^2?

 

"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"