answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How do you define the phrase array in math?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can you use the word array in a math sentence?

An array of numbers is used in mathematical problems.


What are the demensions of an array?

The numbers that define its size:int x[12][24];


What is an array in math?

Arrays are drawings or doodles that can show you a multiplication.


What kind of phrase is watching a gorgeous array of colors bouncing off the horizon?

It is a detailed phrase


Define an array and describe its purpose?

An array refers to storing data on multiple devices. An example of this would be to be able to type in six things, call them an array, and not need an identifier for each one.


What is the difference between a math phrase and a math sentence?

Math sentence;1+2+3 Math phrase: If i had 1 sock and i got 2 more socks i would have 3.


What is a math fraction in a phrase for t over 12?

math fraction in a phrase for t over 12 = t/12


Why are surds useful in math?

They define irrational numbers


How does a cashier use math?

A cashier uses math to define the total value of the items you buy.


Define the declare statement for multi-dimension array?

<storage_class> <type> <identifer> '[ '<number1> ']' '[ '<number2> ']' ... ';'


Can object have array of characters?

If by an object you mean a class or a struct, yes they can. Define the char array like you normally would but don't intialize any data into it. Do this in the constructor


Sample program of single-dimentional array?

#include "stdio.h" #define SIZE 100; void main() { int array[SIZE], i, size; printf("\nEnter the Size off Array :- "); scanf("%d", &size); printf("\nEnter the Elements of Array :- ")' for(i = 0; i < size; i++) scanf("%d", &array[i]; printf("\nThe Elements of entered Array :- "); for(i = 0; i < size; i++) printf("%7d", array[i]); }