Answer:
28%
Explanation:
Although there are sources that says 30% of gross income can be spent on housing, the most reliable amount that can be spent (according to other sources) is 28%.
Take for instance, you earn $5000 monthly, the maximum that you can spend on housing is:

Using a calculator, we have:

<em>The maximum that can be spent on a monthly gross income of $5000 is $1400</em>
Answer:
It is because constraints applied automatic by the software (CAD) are supposed to control relationships and geometry between lines, arcs and circles while those manually added are supposed to control the geometry to behave in the manner the user likes the sketch to appear when drawing.
Explanation:
CAD software enables creating sketches using the program by automatic allowing geometric constraints to perform the tasks.Geometry in lines, circles, and other geometric features show collaborating relation that facilitate sketching in the program.For example, two end points appear to make lines remain perpendicular.Other geometric constraints are parallel, and equal.However, the user can manually apply geometric constraints to a sketch to force the geometry in a manner that is suitable to the sketch drawn.That is why a user must manually apply others.
Answer:
The solution code is written in Python:
- def convertCSV(number_list):
- str_list = []
- for num in number_list:
- str_list.append(str(num))
-
- return ",".join(str_list)
- result = convertCSV([22,33,44])
- print(result)
Explanation:
Firstly, create a function "convertCSV" with one parameter "number_list". (Line 1)
Next, create an empty list and assign it to a new variable <em>str_list</em>. (Line 2)
Use for-loop to iterate through all the number in the <em>number_list</em>.(Line 4). Within the loop, each number is converted to a string using the Python built-in function <em>str() </em>and then use the list append method to add the string version of the number to <em>str_list</em>.
Use Python string<em> join() </em>method to join all the elements in the str_list as a single string. The "," is used as a separator between the elements (Line 7) . At the end return the string as an output.
We can test the function by calling the function and passing [22,33,34] as an argument and we shall see "22,33,44" is printed as an output. (Line 9 - 10)
Answer:
The stress in the rod is 39.11 psi.
Explanation:
The stress due to a pulling force is obtained dividing the pulling force by the the area of the cross section of the rod. The respective area for a cylinder is:

Replacing the diameter the area results:

Therefore the the stress results:

Answer:
An AI operated automatic garbage collection system
Explanation:
There is always an issue in my neighbourhood with the garbagemen coming on time so having an automatic system will help in the overall efficiency in the task