answersLogoWhite

0

Easy!

798 divided by 38 = 21

so da answer is 21 entries in each row

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

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.


What is the array function in CAD?

there r 2 types of array in cad - rectangular array and polar array...........


What is the maximum number of entries that can be placed in the chained hash table?

The maximum number of entries that can be placed in a chained hash table is determined by the size of the underlying array used for storage. Each bucket in the array can hold multiple entries due to chaining, so the total number of entries that can be stored is dependent on the size of the array and the hashing function used.


What are the disadvantage of array implementation of stack?

Some immediate disadvantages:You'll have dead space in the array (entries which aren't currently used for items) taking up memoryYou'll have to keep track of the free entries - after a few insertions and deletions, these free entries could be anywhere.Using an array will impose an upper limit on the size of the linked list.


What are the drawbacks of arrays?

Some immediate disadvantages:You'll have dead space in the array (entries which aren't currently used for items) taking up memoryYou'll have to keep track of the free entries - after a few insertions and deletions, these free entries could be anywhere.Using an array will impose an upper limit on the size of the linked list.


What is a rectangular number?

A rectangular umber is essentially a composite or non-prime number. If a number n is composite then it can be factorised as p*q. In that case, it can be represented as an array of p rows and q columns in a RECTANGULAR array.


What is a Rectangular array that is identical when its rows and columns are transposed?

symmetric matrix


The definition of rectangular array?

An arrangement of objects into rows and columns that form a rectangle. All rows and columns must be filled . Each row has the same number of objects and each column has the same number of objects. -Danielle German Grade 6


How would you show 3546 x 6 as a rectangular array?

With some difficulty! It would be an array with 6 rows and 3546 columns.


How many rectangular arrays does 73 have?

It's a prime number. Therefore the only rectangular array it has is 1*73 (or 73*1)


How will making an array help someone find factors in a number?

The numbers of rows and columns in a rectangular array form a factor pair for that number.


How does two dimensional array differ from single dimensional array?

A one dimensional array is a scalar value repeated one or more times.A two dimensional array is an array of one dimensional arrays.A three dimensional array is an array of two dimensional arrays, and so forth.The one dimensional array is like a list of things, where the two dimensional array is like an array of things. (Think one row of a spreadsheet versus the whole spreadsheet.)[addendum]Every level of array depth is also a level of pointer depth. For example: A 3 dimensional int array is an int***. So a one dimensional int array is an int*, and a two dimensional int array is an int**. This is only important if you are doing pointer work, but it can become very important.