| |
GeekInterview.com > Interview Questions > Testing Tools > SilkTest
| Print | |
Question: Give examples of different types of list data types and list functions?
|
| January 01, 2008 04:22:29 |
#1 |
| sushkumar |
Member Since: January 2006 Total Comments: 12 |
RE: Give examples of different types of list data types and list functions? |
Use the LIST and ARRAY compound data types to group together several pieces of data of the same data type. A list contains elements you can access randomly by referring to them relative to their position in the list. As in an array, all the elements in a list must have the same type. Lists differ from arrays in that you do not need to specify their initial size when you declare them. list can be of different type eg. list of string, list of integer, list of call etc.
List Functions: -IsList function -ListAppend function -ListCount function -ListDelete function -ListFind function -ListInsert function -ListMerge function -ListPrint function -ListRead function -ListSort function -ListWrite function
|
| |
Back To Question | |