Answer:
Mass production.
Explanation:
The traditional factors of production are land, labour, capital and entrepreneurship. These factors are considered in product development, and are invested upon by the entrepreneur.
But as technology evolved, it has modified and enhance these factors. The product are easily transported with fast and economic transportation medium, communication between production lines are fast, cheap and of good quality and products are produced in mass.
Answer:
- output = ""
- for i in range(7):
- if(i % 3 == 0):
- for i in range(5):
- output+= "*"
- output += "\n"
- else:
- for i in range(2):
- output += "* "
- output += "\n"
-
- print(output)
Explanation:
The solution code is written in Python 3.
Firstly, create a output variable that holds an empty string (Line 1).
Create an outer loop that will loop over 7 times to print seven rows of stars (Line 2). In row 0, 3 and 6 (which are divisible by 3) will accumulate up to 5 stars using an inner loop (Line 4-5) whereas the rest of the row will only print two stars with each start followed by a single space (Line 8-9) using another inner loop.
At last, print the output (Line 12).
B) ask jeanne for permission
Answer:
def first_a(n):
lst1 =[x for x in range(1,n+1)if x%6==0 or x%11 ==0]
print(lst1)
Explanation:
Above is a function in python programming language. We have used list comprehension to check numbers that are multiples of 6 or 11 in a range.
When this function is called it will receive an argument (n) of type integer, a range will then be generated from 1 to n+1 since n is inclusive. The modulo operator is used to determine is a value is a multiple of 6 or 11, since their multiples will evaluate to 0
Negativ numbers no matter how big, will always be less than zero. The correct Answer is A) 45,15,0,-11,-37