answersLogoWhite

0

How do you define a list?

User Avatar

Anonymous

17y ago
Updated: 8/17/2019

A collection of terms with one or more things in common.

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

What is a dialog box where you can define customized bullets for a list?

dialog box where you can define customized bullets for a list


Dialog box where you can define customized bullets for a list?

define new bullet


Is there a program that you can insert a list of terms and it will define them?

No.


Define the term voters list?

A voters list or list of electors is a list of names and addresses of eligible voters for an upcoming election or referendum.


List and define the costs of high inflation economy?

noo


Which word can you put before any term to get a list of descriptions?

define


List two words or phrases that help you define the word minted?

The words flavored and seasoned can be used to define the word minted.


What are the categories in webmaster software list them?

What is UPS? Define Diffrent types of UPS?


List and define steps in the business buying decision process?

identify problems


Define the term agenda and meeting agenda?

Agenda means a list of things to be done. It is a list of business to be discussed and decided at a meeting.


Space travel definitions?

There are far too many to list and define. Be more specific


How do you find the largest number out of 10.000 positive whole numbers -what's the algorithm?

Maybe (define max list (define maxn list largest (cond ((null? list) largest) ((> (car list) largest) (maxn (cdr list) (car list))) (else (maxn (cdr list) largest)))) (maxn list 0)) ? (Written in Scheme) Sorry I'm not familiar with any algorithms. You're not sorting, but just finding the largest number, right? Because sorting is quite different.