In 2017, NB Inc.'s federal taxable income was $242,000. Compute
the required installment payments of 2018 tax in each of the
following cases:
NB’s 2018 taxable income is $593,000.
NB’s 2018 taxable income is $950,000.
NB’s 2018 taxable income is $1,400,000.
What are the total installment payments for each?
In: Accounting
Explain how the practice of medicine is becoming increasingly complex. What does it mean for the amount of information people working in clinical settings are expected to know? How can technology be used to educate and update employees on the changing requirements for healthcare professionals?
Back up your writing with terms and concepts from class readings. Remember, these same terms and concepts can be used in your Critical Thinking assignments and in the Portfolio Project, so use the discussion area as a place to practice applying terms and concepts to the situations being addressed.
In: Nursing
You work in a chartered accounting firm and your partner, Sally Smith, has asked you to do some research and write a report to update her about the potential liability that auditors face as a result of the global financial crisis. The issue arose when a neighbour mentioned to Sally at the weekend that a global accounting firm has had a class action lodged against it over the collapse of Lehman Brothers. In your report talk about ASA701 Key Audit Matters and how this has changed the way auditors report
In: Accounting
Sunland Corporation owns machinery that cost $24,000 when
purchased on July 1, 2017. Depreciation has been recorded at a rate
of $2,880 per year, resulting in a balance in accumulated
depreciation of $10,080 at December 31, 2020. The machinery is sold
on September 1, 2021, for $12,600.
Prepare journal entries to (a) update depreciation for 2021 and (b)
record the sale. (Credit account titles are
automatically indented when amount is entered. Do not indent
manually. If no entry is required, select "No Entry" for the
account titles and enter 0 for the amounts.)
In: Accounting
The list and dictionary object types are two of the most important and often used types in a Python program. Compare the functionalities of those two objects. What are some ways to insert, update, and remove elements from lists and dictionaries? Why would you choose one data type over another? Provide code examples demonstrating the usages of both data types. Actively participate in this discussion by providing constructive feedback on the criteria, rationales, and examples posted by your peers. Provide at least one reference to support your findings.
In: Computer Science
This is a python program. Put comments explaining the code, please.
Suppose you have been tasked with writing a Python program (using linked lists) to keep track of computer equipment. For each piece of equipment, we track its name, purchase date, purchase amount, and quantity on hand. Write a program that completes the following tasks:
allow the user to add a piece of equipment to the front of the list;
allow the user to update the quantity of a piece of equipment;
calculate and display (to the screen) the total value (in dollars) of ALL inventory
In: Computer Science
Q1# Consider the following string:
String hello = "Hi girls! hope your assignment1 is very
easy.";
a. What is the value displayed by the expression
hello.length()?
b. What is the value returned by the method call
hello.charAt(12)?
c. Write an expression that refers to the letter p in the string
referred to by hello
Q2# Modify the program to use a "while-do" loop instead of "for"
loop.
int sum = 0;
int number = lowerbound; // declare and init loop index
variable
while (number <= upperbound) { // test
sum += number;
++number; // update
}
In: Computer Science
Create two data documents containing a patientRecord
– one in XML and another in JSON
format
Your patientRecord must contain the following data:
-A patient’s name & ID number
-The date of his/her last appointment & the date of the last update
-The patient’s allergies – you must include 2 – one for a food allergy and one for a drug
allergy
-The patient’s preference – you must include 2 – one for a doctor and one for his/her
method of contact (which would have a value of text, phone, or email)
In: Computer Science
.text
.globl main
main:
lui $8, _______ # the address of pairs (SPIM:0x1000;
Mars:0x1001)
lw $9, 0(_____) # get the number of pairs (6) and
store in $9
ori $10, $0, 0 # use $10 to store the height sum
ori $11, $0, 0 # use $11 to store the weight sum
ori $12, $0, 0 # use $12 to count
ori $13, $0, 0 # use $13 to store temp values;
addiu $8, $8, ___ # increase the address to get the first
pair;
loop: ___________________ # jump to compute the average if
count==number of pairs
____ $13, ____ # get height and store in $13
add ___________ # update the height sum using
$10
addiu $8, $8, ___ # increase the address
____ $13, ____ # get weight and store in $13
add ___________ # update the weight sum using
$11
addiu $8, $8, ___ # increase the address
add ___________ # increase count
j loop
ave: div ________ # compute the average of
height
___ $10 # store the height average in $10
div ________ # compute the average of weight
___ $11 # store the weight average in $11
.data
pairs: .word 6 # number of pairs
.word 30, 60 # first pair: height, weight
.word 65, 51
.word 27, 67
.word 68, 270
.word 62, 115
.word 42, 43
## End of file
In: Computer Science
Java Language Only
Use Java FX
In this project we will build a BMI calculator. BMI is calculated using the following formulas:
| Measurement Units | Formula and Calculation |
|---|---|
| Kilograms and meters (or centimetres) |
Formula: weight (kg) / [height (m)]2 The formula for BMI is weight in kilograms divided by height in meters squared. If height has been measured in centimetres, divide by 100 to convert this to meters. |
| Pounds and inches |
Formula: 703 x weight (lbs) / [height (in)]2 When using English measurements, pounds should be divided by inches squared. This should then be multiplied by 703 to convert from lbs/inches2 to kg/m2. |
Please update the BMIController.java file. Only modify the changeUnits and calculateResult methods.
BMI Controller code below:
package bmi;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.RadioButton;
import javafx.scene.control.TextField;
public class BMIController {
@FXML
private Button calculate;
@FXML
private Label heightLBL;
@FXML
private Label result;
@FXML
private Label weightLBL;
@FXML
private RadioButton us;
@FXML
private RadioButton metric;
@FXML
private TextField weightTF;
@FXML
private TextField heightTF;
@FXML
public void changeUnits(ActionEvent event)
{
//This method should
update the labels to display correct unites
}
@FXML
public void calculateResult(ActionEvent event)
{
// This method should
calculate the BMI
}
}
In: Computer Science