answersLogoWhite

0

The multiplication fact (singular, not plural 'facts') that can be found is 7x9 = 63.

Using the arrays,

a 2x9 array (2 rows of 9 items) and 5x9 array (5 rows of 9 items) is 63:

2x9 = 18

5x9 = 45

18 + 45 = 63

User Avatar

Wiki User

10y ago

What else can I help you with?

Continue Learning about Engineering

How can loops be used to process arrays?

Loops can be used to iterate or walk through an array. For example, suppose you have an array already initialized (we'll call it "array"): int target = -1; for (i=0; i < array.length(); i++){ if (array[i] = target){ //do something } } Here, we will walk through an array (note that arrays are zero indexed) using a loop to make sure we hit each element of the array. In our loop, we start at the head (or first element) and iterate over each element.


What is an example of square array?

*SQUAREdefinition- A 4-sided regular polygon with all sides equal and all internal angles 90°example- A computer screen*SQUARE (SQUARE ROOT)definition- A divisor of a quantity that when squared gives the quantityexample- The square roots of 25 are 5 and −5 because 5 × 5 = 25 and (−5) × (−5) = 25.


Algorithm to find factorial using functions?

factorial using recursion style in c++ is unsigned int fact(unsigned int a) { if (a<=1) return 1; else { f*=fact(a-1); return a; } } when using looping structure factorial is unsigned int fact (unsigned int n) { unsigned int i,f=1; for(i=1;i<=n;i++) f*=i ; return f; }


Abap Program To find Factorial of number?

report zbharath. data:num type i value 5, fac type i value 0. perform fact using num changing fac. write:/ 'factorial of',num,'is',fac. form fact. using value(f-num) type i. changing f-fact type i. f-fact=1. while f-num ge 1. f-fact=f-fact*f-num. f-num=f-num-1. endwhile. endform.


What do you mean by array in java explain in details?

Arrays are objects in Java that store multiple variables of the same type. Arrays can hold either primitives or object references, but the array itself will always be an object on the heap, even if the array is declared to hold primitive elements. In other words, there is no such thing as a primitive array, but you can make an array of primitives.Declaring an ArrayArrays are declared by stating the type of element the array will hold, which can be an object or a primitive, followed by square brackets to the left or right of the identifier.Declaring an array of primitives:int[] Values; // brackets before name (recommended)int Values []; // brackets after name (legal but less readable)// spaces between the name and [] legal, but badDeclaring an array of object references:Ferrari[] Ferraris; // RecommendedFerrari Ferraris[]; // Legal but less readableWhen declaring an array reference, you should always put the array brackets immediately after the declared type, rather than after the identifier (variable name). That way, anyone reading the code can easily tell that, for example, Values is a reference to an int array object, and not an int primitive.We can also declare multidimensional arrays, which are in fact arrays of arrays. This can be done in the following manner:String[][][] occupantName; // recommendedString[] ManagerName []; // Real bad coding practice, but legalThe first example is a three-dimensional array (an array of arrays of arrays) and the second is a two-dimensional array. Notice in the second example we have one square bracket before the variable name and one after. This is perfectly legal to the compiler, but if you write code like this, anyone who is going to manage your code in future is sure going to curse you badly.It is never legal to include the size of the array in your declaration. Yes, before you ask me, let me admit that you can do that in some other languages, which is exactly why you might see a question or two that include code similar to the following:int[5] races;The preceding code won't make it past the Java compiler. Remember, the JVM doesn't allocate space until you actually instantiate the array object. That's when size matters and not when you declare the array variable.

Related Questions

What multiplication fact can be found by using the arrays for 2 times 9 and 5 time 9?

3 times 9 and 7 times 9.


What multiplication fact can be found by using the arrays for 2 x 9 and 5 x 9?

9+9 and 9+9+9+9+9


What mult fact can be found by using the arrays 2X9 and 5X9?

9


What multiplication fact be found be using the arrays 2x9 and 5x9?

7x9 is the multiplication fact that can be found using the arrays 2x9 and 5x9.


What multiplcation fact can be found by using the arrays for 29 and 59?

They both cannot be


What multiplication fact can be found by using the arrays for 2 times 9 and 5 times 9?

Oh, what a happy little question! When you have an array for 2 times 9, you can see 2 rows of 9, which equals 18. And when you have an array for 5 times 9, you can see 5 rows of 9, which equals 45. Keep exploring those arrays and you'll create a beautiful landscape of multiplication facts!


How can you make a multiplication fact using digits 1 through 9?

2x2=4


What does multiplication facts mean?

multiplication fact means the truth


Is zero a multiplication fact?

No. A multiplication fact contains two factors being multiplied, like 0x8 or 7x6.


make a multiplication fact of the numbers 3122111?

There is only one number. The simplest multiplication fact is 3122111 x 0 = 0There is only one number. The simplest multiplication fact is 3122111 x 0 = 0There is only one number. The simplest multiplication fact is 3122111 x 0 = 0There is only one number. The simplest multiplication fact is 3122111 x 0 = 0


What Multiplication fact has only one division fact?

1


What is the solution to a multiplication fact?

product