You are in the process of buying a new home!
Now consider the following:
1. The New Home
2. Furniture
3. Plates, Utensils, Cups
4. Towels and Blankets
5. Decorations for the home
6. Bank for a mortgage loan
7. Realtor to help you look for a new home.
8. The neighborhood where you will move to
9. Schools near your new home
10. Shopping and restaurants near your new home
this is about High and Low Involvement, Consumer Decisions, and Factors that affect our choices. Now answer the questions below in detail.
A. Which of the above do you consider to be HIGH INVOLVEMENT items? Simply make a list.
B. Which are LOW involvement? Again, make a list.
C. Explain what your thought process would be if you were considering buying a new home. What affects your choices?
In: Economics
Ch 19
8. A nearsighted person has glasses with a prescription of -6.25 D. What is the farthest he can see clearly without corrective lenses (far-point)? 16 cm
9. A farsighted person has a near-point of 75 cm. What prescription should his glasses have to bring his near-point to 25 cm? 2.67 D
10. A person with a far point of only 25 cm wants glasses that he can wear while using a computer monitor 65 cm away from his eyes. What refractive power do these glasses require? -2.46 D
11. A 2 cm tall object is projected as a 8 cm tall real image.
a) What is the focal length of the lens if the object is 5 cm from the lens? 4 cm
b) Is the lens convex or concave? Convex
In: Physics
Python
What is the length of some_numbers?
What is the sum of the values in some_numbers?
How many courses is the student taking?
What is the student's birthdate?
How long is the course name of the second course in the student's list of courses?
some_numbers=[7,14,5,17,82]
student={"uin":123456789,
"name":"Josephina Student",
"birthdate": "01/01/2002",
"courses": ["CS111","BIOS100","ARST209","PHIL103"]}
course_catalog={
"ARST209": "The Art and Archaeology of the Ancient Near
East",
"PHIL103": "Introduction to Ethics",
"CS111":"Program Design I",
"CS141":"Program Design II",
"BIOS100": "Biology of Cells and Organisms"
}
some_numbers=[7,14,5,17,82]
student={"uin":123456789,
"name":"Josephina Student",
"birthdate": "01/01/2002",
"courses": ["CS111","BIOS100","ARST209","PHIL103"]}
course_catalog={
"ARST209": "The Art and Archaeology of the Ancient Near
East",
"PHIL103": "Introduction to Ethics",
"CS111":"Program Design I",
"CS141":"Program Design II",
"BIOS100": "Biology of Cells and Organisms"
}
In: Computer Science
The nursing process is a systematic continuous and dynamic method of providing care to clients which comprises of a series of sequential phases built upon the preceding step. Assessment is an important step of the whole nursing process. Explain how you would perform a focused abdominal assessment a new patient on your ward .
In: Nursing
1. a) Distinguish between implicit and explicit deposit insurance. Give specific examples to illustrate their differences.
b) Explain the “moral hazard” behaviour induced by deposit insurance.
c) Explain two (2) features that can be built into a deposit guarantee scheme to mitigate the moral hazard discussed in part (B).
In: Finance
Topic:As engineers, we should design our built environment to include all people; young and old, abled and disabled. Do you agree, and how can we do it?
based on engineer and society subject,please elaborate the topic in between 5 pages.thank you.please include the reference as well.
In: Civil Engineering
USING PYTHON, write a function that takes a list of integers as input and returns a list with only the even numbers in descending order (Largest to smallest)
Example: Input list: [1,6,3,8,2,5] List returned: [8, 6, 2].
DO NOT use any special or built in functions like append, reverse etc.
In: Computer Science
PLEASE NOTE:1)-DO NOT USE FUNCTIONS USE ONLY DO WHILE LOOP.
2)DO NOT USE IN-BUILT FUNCTIONS.
3)Use of string and char is not allowed.
Write a program in c laungage that prints a table of the binary, octal and hexadecimal equivalents of the decimal numbers in the range1 through 256.
In: Computer Science
You are required to design a watch tower. The watch tower is circular and has an outer diameter of 1500mm. The tower is built of 2 skins of masonry brick work. The supplier data sheet says that the density of the brickwork is 1900 kg/m3 . The tower has a slab at the top and watchmen sit there. The tower is built on a square concrete slab 2m by 2m. the slab is 300mm thick. It has finishes of 50mm on it. The concrete slab sits on masonry walls that are 4m high above ground level. These walls are also double skin walls. The foundation is a strip footing. The geotechnical engineer has given you an allowable bearing pressure of 300 kPa at a depth of 1000mm below ground level. The height of the watch tower from the top of the concrete slab to the top of the tower is 10m. Determine the minimum width of the foundation. Also determine the factored loads in the foundation? Use factors 1.2 DL + 1.6 LL.
In: Civil Engineering
(Python) In a weather station, there is a sensor that measures
the temperature three times a
day (in Celsius). Write a program that asks the user to input three
numbers, corresponding to the
sensor's three readings for a particular day. Then, print the
minimum, maximum and average value
of the three numbers.
Note: If one or two inputs are either less than -70, or greater
than +50 degrees, you should ignore
those one or two inputs, and calculate the minimum, maximum and
average using only the other
inputs. If all 3 inputs are either less than -70 or greater than
50, your code should print "Broken
sensor!" and not perform any calculations.
For this question, you must not use any built-in functions or
functions from math
module except print(), input() or oat(). You must compute the
minimum, maximum
and average values using if statement and arithmetic operators.
This means that you
cannot use the built-in max() or min() functions.
In: Computer Science