answersLogoWhite

0


Best Answer

you use lines and arrows and draw through numbers

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you draw an array?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do I draw an array to multiply a whole number and a fraction?

like this


How do you draw a array to represent 3 squared?

it is 3 squared


How do you draw an array to find the product of 4 multiplied by 5?

25


Five people bought tickets to a football game. They bought 3 tickets each. How many tickets were bough Draw an array?

15 is the answer The + will be used as the "dots" for the array Array:


How do you draw an array to solve a problem?

The answer will depend on what the problem is: some can be solved using an array but for others, arrays are a complete waste of time.


What is the function of flavoring?

it provide array taste and tantalizing aromas that draw you into the kitchen


How do you draw an array for the product 5?

you have to pick if you want to draw a 1*5 or a 5*1. then you have eaither put from up to down way or a across way thankyou


How do you draw pascals triangle in gwbasic?

I suggest using an array with as many elements as the longest row you need. To keep it simple, keep two copies of the array, and calculate each element of the "new" array as the sum of the corresponding element, plus the previous element, of the "old" array. Then copy the information back for the next step.


Seth has 45 pennies. Draw an array that shows how many nickels the pennies are worth?

9 sets of five pennies


How do you draw 42 cans of juice in an array OF MATH?

One example is making 7 cans of juice in each of six rows: ••••••• ••••••• ••••••• ••••••• ••••••• •••••••


Differentiate single dimensional array to double dimensional array?

A single dimensional array is an array of items. A two-dimensional array is an array of arrays of items.


What is meant by irregular dimensional array?

An irregular dimensional array is a special type of multi-dimensional array.First we must understand that a multi-dimensional array is just an array of arrays. Each element in the array is, itself, an array of elements.A regular multi-dimensional array will be an array of size n, with each element containing a separate array of size m. That is, each sub-array has the same size.An irregular multi-dimensional array will be a multi-dimensional array in which each sub-array does not contain the same number of elements.Regular array:array[0] = new array{0, 1, 2}array[1] = new array{3, 4, 5}array[2] = new array{6, 7, 8}array[3] = new array{9, 10, 11}This regular array is an array of size 4 in which each sub-array is of size 3.Irregular array:array[0] = new array{0, 1, 2}array[1] = new array{3, 4}array[2] = new array{5, 6, 7}array[3] = new array{8, 9, 10, 11}This irregular array is an array of size 4 in which the size of each sub-array is not the same.