Questions
A thermocouple (TC) reads a temperature of 180 degrees C when placed in a large wind...

A thermocouple (TC) reads a temperature of 180 degrees C when placed in a large wind tunnel. The thermocouple is exposed to convection and radiation heat transfer.

  • The convection heat transfer coefficient h = 125 W/m2-K.
  • As for radiation, the surface of the thermocouple is diffuse and gray with an emissivity of 0.6. The walls of the wind tunnel are at a uniform temperature of 450 degrees C.

Questions:

  1. Provide a sketch
  2. State your assumptions
  3. Calculate the temperature of the air in the wind tunnel
  4. The walls of the duct have an emissivity of 0.85. Explain in one or two sentences why the emissivity of the walls should (or should not) have an effect on your answer?

In: Mechanical Engineering

Using matlab Set ASIZE to 5. Write a program that creates an array of ASIZE numeric...

Using matlab

  1. Set ASIZE to 5. Write a program that creates an array of ASIZE numeric elements. Prompt the User for ASIZE numbers and store them in the array. After storing the values, calculate the sum of all the values in the array and display the sum.
  2. Modify the program you wrote for Problem 5 such that it calculates the product of all the values instead of the sum.
  3. Modify the program you wrote in Problem 6 such that it changes the value of each element of the array by multiplying each element of the array by 2, and then displays each element of the array.

                                                                                                              

In: Computer Science

using maxwell eqs show that you can get snells law

using maxwell eqs show that you can get snells law

In: Physics

Discuss Legal trends affecting human resource management (HRM)

Discuss Legal trends affecting human resource management (HRM)

In: Operations Management

Grocery Store using Java Arraylist Requirements: 1. Need Product Class and Stock Class 2. Use arraylist...

Grocery Store using Java Arraylist Requirements:

1. Need Product Class and Stock Class

2. Use arraylist to store/ add product in stock

3. Product must have name, code number and quantity in stock

4. Print list of the products and their stock quantity

5. Search products based on their name

6. Remove product based on their code number

7. Sell product and deduct quantity from stock

8. Stock Class contains methods of search product, add product and check quantity of the product

9. Product Class contains method of get product details

In: Computer Science

I need new and unique answers, please. (Use your own words, don't copy and paste), Please...

I need new and unique answers, please. (Use your own words, don't copy and paste),

Please Use your keyboard (Don't use handwriting) Thank you..

IT101

Q1:Data Modelling is the primary step in the process of database design. Compare and contrast Conceptual data model versus Physical data model. Illustrates with help of example to list down data (entities), relationship among data and constraints on data.

Q2:What strategic competitive benefits do you see in a company’s use of extranets?

Q3:Explain how Internet technologies are involved in developing a process in one of the functions of the business? Give an example and evaluate its business value.

Q4:

What are the basic differences between HRM, Intranet and Internet in terms of Domain and Network Communication Scope?

HRM Intranet

HRM Internet

Domain

Network Communication Scope

In: Computer Science

python { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "<center> <h1>CpE 4040 Midterm-2 Exam</h1>...

python

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<center> <h1>CpE 4040 Midterm-2 Exam</h1> </center>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"1- Write a Python code which asks two numbers from the user, calculates the sum and print the result. Create a function to calculate the summation and return the result value.<br>\n",
"i.e. <br>\n",
"First Number:12 <br>\n",
"Second Number:23 <br>\n",
"12 + 23 = 35"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"2- Create 20 random integers in an array which has the numbers between 10 and 100 (includes 10 and 100). Sort and print the numbers in descending order."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"3- Write a Python code that asks a string from the user and prints only the lower case letters in that string."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"4- Create an evenly spaced 21-element array between 2.2 and 12.4. Find the median of the array. Print both the array and median value. "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"5- Write a simple number guessing game Python program. In this code, generate a random integer between 1-10 (both included) and ask the user to guess the number in three attempts. \n",
"Print appropriate responses to the user such as \"You won!\" or \"You failed\" "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"6- Generate an array of numbers from 1 to 15. Reshape it to make 3x5 matrix. Convert the matrix into data frame and print the even number of columns. "
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.1"
}
},
"nbformat": 4,
"nbformat_minor": 2
}

In: Computer Science

Discuss this statement; “Banking everywhere, but not at the bank”. * (10 Marks

Discuss this statement; “Banking everywhere, but not at the bank”. *

(10 Marks

In: Computer Science

Social Media Marketing. 1. In your own words, please define both "permission marketing" and "interruption marketing."...

Social Media Marketing.

1. In your own words, please define both "permission marketing" and "interruption marketing." Please provide an example of a time when you have experienced both types of marketing.

2. Two-paragraph (five-sentence per paragraph minimum) answer to the following question. Please feel free to write only your opinion, or to back it up with sources.

In your opinion, why is social media different from other types of marketing?

In: Operations Management

What steps are organizations taking in reducing bureaucracy? Define professionalism.

What steps are organizations taking in reducing bureaucracy? Define professionalism.

In: Operations Management

PHP You will be using the object oriented features of PHP to design a music album...

PHP

You will be using the object oriented features of PHP to design a music album processing page.

First you will build a form page called addAlbum.php. This form will contain text fields for album title, artist, publisher (Sony, BMI, etc.) and genre. Add two more fields of your choice. You will post this form to the file process.php.

If all the fields have values, we will create a new Album object and print the details of the object. You will need to create an Album class that has private instance variables for all the fields just described. Your constructor should simply echo to the screen "Album created." If the user missed some of the form, give them a link to go back and fix.

Generate standard getters/setters

You will need to create __get and __set functions (magic functions) to allow us to set the properties of the instance variables from outside the class. You will also create a function (or method) called __toString() in the class. Calling this will return a formatted string of all the details for the album. Store the class in album.class.php.

Include a hyperlink back to add another album.

Sample output could look like this:

Album Created
Album Title: Blaze of Glory
Artist: Jon Bon Jovi
Publisher: ASCAP
Genre: Rock
Custom Field: stuff
Another Custom Field: stuff

Add another album! (This is an hyperlink to add another album)

Requirements

i. Comments on all pages, proper page names (as requested), aligned code, overall effort
ii. addAlbum.php page is complete - doctype, complete html structure and some instructions that give the user some indication of what they are to do
iii. album.class.php - contains code to define album class - as well as documentation/comments to outline how to use - see requirements for details (private vars, constructor, magic methods(__get(),__set() and __toString functions)
iv. Some type of validation used so that user knows about errors
v. Styles for all pages: Use an external stylesheet for all styles. All page content should be in a div with an id set to 'container', 650px wide and the content centered.

vi.The container div should also be centered on the screen (horizontally). The constructor text should be echoed using an <h3> tag. Please bold all labels as displayed above.
vii. Use the Button class to print the submit button on the form page addAlbum.php.

In: Computer Science

Nina Stiller is passionate about modern sculpture and works for an art dealer in New York...

Nina Stiller is passionate about modern sculpture and works for an art dealer in New York City. In her job, she is responsible for traveling the country to assess sculptures that are being sold by private owners and determining if the art dealer should buy them. She also privately collects sculptures that she thinks are great works of art and will become valuable over time. She will sometimes sell the sculptures she owns privately if she gets an offer that will make her a lot of money. She is saving the money from the sales because she hopes to open up her own art dealership one day. Unfortunately, her boss at the art dealership discovers that she sometimes sells pieces from her private sculpture collection for a profit. Her boss wants to fire her because her private sculpture sales are a conflict of interest with her work at the art dealer.

Nina’s boss is worried that firing Nina would violate the New York law that prohibits employers from discriminating against employees for their participation in legal recreational activities pursued outside of work hours.

Use the language from the New York law that was analyzed in theNew York v. Walmartcase to explain why Nina would not be protected by this law from being fired.

In: Operations Management

Using this memory model describe HM's memory problems and also describe what he has retained. Compare...

Using this memory model describe HM's memory problems and also describe what he has retained. Compare this to the case of the spotless rat.
https://www.memorylosstest.com/human-memory-model-steps/

https://neurophilosophy.wordpress.com/2007/05/25/remembering-henry-m/

In: Psychology

What measures has Thailand taken to fight human trafficking ? What measures does US still needs...

What measures has Thailand taken to fight human trafficking ? What measures does US still needs to take?

In: Psychology

In Multi-Effects Desalination (MED) system composed of 4 effects, and 3 feed preheaters and down condenser....

In Multi-Effects Desalination (MED) system composed of 4 effects, and 3 feed
preheaters and down condenser. List the following:
a- The mass balance in the evaporator, feed preheater and down condenser
b- The energy balance in the evaporator, feed preheater and down condenser
c- The Material balance in the first effect
d- The temperature profile of the feed if the intake temperature is 25ºC and
temperature of last effect is 40ºC and the temperature of first effect is 60ºC
e- What will happen to the transfer area of the evaporator if the motive steam
temperature is increased to 100ºC where the rest is remaining constants.

In: Mechanical Engineering