Please make a sales forecast for an all in one washer and dryer that costs $1020 I have no idea how to do this. Im supposed to create my own numbers because I "made" the product. You can make the numbers up just label it please. It says to put it in a table
In: Finance
The Attaran Corporation manufactures two electrical products:
portable air conditioners and portable heaters. The assembly
process for each is similar in that both require a certain amount
of wiring and drilling. Each air conditioner takes 3 hours of
wiring and 2 hours of drilling. Each heater must go through 2 hours
of wiring and 1 hour of drilling. During the next production
period, 240 hours of wiring time are available and up to 130 hours
of drilling time may be used. Each air conditioner sold yields a
profit of $20. Each heater assembled may be sold for a $16
profit.
Number of air conditioners to be produced =_____ (round your
response to two decimal places).
Number of heaters to be produced = _______(round your response to
two decimal places).
Optimal solution value = _______(round your response to two
decimal places).
In: Operations Management
The Coca-Cola Company
In: Operations Management
The Coca-Cola Company
In: Operations Management
For each case history provide:
|
Emilio (DSM-IV Casebook, p. 189-190)
Emilio is a 40-year-old man who looks 10 years younger. He is
brought to the hospital, his twelfth hospitalisation, by his mother
because she is afraid of him. He is dressed in a ragged overcoat,
bedroom slippers, and a baseball cap, and wears several medals
around his neck. His affect ranges from anger at his mother ("She
feeds me sh*t . . . what comes out of other people's rectums") to a
giggling, obsequious seductiveness toward the interviewer. His
speech and manner have a childlike quality, and he walks with a
mincing step and exaggerated hip movements. His mother reports that
he stopped taking his medication about a month ago, and has since
begun to hear voices and to look and act more bizarrely. When asked
what he has been doing, he says "Eating wires and lighting fires."
His spontaneous speech is often incoherent and marked by frequent
rhyming and clang associations (speech in which sounds, rather than
meaningful relationships, govern word choice).
Emilio's first hospitalisation occurred after he dropped out of
school at age 16, and since that time he has never been able to
attend school or hold a job. He has been treated with medication
during his hospitalizations, but doesn't continue to take
medication when he leaves, so he quickly becomes disorganised
again. He lives with his elderly mother, but sometimes disappears
for several months at a time, and is eventually picked up by the
police as he wanders in the streets. There is no known history of
drug or alcohol abuse.
In: Psychology
(a) Let S = {a, b, ab, aba}. How many different factorizations are there of (ab)11 ? It is not enough to give me a number. You need to prove (i.e., justify or explain very carefully) that your number is correct.
This is for an automated languages course
In: Computer Science
1. Prove that if a set A is bounded, then A-bar is also bounded.
2. Prove that if A is a bounded set, then A-bar is compact.
In: Advanced Math
Using Visual Studio Code (JavaScript)
For this lab you must use a reasonable faceted search example, each item must have at least three categorical attributes and at least one numeric attribute. Attributes such as ID, name etc do not count as categorical or numeric attributes.
Exercise 1
(a) Define a class for your item that meets the above three categorical and one numeric attribute requirements.
(b) Create a text file that contains at least 5 such records in CSV format.
(c) Create a HTML page that contains a table element the shows one item record (hardcoded in the HTML).
(d) Add a script element into your HTML page that prints ‘hello’ to the browser’s JavaScript developer console.
(e) Add JavaScript code that uses ‘fetch’ into your HTML page that loads your item text file. Use a python initiated local server to serve that text file.
In: Computer Science
Python 3
Fix the code so if the user enter the same bar code more than three times, it shows a warning message indicating that the product was already tested 3 times and it reached the limits
Code:
import tkinter as tk from tkcalendar import DateEntry from openpyxl import load_workbook from tkinter import messagebox from datetime import datetime window = tk.Tk() window.title("daily logs") window.grid_columnconfigure(1,weight=1) window.grid_rowconfigure(1,weight=1) # labels tk.Label(window, text="Bar code").grid(row=0, sticky="W", pady=20, padx=20) tk.Label(window, text="Products failed").grid(row=1, sticky="W", pady=20, padx=20) tk.Label(window, text="Money Lost").grid(row=2, sticky="W", pady=20, padx=20) tk.Label(window, text="sold by").grid(row=3, sticky="W", pady=20, padx=20) tk.Label(window, text="Failed date").grid(row=4, sticky="W", pady=20, padx=20) tk.Label(window, text="Working product").grid(row=5, sticky="W", pady=20, padx=20) #Working product label # entries barcode = tk.Entry(window) product = tk.Entry(window) money = tk.Entry(window) # arraging barcode.grid(row=0, column=1) product.grid(row=1, column=1) money.grid(row=2, column=1) options = tk.StringVar(window) options.set("Choose one value") # default value soldData = tk.OptionMenu(window, options, "Peter", "John", "Mary", "Jonatan", "Steve") soldData.grid(row=3, column=1) cal = DateEntry(window, width=12, background='darkblue', foreground='white', borderwidth=2) cal.grid(row=4, column=1) #option menu for working product Yes/No optionsWorkingProduct = tk.StringVar(window) optionsWorkingProduct.set("Choose working product") # default value workingProduct = tk.OptionMenu(window, optionsWorkingProduct, "Yes", "No") workingProduct.grid(row=5, column=1) barcode_ls=[] def readValue(): excel_barcode = barcode.get() excel_product = product.get() excel_money = money.get() excel_sold = options.get() excel_workingProduct= optionsWorkingProduct.get() if excel_sold.strip() == 'Choose one value': messagebox.showwarning("Error", "Please select a value for sold by") return if excel_workingProduct.strip() == 'Choose working product': #check for the not selected working product messagebox.showwarning("Error", "Please select a value for working product") return date = datetime.now() print(date) data = [excel_barcode, excel_product, excel_money, excel_sold, date, excel_workingProduct] workbook = load_workbook("dailylog.xlsx") worksheet = workbook.worksheets[0] worksheet.append(data) workbook.save("dailylog.xlsx") cleardate() def cleardate(): barcode.delete(0, 'end') product.delete(0, 'end') money.delete(0, 'end') options.set("Choose one value") # default value optionsWorkingProduct.set("Choose working product") # default value set to the working product today = datetime.now() cal.set_date(today) # button to trigger actions button = tk.Button(text="SUBMIT", command=readValue).grid(row=6, pady=20, padx=20) button = tk.Button(text="CLEAR", command=cleardate).grid(row=6, column=1, pady=20, padx=20) window.geometry("500x500") window.mainloop()
In: Computer Science
JavaScript
each item must have at least three categorical attributes and at least one numeric attribute.
Write a function that counts the number of values each item attribute has. This is effectively a group-by on the item table for each column. For example: if the first attribute is colour, and its values are [ ‘red’, ‘black’, ‘white’, ‘black’, ‘red’ ],
the counts for colour would be: red 2 black 2 white 1
In: Computer Science
C# Questions:
55.A class must be ___________________ before objects of that class can be created.
a.added to the Form
b.declared as Private
c.contain properties
d.added to the application’s project
60.If the variable type of the element in a foreach statement cannot be converted to the same variable type as the collection’s objects, ______________.
a.the body of the statement is ignored
b.a syntax error occurs
c.a runtime error occurs
d.a logic error occurs
66.C# views each file as a _____________.
a.sequential stream of bytes
b.sequential stream of bits
c.sequential stream of characters
d.sequential stream of strings
67.____________ is the part of Microsoft’s .NET platform used for interacting with databases.
a.MDB.NET
b.Database.NET
c.Access.NET
d.ADO.NET
e.SQL.NET
68.A(n) ____________ enables you to access and store data without worrying about how the data is organized.
a.MIS
b.Database Management System
c.primary key
69.A ___________ maintains a connection to a database.
a.connection object
b.data reader
c.StreamReader
d.StreamWriter
71.Use a data reader object’s ___________ method to read information from a database.
a.Open
b.ReadData
c.GetRecord
d.Read
e.ReadTable
72.A(n) ___________ is the interface used by a program to access the operating system and various services on the computer.
a.API
b.GDI+
c.IDE
d.GUI
73.Web applications can be created using a combination of C# and Microsoft’s ____________ technology.
a.HTML.NET
b.WWW.NET
c.ASP.NET
d.PHP.NET
74.The ______________ property specifies the item that is selected in the ListBox.
a.SelectedIndex
b.SelectedItem
c.Items
d.Selection
75._____________ allows an application to track data across multiple Web pages.
a.A Response object
b.Client state
c.An instance variable
d.Session state
76.Exception handling requires that you write code to handle ______________.
a.all types of errors
b.only errors that could occur in your code
c.a few of the most common errors
d.only those errors you choose to handle
77.To catch exceptions thrown by a section of code, you must first enclose those lines in a ____________ block.
a.try
b.finally
c.throw
d.exception
78.A catch block that does not specify which type of exception it catches ____________.
a.is a syntax error
b.is useless; it will not catch any type of exception
c.will catch any type of exception that does not already have a handler defined
98.
All C# applications begin execution by calling the ________ method.
a.main()
b.init()
c.start()
d.submain()
In: Computer Science
An All-Pro defensive lineman is in contract negotiations. The team has offered the following salary structure: |
Time | Salary | ||||
0 | $ | 5,700,000 | |||
1 | $ | 4,300,000 | |||
2 | $ | 4,800,000 | |||
3 | $ | 5,300,000 | |||
4 | $ | 6,700,000 | |||
5 | $ | 7,400,000 | |||
6 | $ | 8,200,000 | |||
All salaries are to be paid in lump sums. The player has asked you as his agent to renegotiate the terms. He wants a $9.2 million signing bonus payable today and a contract value increase of $1,200,000. He also wants an equal salary paid every three months, with the first paycheck three months from now. If the interest rate is 4.7 percent compounded daily, what is the amount of his quarterly check? Assume 365 days in a year. (Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.) |
In: Finance
Interest Expenses must be included in the cash flow statement using indirect method?If yes, in which column?
In: Accounting
In: Computer Science
When a psychologist accepts a referral to do a forensic evaluation, who is the “client?” Discuss how and why this is a complicated question
In: Psychology