Describe the evolution and potential future of Sustainability Master Plans for US Airports.
In: Operations Management
Question: Not sure how to proceed with question below:
In this task, task 2(a) will be extended so that an array of
five Person objects are created. Write the comma
separated values format of each object in separate lines in a file
named persons.txt. Make use of the
toString() method of Person to obtain comma separated values.
Create a hyperlink pointing to the file persons.txt and include it
on the task page. When the user clicks
on the link, the browser can then download it.
This is question 2a below: not need to be answered
Task 2: Chapter 14: page name=task2.php 40 marks
This task consists of two different subtasks.
(a) [15 marks]
Code a class named Person, which has three data properties to store
the name, a telephone number and
an e‐mail address of a person.
The class must have a constructor to initialise all three data
properties, three set methods and three get
methods to change and access the data properties of the
class.
The class must also have a toString() method with an argument named
$csv initialised to a default
boolean value true. By default, this function must return the value
of data properties in comma separated
values (refer to Chapter 23, Section named ‘How to read and write
CSV data’). On the other hand, if the
method is called with boolean value false, it returns a string
representation of the data properties in a
different format (for example, see showAll() method in Section ‘How
to loop through an object’s
properties’ in Chapter 14).
Create an object of the class Person, invoke all six set and get
methods, and invoke toString() with
both boolean values. Display the results returned by toString()for
both method calls.
In: Computer Science
- How can firms increase the likelihood of forming a successful global alliance?
In: Operations Management
Stress is a constant aspect of the modern work environment. There are various methods for dealing with stressful situations but consider this question: who is responsible for dealing with employee stress, is it the employee or the organization? In your initial discussion post, answer the question of responsibility and provide an argument that supports your answer. In addition, describe two methods for an individual to deal with their own stress and two ways an organization to lower the stress of their employees. Your answer should be more than 200 words
In: Psychology
Define/explain in your own words!
Actuarial change in estimate (example and impact)
In: Operations Management
How can you apply Group Behavior to avoid catastrophic events in your job or future business?
In: Operations Management
What is export biased growth and import biased growth? What is the effect of such growths on the relative supply curve and PPF of an economy?
In: Economics
Consider a rocket that burns steadily. The higher pressure in the combustion chamber, the faster the propellant burns. Why is this? The relationship is such that the higher the pressure, the closer the gaseous flame is to the surface and the more effectively it can transfer heat back to the surface thereby gasifying the propellant quicker. The rate of gas generation, ?_? , can be described by the equation: ?_?=?_1 ?^?, where P is the pressure, and C1 and n are the constants for a given propellant with given exposed surface area.
The hot gas leaving the rocket must pass through the throat of the
exhaust nozzle at sonic velocity.
▪The higher the pressure, the greater the density of this gas and the greater the rate of mass flow at sonic velocity. (The speed of sound in a gas is independent of pressure.) Accordingly, the rate of gas escape, ??r_e , is described by the equation: ??=?2?r_e=C_2 P where C2 is a constant, dependent on cross section area of the nozzle throat and on the velocity of sound in the combustion products.
▪What is the steady operating pressure of a solid-propellant rocket for the given values of the constants C1 , C2, and n? What values of n keep it stable?
PLEASE WRITE CLEARLY AND EXPLAIN WHY IS THE ANSWER THE WAY IT IS PLEASE THANK YOU
In: Physics
Oscar Clemente is the manager of Forbes Division of Pitt, Inc., a manufacturer of biotech products. Forbes Division, which has $4 million in assets, manufactures a special testing device. At the beginning of the current year, Forbes invested $5 million in automated equipment for test machine assembly. The division's expected income statement at the beginning of the year was as follows:
Sales revenue $ 16,000,000 Operating costs Variable 2,000,000 Fixed (all cash) 7,500,000 Depreciation New equipment 1,500,000 Other 1,250,000 Division operating profit $ 3,750,000
A sales representative from LSI Machine Company approached Oscar in October. LSI has for $6.5 million a new assembly machine that offers significant improvements over the equipment Oscar bought at the beginning of the year. The new equipment would expand division output by 10 percent while reducing cash fixed costs by 5 percent. It would be depreciated for accounting purposes over a three-year life. Depreciation would be net of the $500,000 salvage value of the new machine. The new equipment meets Pitt's 20 percent cost of capital criterion. If Oscar purchases the new machine, it must be installed prior to the end of the year. For practical purposes, though, Oscar can ignore depreciation on the new machine because it will not go into operation until the start of the next year. The old machine, which has no salvage value, must be disposed of to make room for the new machine. Pitt has a performance evaluation and bonus plan based on ROI. The return includes any losses on disposal of equipment. Investment is computed based on the end-of-year balance of assets, net book value. Ignore taxes. Oscar Clemente is still assessing the problem of whether to acquire LSI’s assembly machine. He learns that the new machine could be acquired next year, but if he waits until then, it will cost 15 percent more. The salvage value would still be $500,000. Other costs or revenue estimates would be apportioned on a month-by-month basis for the time each machine (either the current machine or the machine Oscar is considering) is in use. Fractions of months may be ignored. Ignore taxes.
Required: Calculate ROI for the coming year assuming that the new equipment is bought at the beginning of the year. (Do not round intermediate calculations. Round your final answer to nearest whole percentage.)
In: Accounting
Discuss the Equal Protection Clause and describe the different levels of judicial scrutiny given to government classifications based on race, gender and age. How might the Equal Protection clause impact a business?
In: Operations Management
Q7. The theory of viscoelasticity is used to describe the
behaviour of materials in liquid phase.
a. For each of the models, identify a real life engineering problem
where it is applies and describe this.
b. How can the knowledge be used in design applications for the
problem you identified above.
c. What are the challenges in the use of the knowledge for solving practical problems.
In: Mechanical Engineering
Write functions that do the following in Python:
i) A function that takes 2 arguments and adds them. The result returned is the sum of the parameters.
ii) A function that takes 2 arguments and returns the difference,
iii) A function that calls both functions in i) and ii) and prints the product of the values returned by both.
In: Computer Science
Prepare a PowerPoint slideshow to present the essential difference(s) between mind mapping and brain mapping, let the presentation be professional and attractive.
In: Operations Management
Examples:
The Lab is divided into a set of example and exercise activities related with this topic and students are required to perform all activities and show (and discuss) the output of activities to the instructor.
Example 1: Implement the Stack Push Operation with Overflow condition
Declare an array of size 5 and implement the Push Operation with overflow condition; you can type the following code as a hint:
#include<iostream>
using namespace std ;
#define MAX 5
struct Stack {
int S[MAX];
int top;
};
Stack st;
st.top = -1;
int item;
if(st.top == (MAX-1))
cout<<"Stack Overflow\n" ;
else
{
cout<< "Enter the item to be pushed in stack : " ;
cin>> item ;
st.top++;
st.S[st.top] = item;
}
Complete this implementation as a full program to PUSH as many elements as the user wants (or till the Stack is full).
Example 2: Implement the Stack Pop Operation with Underflow condition
Declare an array of size 5 and implement the Pop operation; you can type the following code as a hint:
int item;
if (st.top == -1) /* stack empty condition */
cout<< "Stack Underflow\n" ;
else
{
item = st.S[st.top];
st.top-- ;
cout<< "Element popped from stack is :" << item ;
}
Complete this implementation as a full program to POP as many elements as the user wants (or till the Stack is empty).
Example 3: Display the contents of Stack
Display the contents of Stack; you can type the following code as a hint:
int i;
if(st.top == -1)
cout<<"Stack is empty\n" ;
else
{
cout<< "Stack elements :\n" ;
for(i = st.top; i >=0; i--)
cout<< st.S[i] ; }
Exercise
Combine all the three examples above to implement one complete program of Stack
In: Computer Science
In: Operations Management