answersLogoWhite

0

Define 'block'. If 'block' means 'row' then seven.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How many rows in a block at manchester arena?

15 rows in floor blocks, Rows A - Q missing I and N. 22 rows in tiered blocks, Rows A - X missing I and N.


What is square array?

It is an array with the same number of rows and columns.


What is squre array?

A square array is an array in which the number of rows is the same as the number of columns.


How many rows 0f 5 can you make with 25 blocks?

5


If you have an array that has 7 columns and 8 rows what is the total number of units in the array?

7 columns * 8 rows = 56 units


How do you swap rows in 2 dimensional array in Java?

[]temp = array[1] array[2]=array[1] array[1]=[]temp


Why matrice's definition includes rectangular array instead of array?

Matrices itself is a combination of rows and columns.we can not use one-dimenssional array to save the values of matrices.instead we use the rectangular array which contains rows and columns.thats it.


Need to know how many equal rows you can make with 169 blocks?

Oh, what a delightful question! Let's see here. If you have 169 blocks and you want to make equal rows, you can make 13 rows with 13 blocks in each row. Isn't that just lovely? Just imagine all those rows of blocks, each one just as perfect as the next. Happy creating!


What is an arrangement of objects in rows and columns?

Array


How many rows do you have in a game of Solitaire?

In a game of Solitaire, there are typically seven rows of cards.


What is an arrangement of objects into equal rows and columns?

Tabulated form of objects


Columns and rows in c programming?

Do you perhaps mean -- a two-dimensional array? A two dimensional array is nothing more than a one-dimensional array where every element is a one-dimensional array. int matrix[4][5]; C is a row-major language thus the first dimension refers to the number of rows. Here we have declared an array of 4 rows, where each row is an array of 5 elements of type int.