Answer:
Answer explained below. Python language used
Explanation:
The size of the square is of size 10. So assuming zero indexing,
vertical side1 (column Index = 5): row index from 5 to 14
vertical side1 (column Index = 14): row index from 5 to 14
horizontal side1 (row Index = 5): column index from 5 to 14
horizontal side2 (row Index = 14): column index from 5 to 14
Note:
while indexing, data_new[a:b,c] denotes,
row index: a to b-1
column index: c
Similarly data_new[a,b:c] denotes,
row index: a
column index: b to c-1
<u>Code:
</u>
import matplotlib.pyplot as plt
import numpy as np
size_1 = 20
size_2 = 20
data_new = np.random.random((size_1,size_2))
data_new[5:15,5] = 4
data_new[5:15,14] = 4
data_new[5,5:15] = 4
data_new[14,5:15] = 4
fig = plt.figure(figsize=(10,10))
plt.imshow(data_new)
plt.colorbar()
plt.show()
Answer:
Its C that is the answer hahahahha
Answer:
A 512 GB Solid State Drive (SSD) will be recommended
Explanation:
Recommended hard disk for the installation of Microsoft PowerPoint application is 3 GB and since the computer is a new one it will be best to buy a hard disc with enough room for expansion, performance speed, durability and reliability
Therefore, a 512 GB Solid State Drive (SSD) is recommended as the price difference is small compared to the spinning hard drive and also there is ample space to store PowerPoint training presentation items locally.