Question: A ____ is a type of program that uses a grid to organize and work with data.
Answer: cells
Explanation: cells store data and other things in columns and organize them
Question: Explain how to create a Pivot table?
Answer: 1.Click a cell in the source data or table range.
2.Go to Insert > Recommended PivotTable.
3.Excel analyzes your data and presents you with several options, like in this example using the household expense data.
4.Select the PivotTable that looks best to you and press OK.
question answered by
(jacemorris04)
The part of an algorithm which is repeated for a fixed number of times is classified as iteration.
Iteration is basically a repeated execution of the same set of instructions in sequence until a certain condition is met. For loop is the type of iteration in which a block of instructions repeated again and again for the fixed number of times. Upon completion of the previous iteration, the next iteration starts. The iteration process stops only when the given termination condition matches.
For example, this is the syntax of for loop:
for(initialize; condition; increment);
for (int num=0; num<5; num++)
In this for loop, iteration is carried out for 5 times, starting the value of num from 0 and repeatedly iterates with an increment of one in num until the value of num is less than 5 i.e. 4. This loop terminates once the value of num becomes 5 and, in result the condition num < 5 fails to match anymore.
Therefore, the part of an algorithm which is repeated for fixed number of times is classfied as iteration.
You can learn more about itreation at
brainly.com/question/28134937
#SPJ4
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:
Transaction Manger
Explanation:
Transaction Manger
Transaction Manager is responsible for transaction between resources that are available. It works as interface to support remote access form other systems in Data base management system.