Questions
You are required to design and fabricate a composite material to be used for machining hard...

You are required to design and fabricate a composite material to be used for machining hard steels. Use the information presented in your lecture notes and:

i) Identify the type of a composite that you would like to design, then select the appropriate reinforcement and matrix and fully justify your selection.

ii) Select a fabrication route for the designed composite and justify your fabrication process selection with respect to temperature and time

In: Mechanical Engineering

Build a module (file with pre-defined functions) that allows the following code to work properly. The...

Build a module (file with pre-defined functions) that allows the following code to work properly. The code below should be able to run without any additions or modifications. You may copy and paste it into a file called file_tools_assignment.py and place it in the same directory as the file you will create. The filename of the file you will create should be file_tools.py. The module should contain 2 custom defined functions; get_file_string() and get_file_list(). Download the data.txt file and place it in the same directory with your other two files.

Contents for file_tools_assignment.py:

import file_tools

filename = 'data.txt'

contents = file_tools.get_file_string(filename)
print(contents)

list_of_lines = file_tools.get_file_list(filename)
print(list_of_lines)

(5 points) The get_file_string() function should attempt to get the contents of a file and return it as a string. If no file exists, the return value should be None.

(5 points) The get_file_list() function should return a list where each element in the list corresponds to a line in the file. Note: no newline characters should be present in the elements of the list. Remove those before adding the elements to the list that gets returned. If no file exists, the return value should be an empty list.

Sample output (3 lines in data.txt):

hello world
    I love programming
Python rocks!

['hello world', '    I love programming', 'Python rocks!']

In: Computer Science

Assume all methods in the Stack class are available to you, request from the user a...

Assume all methods in the Stack class are available to you, request from the user a set of numbers (terminated by -1) and print them in reverse order . write code in java.

In: Computer Science

Define critical success factors (CSFs) and key performance indicators (KPI) Explain how managers use them to...

Define critical success factors (CSFs) and key performance indicators (KPI) Explain how managers use them to measure the success of MIS projects. and some examples about (Sabic) company for critical success factors and key performance indicators (900 wards)

In: Operations Management

Implement the bubble sort in ML using pattern matching and local function definitions. Show that it...

Implement the bubble sort in ML using pattern matching and local function definitions. Show that it works with a few simple examples. A nice description of the bubble sort can be found on Wikipedia.

A helpful function for the bubble sort is:

(* General function that checks if an int list is sorted *)

fun issorted [] = true  

| issorted [x] = true

| issorted (x::y::t) = x <= y andalso issorted(y::t);

Test your solution and show that it works on the following examples:

  • bubbleSort []; → []  

  • bubbleSort [1]; → [1]  

  • bubbleSort [1,2,3]; → [1,2,3]  

  • bubbleSort [3,1,2]; → [1,2,3]  

bubbleSort [5,4,3,2,1]; → [1,2,3,4,5]

In: Computer Science

Trends in EP Question: How changes tie to changes in company revenue, costs, and competitive strategy?

  • Trends in EP
  • Question: How changes tie to changes in company revenue, costs, and competitive strategy?

In: Operations Management

What type of market structure is the cricket ball product line of Kookaburra Sport fall under?...

What type of market structure is the cricket ball product line of Kookaburra Sport fall under? Would it be imperfect competition or an oligopoly? How would I determine this?

In: Economics

Number conversion between hexadecimal and binary. Show the working steps. a) Convert the hexadecimal number E4D2...

Number conversion between hexadecimal and binary. Show the working steps. a) Convert the hexadecimal number E4D2 into binary. b) Convert the binary number 1100010111110011 into hexadecimal

In: Computer Science

If a professor had an Indian student in class and the student asked the professor to...

If a professor had an Indian student in class and the student asked the professor to not pass out handouts with his left hand, do you think the professor should comply?

In: Psychology

Question 1 (30 marks, maximum 300 words) When a business expands its operation into other countries,...

Question 1 (30 marks, maximum 300 words)

When a business expands its operation into other countries, the impact of globalization on human resource development and management is significant.

  1. What role does HRM play for Dell? Support your answer with examples.
  2. Discuss the obstacles that Dell faces for survival and success due to globalization. Support your answer with discussion and relevant example.
  3. I need relevent example to Dell company for each A and B

In: Operations Management

Give one example and explain the effect of each of the following on memory Retroactive interference...

Give one example and explain the effect of each of the following on memory
Retroactive interference
Proactive interference
Repression
Infantile amnesia
Anterograde amnesia
Retrograde amnesia

In: Psychology

Write a java program StudentDriver class to test the methods of the Student class. Use data:...

Write a java program StudentDriver class to test the methods of the Student class.

Use data:
Mary Brown 1234
John Jones 5678
Maty Jones 1234

Note: we are including Mary Jones twice so we can test the "equals" method.
We can test "compareTo", by test student1 and student2, then student2 and student3.

Just submit your driver class as text file.

Make sure you also test addQuiz, getTotalScore, getAverage, and toString. Don't worry about testing all of the sets and gets...

public class Student implements Comparable
{
        //instance variables
        private String lastName;
        private String firstName;
        private String ID;
        private double totalScore;
        private int numQ;
        
        //Constructor
        public Student(String lastName, String firstName, String ID)
        {
                this.lastName = lastName;
                this.firstName = firstName;
                this.ID = ID;
                totalScore = 0;
                numQ = 0;
        }
        
        //instance methods
        
        public void setLast(String lastName)
        {this.lastName = lastName;}
        
        public void setFirst(String firstName)
        {this.firstName = firstName;}
        
        public void setID(String ID)
        { this.ID = ID;}
        
        public void setTotalScore(double total)
        {this.totalScore = total;}
        
        public void setNumQ(int numQ)
        {this.numQ = numQ;}
        
        public String getLast()
        {return this.lastName;}
        
        public String getFirst()
        {return this.firstName;}
        
        public String getID()
        {return this.ID;}
        
        public double getTotalScore()
        {return this.totalScore;}

        public int getNumQ()
        {return this.numQ;}
        
        public void addQuiz(int score)
        { totalScore += score;
          numQ++;}
        
        public double getAverage()
        {return  totalScore/numQ;}
        
        public boolean equals(Student other)
        {return this.ID.equals(other.ID);}
        
        public int compareTo(Student other)
        {return this.lastName.compareTo(other.lastName);}
        
        public String toString()
        {return this.lastName + ", " + this.firstName + "  " + "\n" + this.ID + "\n";}
        
        
        
        
}
        

In: Computer Science

Suppose you find a magnifying glass in a junk drawer at home. You place it directly...

Suppose you find a magnifying glass in a junk drawer at home. You place it directly in between a light bulb and the wall, which are separated by 95 cm. When the lens is 15 cm from the wall it creates a focused image of the bulb. (a) Determine the focal length of the magnifying glass lens. (b) Without moving the light bulb (or the wall) at what other location would the lens project a focused image of the bulb on the wall? (c) Find the ratio of the image sizes of the two cases. (d) If the bulb is moved too close to the wall there will be no way possible to project a focused image – determine this distance and explain.

In: Physics

1) Citizens Bank offers 4.8% (APR) monthly compound interest on your deposit. If you deposit $200...

1) Citizens Bank offers 4.8% (APR) monthly compound interest on your deposit. If you deposit $200 today, what is your account balance after 5 years assuming no withdraw?

2)Use the following corporate tax rate table to answer the question:

Taxable income

Marginal Tax rate

$           0 – $ 50,000

15%

$ 50,001 – $ 75,000

25%

$ 75,001 – $100,000

34%

$ 100,001 – $335,000

39%

Honey Donuts reported 2017 taxable income of $250,000.

How much is the firm's tax bill?

What is the average tax rate?

3)Given the following income statement data, calculate net income. sales = $2,500, cost of goods sold = $1,800, expenses, depreciation, and amortization = $200, interest expense = $50, average tax rate = 35%.

4)If current assets = $125, fixed assets = $300, long-term debt = $80, and shareholders' equity = $275, what is the value of current liabilities if it is the only other item on the balance sheet?

5)You are considering Massachusetts State Municipal Bond that is paying a yield of 10.08 %. You are in the 28 percent tax bracket. To match this after-tax yield, you would consider taxable securities (Corporate Bond) that pay at least what level of before-tax yield?

6)If corporate bond yields are at 7.8% and municipal bond yields are at 5.5%, at what federal income tax rate would you be indifferent between owning either of these bonds? (i.e., they will offer the same after tax yield to you) Ignore the impact of state and local taxes.

7)Your uncle has a personal income tax rate 35%. If his after tax return rate from General Electric bonds was 5.6% for year 2017, what must be the before tax return rate on the bond?

In: Finance

in the retail sector, there are alternatives way in which products can be reach their market....

in the retail sector, there are alternatives way in which products can be reach their market.
compare the aspects of a business to consumer distribution channel to those of business to business distribution channel. provide relevant examples to support your discussion

In: Operations Management