answer part b only
(dont post the screenshot of the answere kindly post it in text form)
|
HASF PVT.LTD |
|||
|
BUDGETED INCOME STATEMENT |
|||
|
FOR 1st QUARTER 1999 |
|||
|
Description |
JANUARY |
FEBRUARY |
MARCH |
|
Sales |
285,000 |
323,000 |
221,000 |
|
Purchases |
129,000 |
168,000 |
95,000 |
|
Wages |
35,000 |
37,000 |
30,000 |
|
Supplies |
26,000 |
23,000 |
21,500 |
|
Utilities |
6,500 |
8,700 |
7,200 |
|
Rent |
15,000 |
12,800 |
13,600 |
|
Insurance |
12,000 |
12,000 |
12,000 |
|
Advertising |
24,500 |
28,500 |
18,000 |
|
Depreciation |
20,000 |
20,000 |
20,000 |
|
Net Profit |
17,000 |
13,000 |
3,700 |
Required:
View Receivable Trend:
View Payable Trend:
Additional Information:
In: Accounting
There are 3 SPSS outputs in this homework assignment. The questions for each output are listed below. Please type your answers into this word document and submit it as an attachment in the assignment tab.
Q1. Researchers were interested in determining whether background music helped or hindered students’ performance on a math test. Students were randomly assigned to 1 of 3 groups: 1) no music; 2) music only; and 3) music with lyrics. Students were then given a math exam, scores which could range from 0 to 100.
|
N |
Mean |
Std. Deviation |
Std. Error |
95% Confidence Interval for Mean |
||
|
Lower Bound |
Upper Bound |
|||||
|
No music |
250 |
77.59 |
13.055 |
.826 |
75.96 |
79.21 |
|
Music only |
250 |
78.10 |
13.357 |
.845 |
76.44 |
79.77 |
|
Music and lyrics |
250 |
78.97 |
13.263 |
.839 |
77.32 |
80.62 |
|
Total |
750 |
78.22 |
13.221 |
.483 |
77.27 |
79.17 |
|
ANOVA |
|||||
|
minutes |
|||||
|
Sum of Squares |
df |
Mean Square |
F |
Sig. |
|
|
Between Groups |
244.595 |
2 |
122.297 |
.699 |
.497 |
|
Within Groups |
130668.664 |
747 |
174.925 |
||
|
Total |
130913.259 |
749 |
|||
In: Math
For this assignment, you will apply what you learned in analyzing a simple Java™ program by writing your own Java™ program. The Java™ program you write should do the following:
Complete this assignment by doing the following:
Here is the code and please add comments
import java.util.Scanner;
public class PRG420Week1_CodingAssignment {
public static void main(String[] args) {
// Create a usable instance of an input device
LINE 1. INSTANTIATE AN INSTANCE OF SCANNER AND ASSIGN IT TO A
VARIABLE OF TYPE SCANNER.
// Prompt user for input
LINE 2. USE THE PRINT() METHOD TO PROMPT THE USER FOR HIS OR HER
FIRST NAME.
// Capture first word and assign it to A VARIABLE
LINE 3. USE THE NEXT() METHOD OF YOUR SCANNER INSTANCE TO ASSIGN A
VALUE TO A STRING VARIABLE.
// Construct the greeting
LINE 4. USE THE PRINTLN() METHOD TO CONSTRUCT A CORRECTLY
PUNCTUATED GREETING.
}
}
In: Computer Science
In: Psychology
Scholarly Writing Practice Details Format and Length: one page, multiplied dispersed in MLA group The reason for this task is to rehearse your composing dependent on the aptitudes you will have learned through the two composing workshops. This is an intelligent bit of composing, not a contention, so permit yourself to simply compose what you think without stressing over taking a position or developing a contention. In view of the information you've learned through the workshops and the joined assets, pick a subject (any point) and compose a reflection on it. Adhere to the essential guidelines sketched out in Writing Workshop 1 around conceptualizing, blueprints, and drafts (remembering this isn't a factious paper). It would be ideal if you guarantee you present your record as a MS Word document and not a Pages or PDF file. Some subject recommendations: Note: you don't need to utilize any of these. they're simply to make you consider what you'd prefer to expound on.
• the effect social disengagement has had on individuals in the course of recent months • social developments • Satellite TV versus gushing administrations • The best film of the late spring (up until this point) • The best TV arrangement of the mid year (up until now) • Your preferred book and why • Your preferred get-away spot and why You get the thought . . . the choices are as immense as you can envision, so simply pick something you need to expound on and put forth a valiant effort! Be that as it may, recall. It shouldn't be great, nor will it be. Simply apply your insight, utilize the Writing Resource Center, and afterward submit it.
In: Psychology
GUIDELINES FOR DOING ASSIGNMENTS
We expect you to answer each question as per instructions in the assignment. You will find it useful to keep the following points in mind: the assignment with be evaluated in terms of your planning, organization and the way you present your assignment. All the three section will carry equal weight
Kindly read the instruction carefully and prepare your assignment and submit to your teacher.
1) Planning: Read the assignments carefully, go through the units on which they are based. (Please read chapters 10 and 12). Make some points regarding each question and then rearrange them in a logical order.
2) Organisation: Be a little selective and analytical before drawing up a rough outline of your answer. Give adequate attention to question’s introduction and conclusion.
Make sure that:
a) The answer is logical and coherent
b) It has clear connections between sentences and paragraphs
c) The presentation is correct in your own expression and style.
3) Presentation: Once you are satisfied with your answer, you can write down the final version for submission. If you so desire, you may underlining the points you wish to emphasize. Make sure that the answer is within the stipulated word limit.
Wishing you all the best.
Assignment Question
Select any one of the public organisations you are familiar with and discuss how leadership plays a role in bringing smooth change in the organization and analyse the effectiveness of new technological applications adopted by it in dissemination of information to citizens and also the effectiveness of public service delivery.
PLEASE PROVIDE NEW ANSWER AND PLEASE NO HAND WRITING!!!!!!!
In: Operations Management
Assume that you have recently been hired as the special assistant to the chief executive officer (CEO) of your health care organization, Thunder Hospital. Your duty is to head up the new quality improvement department. Over the last year, the hospital has experienced substantial growth but is also facing a number of patient safety concerns, including a steady increase in medical errors and a 25% rise in hospital-acquired infections. Based upon what you have learned in this course, prepare a quality improvement plan to present to the CEO with strategies for addressing these issues.
In a 1,000-1,250-word proposal, include the following:
In: Biology
Database Design CIW
State_Capitals Physical Database
Create primary and secondary keys for the attached unfinished physical database design.
| CREATE DATABASE STATE_CAPITALS; | ||
| GO | ||
| USE STATE_CAPITALS; | ||
| GO | ||
| CREATE TABLE Country( | ||
| Country_Code varchar(10) NOT NULL, | ||
| Country_Name varchar(50) NOT NULL, | ||
| Population int NOT NULL, | ||
| Country_Size float NOT NULL | ||
| ) | ||
| GO | ||
| CREATE TABLE Region( | ||
| Country_Code varchar(10) NOT NULL, | ||
| Region_Code varchar(10) NOT NULL, | ||
| Region_Name varchar(50) NOT NULL | ||
| ) | ||
| GO | ||
| CREATE TABLE State( | ||
| Region_Code varchar(10) NOT NULL, | ||
| State_Code char(2) NOT NULL, | ||
| State_Name varchar(50) NOT NULL, | ||
| Date_of_Statehood int NOT NULL, | ||
| State_Size float NOT NULL, | ||
| State_Population int NOT NULL | ||
| ) | ||
| GO | ||
| CREATE TABLE Capital( | ||
| State_Code char(2) NOT NULL, | ||
| Capital_Code tinyint NOT NULL, | ||
| Capital_Name varchar(50) NOT NULL, | ||
| Capital_Since smallint NOT NULL, | ||
| Land_Area float NOT NULL, | ||
| Most_Populous_City bit NOT NULL, | ||
| Municipal_Population int NOT NULL, | ||
| Metropolitan_Population int NULL, | ||
| Note varchar(300) NULL | ||
| ) | ||
| GO | ||
Ensure your submission addresses each of these components:
Submit your project in a word document format
In: Computer Science
Assignment task
Use your favorite search engine to find details about (1) virus/piece of malware. Upload an MS Word or .PDF document that summarizes each of the following
Item 1: Introduction - What is meant by malware/viruses? What is their history? Are malware and/or viruses recent developments in computer technology or have they been around for a while? What piece of malware/virus are choosing to write about and why?
Item 2: Virus/Malware details:
What specifically does the virus/malware do? How does it infect targets? What does it do once it infects a host? Does it change registry settings, does it leave behind malicious code, etc...? Is it destructive? If so how?
Item 3 - Malware/Virus removal - How effective is software in removing it? What has to be done to remove it? What can be done to prevent being impacted by it?
Example of what I am looking for: Leading anti-virus/malware products such as <Name some products> are effective in removing the malicious .DLL, They do this by first configuring Internet Explorer to not run the .DLL and then deleting the malicious .DLL itself.
In: Computer Science
Has to be extremely basic, cannot use stuff like move. Very basic.
Here is what I already have and I am stuck.
.data myarray: .word 0,0,0,0,0,0,0,0,0,0 invalid: .asciiz "Number is invalid, store a number in the array that is from 0-10.\n" large: .asciiz "The largest element is " colon: .asciiz " :\t" enter: .asciiz "Store a value in the array " .text main: li $v0, 4 la $a0, enter #asking the user to input how many numbers they would like to enter syscall li $v0, 5 syscall #user input add $s1, $v0, $0 #declaring v0 to s1 blt $s1, $0, error #if # isn't + bgt $s1, 10, error #if # is greater than 10 beq $s1, $0, error #if # is 0 add $s0, $s1, $s2 addi $s0, $s1, -50 la $s6, myarray sw $t0, 32($s6) swap: add $t0, $a1, $0 loop: beq $t0, $t1, done addi $s0, $s0, 4 add $s2, $s2, $t5 j loop done: li $v0, 4 la $a0, large syscall #need to print biggest array here# li $v0, 10 syscall error: li $v0, 4 la $a0, invalid syscall j main
In: Computer Science