answersLogoWhite

0


Best Answer

24

User Avatar

Herman Homenick

Lvl 10
3y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

72

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: When you add the number of rows in my array to the number in each row you get 15 My digits add up to 9 Which number am I?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What a division sentence modeled by an array that has 2 more rows than the number in each row?

write a division sentence modeled by an array that has 2 more rows than the number in each row


What is squre array?

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


What is square array?

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


When you add the number of rows in my array to the number in each row you get 15 my digits adds up to 9 which number am i?

24


Can ragged arrays created by using java?

I assume you mean that you have a number of rows, and that not all rows have the same number of "cells". Yes, in Java a two-dimensional array is implemented as an array of arrays (each item in the top-level array is, in itself, an array); a 3-dimensional array is an array of arrays of arrays, etc.; and there is no rule stating that all secondary (etc.) arrays must have the same number of elements.


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


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


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.


What is an array of 5 x 46 in math?

In a matrix, the array 5 x 46 would give the matrix 5 rows and 46 columns, each filled in with a number.


What is represented by an array f 7 rows and 8 rows. I am less than 100 and I am even number?

56


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.


What is an array for 2 times 3?

An array of 2 times 3 is a one-dimensional array of 2 elements each of which is a one-dimensional array of 3 elements. In other words, it is an array of arrays, also known as a two-dimensional array. We can imagine a two dimensional array as being a table with rows and columns. A 2 times 3 array has 2 rows and 3 columns. Each row is itself an array of 3 elements. However, we can also say that each column is an array of 2 elements.