answersLogoWhite

0

What does array means on HTML?

Updated: 8/11/2023
User Avatar

Wiki User

13y ago

Best Answer

There are no arrays in HTML.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does array means on HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is an array searching?

That means that you search for something within an array.


What does HTML progamming means?

HTML programming means using tags in HTML. It is a way of creating interactive web pages.


What are the differences between broadside array and endfire array?

in received antenna: broadside means the direction of arrival is 90 degree or wave perpendicularly impinges the array. and endfire means the wave comes from the direction along the array axis.


What does rank means in array?

Te


What is a FIFO array?

It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.


What does square brackets mean?

It means indexing into an array. The array could be an array of built in primitive types or array of objects. The index must be a numeric value greater than or equal to 0.


What is the main deficency of HTML?

HTML has a deficiency that the functionality cannot be applied. That means the condition statements are not there.


Why and is not required for an array in scanf in c?

The name of the array means the address of the first element, so 'arr==&arr[0]'


What is meant by array with in structure in c language?

It means a structure has a member that is an array: typedef struct foo { int x[42]; // an array of 42 integers // other members... };


What is the full name for VGA?

The word VGA means "VIDEO GRAPHIC ARRAY" in the system unit of computer.


What does edit HTML mean?

It means to change the HTML. Webpages are created using HTML. To change the page, you need to edit the HTML. So people open the source code of the HTML and change it and then upload the new version of the page.


What is the sie of an array whos upper bound is 100?

To calculate the size of array the type of array should be given. Ex: if it is of integer type that means int arr[100] and integer is of 4 bytes, then the size of array will be 400 bytes.