Answer: "hierarchy" .
_____________________________________________________
here's a good expiation
Explanation:
a good and cheap way to remove acne scars from your face is to put vasaline only on the scar. do this about 3 times a day and keep it on overnight as well. in a couple of days the scar will peel leaving a new layer of skin on the bottom. this layer will be scar free! make sure you dont put vasaline on your entire face.
What is the question?????
Answer:
The answer is memory buffer.
Explanation:
Which of the following is a file on the host computer used for temporary memory storage when a sudden surge in memory requirements exceeds the physical amount of memory available?
The answer is memory buffer.
A buffer, also called buffer memory, is a portion of a computer's memory that is set aside as a temporary holding place for data that is being sent to or received from an external device, such as a hard disk drive (HDD), keyboard or printer.
Answer:
def element_loc():
is_end = 'n'
dimen2 = []
while is_end == 'n':
par1 = input("Enter rows and columns: ").split(",")
part = [int(i) for i in par1]
dimen2. append(part)
is_end = input("Do you want to add more rows? y/n: ")
mini = list()
for i in dimen2:
mini. append(min(i))
result = min(mini)
row_index = mini. index(result)
col_index = dimen2[row_index]. index(result)
print("Row: ", row_index, "Col_index: ", col_index)
element_loc()
Explanation:
The python program solution above prompts users for the two-dimensional array and then the rows of the array are compared with the minimum value stored in another list or array. The row index and the column index are gotten from the mini and dimen2 arrays respectively and are displayed as the position of the minimum value in the two-dimensional array.