As industry developed, farming and subsistence lifestyles declined, and migration forced restructuring of family units as men left to work in factories. needed to be more feminine in order to be successful wives.
<h3>What is meant by industry development?</h3>
industrial development means a development that involves a manufacturing or industrial process, and shall contain, but is not limited to, electric power production, food, and food by-product processing, paper presentation, agrichemical production, chemical processes, and storage.
<h3>Why is industrial development important?</h3>
Industrial development releases dynamic and competitive economic performance which generates income and employment, facilitate international trade and increases resource efficiency, and is thus a major driver of deprivation alleviation and shared prosperity.
To learn more about Industrial development , refer
brainly.com/question/1217301
#SPJ4
The first micro blogs was once known a tumblogs
Answer:
cells are where you enter data on a eorksheet
Answer:
number1 = float(input("Enter the first number: "))
number2 = float(input("Enter the second number: "))
number3 = float(input("Enter the third number: "))
avg = (number1 + number2 + number3) / 3
product = number1 * number2 * number3
print("Average - Product with integer numbers: " + str(int(avg)) + " " + str(int(product)))
print("Average - Product with float numbers: %.6f %0.6f" % (avg, product))
Explanation:
- Get three numbers from the user
- Calculate the average of the numbers
- Calculate the product of the numbers
- Print average and product of the numbers in required format
Answer:
Due to error while posting the answer, the code snippet is attached as pdf file
Explanation:
The code is written in Java and it is an abstract class.
It starts by defining abstract class with the keyword "abstract".
Then it declare two field for shipName and shipYear.
Then a two arguments constructor is defined.
After that the setter and getter method is declared. The getter and setter is also known as accessor and mutator.
Then a String representation of Ship objects is done by overriding the to String method.