answersLogoWhite

0

it is a random splitting of atoms made of protons and neutrons and electrons if they split the universe willexplode.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the difference between numeric array and associative array?

Numeric array has numbers(+integers) that represent the values Associative array has strings that represent the values


What data type can be used to represent 1000000 elements in an array?

An array.


How do you draw a array to represent 3 squared?

it is 3 squared


Can linked list represent in array if yes show how insertion and deletions can perform in array representation of inked list?

yes


How do you represent binary tree using array?

The root of the tree is stored in array element [0]; for any node of the tree that is stored in array element [i], its left child is stored in array element [2*i], its right child at [2*i+2]


What is the use of matrix in data structures?

Nothing, but a two dimensional array can be used to represent a matrix.


How is an array name interpreted?

An array name in programming is interpreted as a pointer to the first element of the array. When used in expressions, it typically evaluates to the address of the first element, allowing access to the entire array through pointer arithmetic. This means that the name of the array does not represent a single value, but rather a reference to a contiguous block of memory where the elements are stored.


What does a 2 dimensional array do?

A two dimensional array is a one-dimensional array of one-dimensional arrays. That is, just as we can have an array of integers, we can also have an array of integer arrays. This idea can be extended such that we can have an array of two-dimensional arrays (a three-dimensional array), and so on. We typically use a two-dimensional array to represent a table of rows and columns, where each row is a one-dimensional array.


What are the rectangular arrays for 64?

Rectangular arrays for 64 can be formed by finding pairs of factors that multiply to 64. The factor pairs are: (1, 64), (2, 32), (4, 16), (8, 8). These pairs represent the dimensions of the rectangular arrays, such as a 1x64 array, a 2x32 array, a 4x16 array, and a 8x8 array.


What is an example in array in our everyday life?

An array of political figures proselytizing over an array of political issues in order to swing a body of votes, representing 'people', from 'a candidate', out of the running for office, to 'the candidate' chosen to 'represent' a political party; where yet another ARRAY, this one of cakes, was spread out for a gathering array of persuasive participants, one of whom was overheard to say, "Let us simply eat cake." in a rather aggressive tone of voice.


When utilizing a function what does a range of cells represent?

A range can be one of the arguments in a function. It can also be an array of values. It depends on the function and what it needs to work.


How do you represent a one dimensional array in memory?

A one-dimensional array is always represented as a single contiguous block of memory. The size of the allocation is determined by the array's type and the number of elements of that type. For instance, if you create an array of 10 elements where each element is 4 bytes in length, the total allocation will be 40 bytes. The array name is a reference to the start of the allocation and individual elements are accessed via an indexed offset from this reference, such that the first element is at offset 0, the next is at offset 1, and so on.