answersLogoWhite

0

In general, any ordered list is any list which follows some sort of arbitrary system to determine the order the elements of that list are displayed.

In reference to HTML, an ordered list is characterized by a "<ol></ol>" tag set. When the HTML is rendered, the individual "items" (characterized by "<li></li>" tag sets nested withing the aforementioned set) are displayed in order, characterized by a numeric bullet representing their position on that list, beginning at the value "1" and incrementing accordingly.

User Avatar

Wiki User

17y ago

What else can I help you with?

Continue Learning about Engineering

Role of data structure to insert an element in the data structure?

using data structure an element can insert at any position easily. with out traversing through the entire list.


What is the difference between linked list and Ordinary list?

A list is an abstract data structure, usually defined as an ordered collection of data. A linked list refers to a specific implementation of a list in which each element in the list is connected (linked) to the next element.


What is an ordered list of data structure using c plus plus?

An ordered list of data in any programming language is simply a sorted array or list. In C++ this can either mean a sorted array, vector, list or forward list.


Is a linked list a physical data structure?

Physical data structures are how data is organized on a hardware storage device, and therefore how they appear to the computer. Logical or virtual data structures are software-based objects, and how the user or program sees it. Although many file systems use a type of linked list format for storing information, a linked list is used for both hardware and software purposes, and therefore it cannot fall under either the physical or virtual data structure classification.


When you create a new data which object created first?

When you create new data, the first object created is typically the data structure that will hold it, such as an array, list, or database record. This structure provides a defined format and organization for the data being input. After that, the actual data elements are instantiated and stored within this structure.

Related Questions

What are the advantages of using a Java sorted list data structure over other data structures for storing and managing data?

One advantage of using a Java sorted list data structure is that it maintains elements in a sorted order, making it easier and faster to search for specific items. This can be particularly useful when dealing with large amounts of data that need to be accessed in a specific order. Additionally, a sorted list can also facilitate efficient insertion and deletion operations, as the structure is already organized in a sorted manner.


What is the difference between data structure and abstract data type?

An Abstract Data Type is an interface that interacts with a data structure. A Data Structure is an implementation of the ADT. for example. If you were going to create a linked list you would create an Interface listing all the methods required by the list. Then in the linked list class you would code how the list uses these methods. Hope this helps :)


Is a linked list is a data structure that contain data and a link to another data?

Yes.


Role of data structure to insert an element in the data structure?

using data structure an element can insert at any position easily. with out traversing through the entire list.


What is heterogeneous linked list?

Heterogeneous Linked List is a linked list data-structure that contains or is capable of storing data for different datatypes.void pointer is basically used in these types of linked list as we are not sure of which type of data needs to be stored


What is an association list?

An association list is a data structure which associates keys with data, implemented as a list whose members are paired storage locations.


What is typically contain information that is similar to terms in a list?

A linked list data structure.


Is double link list a linear data structure?

Yes.


List advantages and disadvantages for data structure diagrams?

uqwyhvxuyhasbxiuqa


What is first in first out data structure?

QUEUE is the first in first out (FIFO) data structure. It is a linear data structure in which insertion of an element is done from rear end of a list and deletion of an element is done from front end of a list. For example- people in queue waiting for bus.


What is data structure in c?

arrang the data in proper order in the program or in the memory is called a data structure, lke arranging the names of diff students in alphabetical order.


What is the first no for sialkot?

Data structure is related to the algorithm, ie solution of the requirements.whereas Data Type is component of a programming language, which can be used to implement the required data structure (organization of data and format).For example if the requirement say that a LIST is required, and in C programming language , there is not LIST data type BUT LIST CAN BE REALISED(IMPLEMENTED ) in C.